@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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.263
1
+ ## @revxui/api-clients-ts@1.1.264
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.263 --save
22
+ npm install @revxui/api-clients-ts@1.1.264 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -21,7 +21,6 @@ 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';
25
24
  import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
26
25
  import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
27
26
  import { ApiResponseObjectMetaRulesDto } from '../model/apiResponseObjectMetaRulesDto';
@@ -188,18 +187,6 @@ export declare class AudienceControllerService {
188
187
  getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectEligibleUsersResponse>;
189
188
  getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectEligibleUsersResponse>>;
190
189
  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>>;
203
190
  /**
204
191
  * Api to get Audience
205
192
  *
@@ -1740,36 +1740,6 @@
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
- };
1773
1743
  AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
1774
1744
  if (observe === void 0) { observe = 'body'; }
1775
1745
  if (reportProgress === void 0) { reportProgress = false; }