@revxui/api-clients-ts 1.1.263 → 1.1.264
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/audienceController.service.d.ts +0 -13
- package/bundles/revxui-api-clients-ts.umd.js +0 -30
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/audienceController.service.js +1 -29
- package/fesm2015/revxui-api-clients-ts.js +0 -28
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -1365,34 +1365,6 @@ class AudienceControllerService {
|
|
|
1365
1365
|
reportProgress: reportProgress
|
|
1366
1366
|
});
|
|
1367
1367
|
}
|
|
1368
|
-
getAudienceStrategyMappingUsingGET(id, reqId, token, observe = 'body', reportProgress = false) {
|
|
1369
|
-
if (id === null || id === undefined) {
|
|
1370
|
-
throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMappingUsingGET.');
|
|
1371
|
-
}
|
|
1372
|
-
let headers = this.defaultHeaders;
|
|
1373
|
-
if (reqId !== undefined && reqId !== null) {
|
|
1374
|
-
headers = headers.set('reqId', String(reqId));
|
|
1375
|
-
}
|
|
1376
|
-
if (token !== undefined && token !== null) {
|
|
1377
|
-
headers = headers.set('token', String(token));
|
|
1378
|
-
}
|
|
1379
|
-
// to determine the Accept header
|
|
1380
|
-
let httpHeaderAccepts = [
|
|
1381
|
-
'*/*'
|
|
1382
|
-
];
|
|
1383
|
-
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1384
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
1385
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1386
|
-
}
|
|
1387
|
-
// to determine the Content-Type header
|
|
1388
|
-
const consumes = [];
|
|
1389
|
-
return this.httpClient.get(`${this.basePath}/v2/api/audience/strategyMapping/${encodeURIComponent(String(id))}`, {
|
|
1390
|
-
withCredentials: this.configuration.withCredentials,
|
|
1391
|
-
headers: headers,
|
|
1392
|
-
observe: observe,
|
|
1393
|
-
reportProgress: reportProgress
|
|
1394
|
-
});
|
|
1395
|
-
}
|
|
1396
1368
|
getByIdUsingGET1(id, refresh, reqId, token, observe = 'body', reportProgress = false) {
|
|
1397
1369
|
if (id === null || id === undefined) {
|
|
1398
1370
|
throw new Error('Required parameter id was null or undefined when calling getByIdUsingGET1.');
|