@connectedxm/admin 6.24.2 → 6.24.3

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
@@ -39680,11 +39680,13 @@ var useDeleteCustomReport = (options = {}) => {
39680
39680
  // src/mutations/reports/useExportCustomReport.ts
39681
39681
  var ExportCustomReport = async ({
39682
39682
  reportId,
39683
+ body,
39683
39684
  adminApiParams
39684
39685
  }) => {
39685
39686
  const connectedXM = await GetAdminAPI(adminApiParams);
39686
39687
  const { data } = await connectedXM.post(
39687
- `/reports/custom/${reportId}/export`
39688
+ `/reports/custom/${reportId}/export`,
39689
+ body
39688
39690
  );
39689
39691
  return data;
39690
39692
  };