@revxui/api-clients-ts 1.1.262 → 1.1.263

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.
@@ -1365,6 +1365,34 @@ 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
+ }
1368
1396
  getByIdUsingGET1(id, refresh, reqId, token, observe = 'body', reportProgress = false) {
1369
1397
  if (id === null || id === undefined) {
1370
1398
  throw new Error('Required parameter id was null or undefined when calling getByIdUsingGET1.');