@revxui/api-clients-ts 1.1.261 → 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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.261
1
+ ## @revxui/api-clients-ts@1.1.263
2
2
 
3
3
  ### Building
4
4
 
@@ -19,7 +19,7 @@ Navigate to the folder of your consuming project and run one of next commands.
19
19
  _published:_
20
20
 
21
21
  ```
22
- npm install @revxui/api-clients-ts@1.1.261 --save
22
+ npm install @revxui/api-clients-ts@1.1.263 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -21,6 +21,7 @@ import { ApiResponseObjectDmpAudienceDTO } from '../model/apiResponseObjectDmpAu
21
21
  import { ApiResponseObjectEligibleUsersResponse } from '../model/apiResponseObjectEligibleUsersResponse';
22
22
  import { ApiResponseObjectListAudienceDTO } from '../model/apiResponseObjectListAudienceDTO';
23
23
  import { ApiResponseObjectListBackfillAudienceQueryTemplateDTO } from '../model/apiResponseObjectListBackfillAudienceQueryTemplateDTO';
24
+ import { ApiResponseObjectListBaseModel } from '../model/apiResponseObjectListBaseModel';
24
25
  import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
25
26
  import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
26
27
  import { ApiResponseObjectMetaRulesDto } from '../model/apiResponseObjectMetaRulesDto';
@@ -187,6 +188,18 @@ export declare class AudienceControllerService {
187
188
  getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectEligibleUsersResponse>;
188
189
  getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectEligibleUsersResponse>>;
189
190
  getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectEligibleUsersResponse>>;
191
+ /**
192
+ * getAudienceStrategyMapping
193
+ *
194
+ * @param id id
195
+ * @param reqId request id
196
+ * @param token Auth Token
197
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
198
+ * @param reportProgress flag to report request and response progress.
199
+ */
200
+ getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListBaseModel>;
201
+ getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListBaseModel>>;
202
+ getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListBaseModel>>;
190
203
  /**
191
204
  * Api to get Audience
192
205
  *
@@ -1740,6 +1740,36 @@
1740
1740
  reportProgress: reportProgress
1741
1741
  });
1742
1742
  };
1743
+ AudienceControllerService.prototype.getAudienceStrategyMappingUsingGET = function (id, reqId, token, observe, reportProgress) {
1744
+ if (observe === void 0) { observe = 'body'; }
1745
+ if (reportProgress === void 0) { reportProgress = false; }
1746
+ if (id === null || id === undefined) {
1747
+ throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMappingUsingGET.');
1748
+ }
1749
+ var headers = this.defaultHeaders;
1750
+ if (reqId !== undefined && reqId !== null) {
1751
+ headers = headers.set('reqId', String(reqId));
1752
+ }
1753
+ if (token !== undefined && token !== null) {
1754
+ headers = headers.set('token', String(token));
1755
+ }
1756
+ // to determine the Accept header
1757
+ var httpHeaderAccepts = [
1758
+ '*/*'
1759
+ ];
1760
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1761
+ if (httpHeaderAcceptSelected != undefined) {
1762
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1763
+ }
1764
+ // to determine the Content-Type header
1765
+ var consumes = [];
1766
+ return this.httpClient.get(this.basePath + "/v2/api/audience/strategyMapping/" + encodeURIComponent(String(id)), {
1767
+ withCredentials: this.configuration.withCredentials,
1768
+ headers: headers,
1769
+ observe: observe,
1770
+ reportProgress: reportProgress
1771
+ });
1772
+ };
1743
1773
  AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
1744
1774
  if (observe === void 0) { observe = 'body'; }
1745
1775
  if (reportProgress === void 0) { reportProgress = false; }