@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 +3 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +3 -1
- package/openapi.json +21 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36128,11 +36128,13 @@ var useDeleteCustomReport = (options = {}) => {
|
|
|
36128
36128
|
// src/mutations/reports/useExportCustomReport.ts
|
|
36129
36129
|
var ExportCustomReport = async ({
|
|
36130
36130
|
reportId,
|
|
36131
|
+
body,
|
|
36131
36132
|
adminApiParams
|
|
36132
36133
|
}) => {
|
|
36133
36134
|
const connectedXM = await GetAdminAPI(adminApiParams);
|
|
36134
36135
|
const { data } = await connectedXM.post(
|
|
36135
|
-
`/reports/custom/${reportId}/export
|
|
36136
|
+
`/reports/custom/${reportId}/export`,
|
|
36137
|
+
body
|
|
36136
36138
|
);
|
|
36137
36139
|
return data;
|
|
36138
36140
|
};
|
package/openapi.json
CHANGED
|
@@ -76198,6 +76198,16 @@
|
|
|
76198
76198
|
"required": true
|
|
76199
76199
|
}
|
|
76200
76200
|
],
|
|
76201
|
+
"requestBody": {
|
|
76202
|
+
"required": true,
|
|
76203
|
+
"content": {
|
|
76204
|
+
"application/json": {
|
|
76205
|
+
"schema": {
|
|
76206
|
+
"$ref": "#/components/schemas/CustomReportExportInputs"
|
|
76207
|
+
}
|
|
76208
|
+
}
|
|
76209
|
+
}
|
|
76210
|
+
},
|
|
76201
76211
|
"responses": {
|
|
76202
76212
|
"200": {
|
|
76203
76213
|
"description": "Successful response",
|
|
@@ -116938,6 +116948,17 @@
|
|
|
116938
116948
|
}
|
|
116939
116949
|
]
|
|
116940
116950
|
},
|
|
116951
|
+
"CustomReportExportInputs": {
|
|
116952
|
+
"type": "object",
|
|
116953
|
+
"properties": {
|
|
116954
|
+
"email": {
|
|
116955
|
+
"type": "string"
|
|
116956
|
+
}
|
|
116957
|
+
},
|
|
116958
|
+
"required": [
|
|
116959
|
+
"email"
|
|
116960
|
+
]
|
|
116961
|
+
},
|
|
116941
116962
|
"CustomReportUpdateInputs": {
|
|
116942
116963
|
"type": "object",
|
|
116943
116964
|
"properties": {
|