Skip to content

Commit

Permalink
Merge pull request #388 from Ecwid/ECWID-136750
Browse files Browse the repository at this point in the history
ECWID-136750 New reports: internal API for inventoryReport: Error about missing parameters
  • Loading branch information
mvgreen authored Mar 19, 2024
2 parents 1ac0ec2 + 5838aae commit bbb2a12
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ data class ReportRequest(
timeScaleValue?.let { put("timeScaleValue", it.toString()) }
comparePeriod?.let { put("comparePeriod", it.toString()) }
firstDayOfWeek?.let { put("firstDayOfWeek", it.toString()) }
orderByMetric?.let { put("orderByMetric", it) }
orderDirection?.let { put("orderDirection", it) }
limit?.let { put("limit", it.toString()) }
offset?.let { put("offset", it.toString()) }
}.toMap()
}

Expand Down

0 comments on commit bbb2a12

Please sign in to comment.