@revxui/api-clients-ts 0.10.272 → 0.10.273
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/README.md +2 -2
- package/api/sliceXController.service.d.ts +20 -6
- package/bundles/revxui-api-clients-ts.umd.js +39 -0
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/sliceXController.service.js +38 -1
- package/esm2015/model/campaignESDTO.js +1 -1
- package/esm2015/model/models.js +1 -1
- package/esm2015/model/slicexRequestExtended.js +1 -0
- package/esm5/api/sliceXController.service.js +40 -1
- package/esm5/model/campaignESDTO.js +1 -1
- package/esm5/model/models.js +1 -1
- package/esm5/model/slicexRequestExtended.js +1 -0
- package/fesm2015/revxui-api-clients-ts.js +37 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +39 -0
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/campaignESDTO.d.ts +1 -0
- package/model/models.d.ts +1 -0
- package/model/slicexRequestExtended.d.ts +20 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -5314,6 +5314,43 @@ let SliceXControllerService = class SliceXControllerService {
|
|
|
5314
5314
|
reportProgress: reportProgress
|
|
5315
5315
|
});
|
|
5316
5316
|
}
|
|
5317
|
+
getSlicexGridDetailsUsingPOST(entity, slicexRequestExt, reqId, token, observe = 'body', reportProgress = false) {
|
|
5318
|
+
if (entity === null || entity === undefined) {
|
|
5319
|
+
throw new Error('Required parameter entity was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
5320
|
+
}
|
|
5321
|
+
if (slicexRequestExt === null || slicexRequestExt === undefined) {
|
|
5322
|
+
throw new Error('Required parameter slicexRequestExt was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
5323
|
+
}
|
|
5324
|
+
let headers = this.defaultHeaders;
|
|
5325
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5326
|
+
headers = headers.set('reqId', String(reqId));
|
|
5327
|
+
}
|
|
5328
|
+
if (token !== undefined && token !== null) {
|
|
5329
|
+
headers = headers.set('token', String(token));
|
|
5330
|
+
}
|
|
5331
|
+
// to determine the Accept header
|
|
5332
|
+
let httpHeaderAccepts = [
|
|
5333
|
+
'application/json'
|
|
5334
|
+
];
|
|
5335
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5336
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5337
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5338
|
+
}
|
|
5339
|
+
// to determine the Content-Type header
|
|
5340
|
+
const consumes = [
|
|
5341
|
+
'application/json'
|
|
5342
|
+
];
|
|
5343
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
5344
|
+
if (httpContentTypeSelected != undefined) {
|
|
5345
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
5346
|
+
}
|
|
5347
|
+
return this.httpClient.post(`${this.basePath}/v2/api/slicex/list/details/${encodeURIComponent(String(entity))}`, slicexRequestExt, {
|
|
5348
|
+
withCredentials: this.configuration.withCredentials,
|
|
5349
|
+
headers: headers,
|
|
5350
|
+
observe: observe,
|
|
5351
|
+
reportProgress: reportProgress
|
|
5352
|
+
});
|
|
5353
|
+
}
|
|
5317
5354
|
getSlicexListDataForExportUsingPOST(entity, slicexRequest, reqId, sort, token, observe = 'body', reportProgress = false) {
|
|
5318
5355
|
if (entity === null || entity === undefined) {
|
|
5319
5356
|
throw new Error('Required parameter entity was null or undefined when calling getSlicexListDataForExportUsingPOST.');
|