@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.
@@ -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; }