@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.
@@ -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.');