@connectedxm/admin 6.24.1 → 6.24.2
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 +19 -0
- package/dist/index.d.cts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +17 -0
- package/openapi.json +53 -0
- package/package.json +1 -1
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,21 @@ 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
|
+
adminApiParams
|
|
39684
|
+
}) => {
|
|
39685
|
+
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
39686
|
+
const { data } = await connectedXM.post(
|
|
39687
|
+
`/reports/custom/${reportId}/export`
|
|
39688
|
+
);
|
|
39689
|
+
return data;
|
|
39690
|
+
};
|
|
39691
|
+
var useExportCustomReport = (options = {}) => {
|
|
39692
|
+
return useConnectedMutation(ExportCustomReport, options);
|
|
39693
|
+
};
|
|
39694
|
+
|
|
39678
39695
|
// src/mutations/reports/useUpdateCustomReport.ts
|
|
39679
39696
|
var UpdateCustomReport = async ({
|
|
39680
39697
|
reportId,
|
|
@@ -43805,6 +43822,7 @@ var useUpdateTier = (options = {}) => {
|
|
|
43805
43822
|
EventSource,
|
|
43806
43823
|
EventType,
|
|
43807
43824
|
ExportAccount,
|
|
43825
|
+
ExportCustomReport,
|
|
43808
43826
|
ExportStatus,
|
|
43809
43827
|
ExportStreamSession,
|
|
43810
43828
|
FEATURED_CHANNELS_QUERY_KEY,
|
|
@@ -45779,6 +45797,7 @@ var useUpdateTier = (options = {}) => {
|
|
|
45779
45797
|
useEnableLivestream,
|
|
45780
45798
|
useEventGetPassTypeCoupons,
|
|
45781
45799
|
useExportAccount,
|
|
45800
|
+
useExportCustomReport,
|
|
45782
45801
|
useExportStreamSession,
|
|
45783
45802
|
useGenerateMeetingSessionSummary,
|
|
45784
45803
|
useGenerateVideoCaptions,
|