@revxui/api-clients-ts 1.1.442 → 1.1.444
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/strategyController.service.d.ts +13 -0
- package/esm2020/api/strategyController.service.mjs +35 -1
- package/esm2020/model/adFormatCount.mjs +13 -0
- package/esm2020/model/apiResponseObjectMaplongAdFormatCount.mjs +2 -0
- package/esm2020/model/maplongAdFormatCount.mjs +2 -0
- package/esm2020/model/models.mjs +4 -1
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +34 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +46 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/adFormatCount.d.ts +16 -0
- package/model/apiResponseObjectMaplongAdFormatCount.d.ts +19 -0
- package/model/maplongAdFormatCount.d.ts +15 -0
- package/model/models.d.ts +3 -0
- package/model/strategy.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/package.json +1 -1
|
@@ -9377,6 +9377,40 @@ class StrategyControllerService {
|
|
|
9377
9377
|
reportProgress: reportProgress
|
|
9378
9378
|
});
|
|
9379
9379
|
}
|
|
9380
|
+
getAdFormatCountsUsingPOST(strategyIds, reqId, token, observe = 'body', reportProgress = false) {
|
|
9381
|
+
if (strategyIds === null || strategyIds === undefined) {
|
|
9382
|
+
throw new Error('Required parameter strategyIds was null or undefined when calling getAdFormatCountsUsingPOST.');
|
|
9383
|
+
}
|
|
9384
|
+
let headers = this.defaultHeaders;
|
|
9385
|
+
if (reqId !== undefined && reqId !== null) {
|
|
9386
|
+
headers = headers.set('reqId', String(reqId));
|
|
9387
|
+
}
|
|
9388
|
+
if (token !== undefined && token !== null) {
|
|
9389
|
+
headers = headers.set('token', String(token));
|
|
9390
|
+
}
|
|
9391
|
+
// to determine the Accept header
|
|
9392
|
+
let httpHeaderAccepts = [
|
|
9393
|
+
'application/json'
|
|
9394
|
+
];
|
|
9395
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
9396
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
9397
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
9398
|
+
}
|
|
9399
|
+
// to determine the Content-Type header
|
|
9400
|
+
const consumes = [
|
|
9401
|
+
'application/json'
|
|
9402
|
+
];
|
|
9403
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
9404
|
+
if (httpContentTypeSelected != undefined) {
|
|
9405
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
9406
|
+
}
|
|
9407
|
+
return this.httpClient.post(`${this.basePath}/v2/api/strategies/adformatcounts`, strategyIds, {
|
|
9408
|
+
withCredentials: this.configuration.withCredentials,
|
|
9409
|
+
headers: headers,
|
|
9410
|
+
observe: observe,
|
|
9411
|
+
reportProgress: reportProgress
|
|
9412
|
+
});
|
|
9413
|
+
}
|
|
9380
9414
|
getNeverBlockAppsUsingGET(id, reqId, token, observe = 'body', reportProgress = false) {
|
|
9381
9415
|
if (id === null || id === undefined) {
|
|
9382
9416
|
throw new Error('Required parameter id was null or undefined when calling getNeverBlockAppsUsingGET.');
|
|
@@ -10534,6 +10568,18 @@ var ActivityLogsStrategyBulkUpdateDTO;
|
|
|
10534
10568
|
};
|
|
10535
10569
|
})(ActivityLogsStrategyBulkUpdateDTO || (ActivityLogsStrategyBulkUpdateDTO = {}));
|
|
10536
10570
|
|
|
10571
|
+
/**
|
|
10572
|
+
* Api Documentation
|
|
10573
|
+
* Api Documentation
|
|
10574
|
+
*
|
|
10575
|
+
* OpenAPI spec version: 1.0
|
|
10576
|
+
*
|
|
10577
|
+
*
|
|
10578
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
10579
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10580
|
+
* Do not edit the class manually.
|
|
10581
|
+
*/
|
|
10582
|
+
|
|
10537
10583
|
/**
|
|
10538
10584
|
* Api Documentation
|
|
10539
10585
|
* Api Documentation
|