@connectedxm/admin 6.24.1 → 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
@@ -752,6 +752,7 @@ __export(index_exports, {
752
752
  EventSource: () => EventSource,
753
753
  EventType: () => EventType,
754
754
  ExportAccount: () => ExportAccount,
755
+ ExportCustomReport: () => ExportCustomReport,
755
756
  ExportStatus: () => ExportStatus,
756
757
  ExportStreamSession: () => ExportStreamSession,
757
758
  FEATURED_CHANNELS_QUERY_KEY: () => FEATURED_CHANNELS_QUERY_KEY,
@@ -2726,6 +2727,7 @@ __export(index_exports, {
2726
2727
  useEnableLivestream: () => useEnableLivestream,
2727
2728
  useEventGetPassTypeCoupons: () => useEventGetPassTypeCoupons,
2728
2729
  useExportAccount: () => useExportAccount,
2730
+ useExportCustomReport: () => useExportCustomReport,
2729
2731
  useExportStreamSession: () => useExportStreamSession,
2730
2732
  useGenerateMeetingSessionSummary: () => useGenerateMeetingSessionSummary,
2731
2733
  useGenerateVideoCaptions: () => useGenerateVideoCaptions,
@@ -39675,6 +39677,23 @@ var useDeleteCustomReport = (options = {}) => {
39675
39677
  return useConnectedMutation(DeleteCustomReport, options);
39676
39678
  };
39677
39679
 
39680
+ // src/mutations/reports/useExportCustomReport.ts
39681
+ var ExportCustomReport = async ({
39682
+ reportId,
39683
+ body,
39684
+ adminApiParams
39685
+ }) => {
39686
+ const connectedXM = await GetAdminAPI(adminApiParams);
39687
+ const { data } = await connectedXM.post(
39688
+ `/reports/custom/${reportId}/export`,
39689
+ body
39690
+ );
39691
+ return data;
39692
+ };
39693
+ var useExportCustomReport = (options = {}) => {
39694
+ return useConnectedMutation(ExportCustomReport, options);
39695
+ };
39696
+
39678
39697
  // src/mutations/reports/useUpdateCustomReport.ts
39679
39698
  var UpdateCustomReport = async ({
39680
39699
  reportId,
@@ -43805,6 +43824,7 @@ var useUpdateTier = (options = {}) => {
43805
43824
  EventSource,
43806
43825
  EventType,
43807
43826
  ExportAccount,
43827
+ ExportCustomReport,
43808
43828
  ExportStatus,
43809
43829
  ExportStreamSession,
43810
43830
  FEATURED_CHANNELS_QUERY_KEY,
@@ -45779,6 +45799,7 @@ var useUpdateTier = (options = {}) => {
45779
45799
  useEnableLivestream,
45780
45800
  useEventGetPassTypeCoupons,
45781
45801
  useExportAccount,
45802
+ useExportCustomReport,
45782
45803
  useExportStreamSession,
45783
45804
  useGenerateMeetingSessionSummary,
45784
45805
  useGenerateVideoCaptions,