@revxui/api-clients-ts 3.0.10 → 3.0.11
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/fesm2022/revxui-api-clients-ts.mjs +53 -0
- package/fesm2022/revxui-api-clients-ts.mjs.map +1 -1
- package/index.d.ts +92 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @revxui/api-clients-ts@3.0.
|
|
1
|
+
# @revxui/api-clients-ts@3.0.11
|
|
2
2
|
|
|
3
3
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @revxui/api-clients-ts@3.0.
|
|
27
|
+
npm install @revxui/api-clients-ts@3.0.11 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -12308,6 +12308,49 @@ class SliceXControllerService extends BaseService {
|
|
|
12308
12308
|
reportProgress: reportProgress
|
|
12309
12309
|
});
|
|
12310
12310
|
}
|
|
12311
|
+
getUnifiedDashboardFilterOptions(slicexFilterOptionsRequest, observe = 'body', reportProgress = false, options) {
|
|
12312
|
+
let localVarHeaders = this.defaultHeaders;
|
|
12313
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
12314
|
+
'application/json'
|
|
12315
|
+
]);
|
|
12316
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
12317
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
12318
|
+
}
|
|
12319
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
12320
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
12321
|
+
// to determine the Content-Type header
|
|
12322
|
+
const consumes = [
|
|
12323
|
+
'application/json'
|
|
12324
|
+
];
|
|
12325
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
12326
|
+
if (httpContentTypeSelected !== undefined) {
|
|
12327
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
12328
|
+
}
|
|
12329
|
+
let responseType_ = 'json';
|
|
12330
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
12331
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
12332
|
+
responseType_ = 'text';
|
|
12333
|
+
}
|
|
12334
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
12335
|
+
responseType_ = 'json';
|
|
12336
|
+
}
|
|
12337
|
+
else {
|
|
12338
|
+
responseType_ = 'blob';
|
|
12339
|
+
}
|
|
12340
|
+
}
|
|
12341
|
+
let localVarPath = `/v2/api/slicex/dashboard/unified/filter-options`;
|
|
12342
|
+
const { basePath, withCredentials } = this.configuration;
|
|
12343
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
12344
|
+
context: localVarHttpContext,
|
|
12345
|
+
body: slicexFilterOptionsRequest,
|
|
12346
|
+
responseType: responseType_,
|
|
12347
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
12348
|
+
headers: localVarHeaders,
|
|
12349
|
+
observe: observe,
|
|
12350
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
12351
|
+
reportProgress: reportProgress
|
|
12352
|
+
});
|
|
12353
|
+
}
|
|
12311
12354
|
getUnifiedDashboardSummary(slicexUnifiedSummaryRequest, observe = 'body', reportProgress = false, options) {
|
|
12312
12355
|
if (slicexUnifiedSummaryRequest === null || slicexUnifiedSummaryRequest === undefined) {
|
|
12313
12356
|
throw new Error('Required parameter slicexUnifiedSummaryRequest was null or undefined when calling getUnifiedDashboardSummary.');
|
|
@@ -17332,6 +17375,16 @@ var ShopeeAudienceListResp;
|
|
|
17332
17375
|
* Do not edit the class manually.
|
|
17333
17376
|
*/
|
|
17334
17377
|
|
|
17378
|
+
/**
|
|
17379
|
+
* OpenAPI definition
|
|
17380
|
+
*
|
|
17381
|
+
*
|
|
17382
|
+
*
|
|
17383
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
17384
|
+
* https://openapi-generator.tech
|
|
17385
|
+
* Do not edit the class manually.
|
|
17386
|
+
*/
|
|
17387
|
+
|
|
17335
17388
|
var SlicexUnifiedDashboardResponse;
|
|
17336
17389
|
(function (SlicexUnifiedDashboardResponse) {
|
|
17337
17390
|
SlicexUnifiedDashboardResponse.DimensionEnum = {
|