@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
|
@@ -5804,6 +5804,45 @@ var SliceXControllerService = /** @class */ (function () {
|
|
|
5804
5804
|
reportProgress: reportProgress
|
|
5805
5805
|
});
|
|
5806
5806
|
};
|
|
5807
|
+
SliceXControllerService.prototype.getSlicexGridDetailsUsingPOST = function (entity, slicexRequestExt, reqId, token, observe, reportProgress) {
|
|
5808
|
+
if (observe === void 0) { observe = 'body'; }
|
|
5809
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
5810
|
+
if (entity === null || entity === undefined) {
|
|
5811
|
+
throw new Error('Required parameter entity was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
5812
|
+
}
|
|
5813
|
+
if (slicexRequestExt === null || slicexRequestExt === undefined) {
|
|
5814
|
+
throw new Error('Required parameter slicexRequestExt was null or undefined when calling getSlicexGridDetailsUsingPOST.');
|
|
5815
|
+
}
|
|
5816
|
+
var headers = this.defaultHeaders;
|
|
5817
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5818
|
+
headers = headers.set('reqId', String(reqId));
|
|
5819
|
+
}
|
|
5820
|
+
if (token !== undefined && token !== null) {
|
|
5821
|
+
headers = headers.set('token', String(token));
|
|
5822
|
+
}
|
|
5823
|
+
// to determine the Accept header
|
|
5824
|
+
var httpHeaderAccepts = [
|
|
5825
|
+
'application/json'
|
|
5826
|
+
];
|
|
5827
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5828
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5829
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5830
|
+
}
|
|
5831
|
+
// to determine the Content-Type header
|
|
5832
|
+
var consumes = [
|
|
5833
|
+
'application/json'
|
|
5834
|
+
];
|
|
5835
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
5836
|
+
if (httpContentTypeSelected != undefined) {
|
|
5837
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
5838
|
+
}
|
|
5839
|
+
return this.httpClient.post(this.basePath + "/v2/api/slicex/list/details/" + encodeURIComponent(String(entity)), slicexRequestExt, {
|
|
5840
|
+
withCredentials: this.configuration.withCredentials,
|
|
5841
|
+
headers: headers,
|
|
5842
|
+
observe: observe,
|
|
5843
|
+
reportProgress: reportProgress
|
|
5844
|
+
});
|
|
5845
|
+
};
|
|
5807
5846
|
SliceXControllerService.prototype.getSlicexListDataForExportUsingPOST = function (entity, slicexRequest, reqId, sort, token, observe, reportProgress) {
|
|
5808
5847
|
if (observe === void 0) { observe = 'body'; }
|
|
5809
5848
|
if (reportProgress === void 0) { reportProgress = false; }
|