@pymthouse/builder-sdk 0.4.2-rc.0 → 0.4.2-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1627,7 +1627,8 @@ var PmtHouseClient = class {
1627
1627
  const usageByUser = await this.getUsage({
1628
1628
  startDate: input.startDate,
1629
1629
  endDate: input.endDate,
1630
- groupBy: "user"
1630
+ groupBy: "user",
1631
+ includeRetail: input.includeRetail
1631
1632
  });
1632
1633
  const userIds = getEndUserIdsForExternalUser(usageByUser, input.externalUserId);
1633
1634
  const cap = input.maxEndUserIds ?? DEFAULT_MAX_END_USER_IDS;
@@ -1638,7 +1639,8 @@ var PmtHouseClient = class {
1638
1639
  startDate: input.startDate,
1639
1640
  endDate: input.endDate,
1640
1641
  groupBy: "pipeline_model",
1641
- userId
1642
+ userId,
1643
+ includeRetail: input.includeRetail
1642
1644
  })
1643
1645
  )
1644
1646
  );