@revxui/api-clients-ts 0.10.342 → 0.10.343

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.
Files changed (49) hide show
  1. package/README.md +2 -2
  2. package/api/audienceController.service.d.ts +26 -0
  3. package/api/auditController.service.d.ts +6 -6
  4. package/api/creativeSetsController.service.d.ts +0 -15
  5. package/api/dashboardController.service.d.ts +9 -9
  6. package/api/strategyController.service.d.ts +13 -0
  7. package/bundles/revxui-api-clients-ts.umd.js +135 -63
  8. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  9. package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
  10. package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
  11. package/esm2015/api/adminController.service.js +2 -2
  12. package/esm2015/api/advertiserController.service.js +2 -2
  13. package/esm2015/api/appSettingsController.service.js +2 -2
  14. package/esm2015/api/audienceController.service.js +70 -2
  15. package/esm2015/api/auditController.service.js +2 -2
  16. package/esm2015/api/bulkStrategyController.service.js +2 -2
  17. package/esm2015/api/cSSThemeController_.service.js +2 -2
  18. package/esm2015/api/campaignController.service.js +2 -2
  19. package/esm2015/api/catalogController.service.js +2 -2
  20. package/esm2015/api/clickDestinationController.service.js +2 -2
  21. package/esm2015/api/creativeController.service.js +2 -2
  22. package/esm2015/api/creativeSetsController.service.js +2 -39
  23. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  24. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  25. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  26. package/esm2015/api/customerReportingController.service.js +2 -2
  27. package/esm2015/api/dashboardController.service.js +2 -2
  28. package/esm2015/api/notificationsController.service.js +2 -2
  29. package/esm2015/api/pixelController.service.js +2 -2
  30. package/esm2015/api/reportingController.service.js +2 -2
  31. package/esm2015/api/sliceXController.service.js +2 -2
  32. package/esm2015/api/strategyController.service.js +39 -2
  33. package/esm2015/api/uILoggerController.service.js +2 -2
  34. package/esm2015/api/userPreferenceController.service.js +2 -2
  35. package/esm2015/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.js +2 -0
  36. package/esm2015/model/audienceAnalysisRequest.js +13 -0
  37. package/esm2015/model/combinedAudienceAnalysisResponse.js +13 -0
  38. package/esm2015/model/models.js +4 -2
  39. package/esm2015/model/searchRequest.js +1 -1
  40. package/fesm2015/revxui-api-clients-ts.js +153 -73
  41. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  42. package/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.d.ts +17 -0
  43. package/model/{creativeSetRescheduleRequest.d.ts → audienceAnalysisRequest.d.ts} +5 -3
  44. package/model/combinedAudienceAnalysisResponse.d.ts +19 -0
  45. package/model/models.d.ts +3 -1
  46. package/model/searchRequest.d.ts +1 -0
  47. package/package.json +1 -1
  48. package/revxui-api-clients-ts.metadata.json +1 -1
  49. package/esm2015/model/creativeSetRescheduleRequest.js +0 -13
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.342
1
+ ## @revxui/api-clients-ts@0.10.343
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@0.10.342 --save
22
+ npm install @revxui/api-clients-ts@0.10.343 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -12,6 +12,7 @@
12
12
  import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
13
13
  import { Observable } from 'rxjs';
14
14
  import { ApiResponseObjectApiListResponseAudiencePerformanceDTO } from '../model/apiResponseObjectApiListResponseAudiencePerformanceDTO';
15
+ import { ApiResponseObjectArrayListCombinedAudienceAnalysisResponse } from '../model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse';
15
16
  import { ApiResponseObjectAudienceAccessDTO } from '../model/apiResponseObjectAudienceAccessDTO';
16
17
  import { ApiResponseObjectAudienceDTO } from '../model/apiResponseObjectAudienceDTO';
17
18
  import { ApiResponseObjectBaseModel } from '../model/apiResponseObjectBaseModel';
@@ -25,6 +26,7 @@ import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObj
25
26
  import { ApiResponseObjectMetaRulesDto } from '../model/apiResponseObjectMetaRulesDto';
26
27
  import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
27
28
  import { ApiResponseObjectstring } from '../model/apiResponseObjectstring';
29
+ import { AudienceAnalysisRequest } from '../model/audienceAnalysisRequest';
28
30
  import { AudienceBackfillQueryTemplateRequest } from '../model/audienceBackfillQueryTemplateRequest';
29
31
  import { AudienceBackfillRequest } from '../model/audienceBackfillRequest';
30
32
  import { AudienceDTO } from '../model/audienceDTO';
@@ -172,6 +174,18 @@ export declare class AudienceControllerService {
172
174
  getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDmpAudienceDTO>;
173
175
  getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDmpAudienceDTO>>;
174
176
  getAllDmpAudienceUsingGET(advertiser_id: number, limit?: number, reqId?: string, start?: number, stype?: number, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDmpAudienceDTO>>;
177
+ /**
178
+ * APi to get audience analysis count
179
+ *
180
+ * @param audienceAnalysisRequest audienceAnalysisRequest
181
+ * @param reqId request id
182
+ * @param token Auth Token
183
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
184
+ * @param reportProgress flag to report request and response progress.
185
+ */
186
+ getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectEligibleUsersResponse>;
187
+ getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectEligibleUsersResponse>>;
188
+ getAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectEligibleUsersResponse>>;
175
189
  /**
176
190
  * Api to get Audience
177
191
  *
@@ -201,6 +215,18 @@ export declare class AudienceControllerService {
201
215
  getChartDataUsingPOST(audienceType: 'WEB_BROWSING' | 'MOBILE_APP' | 'DMP' | 'CRM' | 'RULE_BASED' | 'RULE_BASED_BACKFILL' | 'CRM_EMAIL' | 'CRM_PHONE' | 'LOOKALIKE_AUDIENCE' | 'FACEBOOK_ID', dashboardRequest: DashboardRequest, id: number, metric: string, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectChartDashboardResponse>;
202
216
  getChartDataUsingPOST(audienceType: 'WEB_BROWSING' | 'MOBILE_APP' | 'DMP' | 'CRM' | 'RULE_BASED' | 'RULE_BASED_BACKFILL' | 'CRM_EMAIL' | 'CRM_PHONE' | 'LOOKALIKE_AUDIENCE' | 'FACEBOOK_ID', dashboardRequest: DashboardRequest, id: number, metric: string, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectChartDashboardResponse>>;
203
217
  getChartDataUsingPOST(audienceType: 'WEB_BROWSING' | 'MOBILE_APP' | 'DMP' | 'CRM' | 'RULE_BASED' | 'RULE_BASED_BACKFILL' | 'CRM_EMAIL' | 'CRM_PHONE' | 'LOOKALIKE_AUDIENCE' | 'FACEBOOK_ID', dashboardRequest: DashboardRequest, id: number, metric: string, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectChartDashboardResponse>>;
218
+ /**
219
+ * APi to get audience analysis count for all combination
220
+ *
221
+ * @param audienceAnalysisRequest audienceAnalysisRequest
222
+ * @param reqId request id
223
+ * @param token Auth Token
224
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
225
+ * @param reportProgress flag to report request and response progress.
226
+ */
227
+ getCombinedAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectArrayListCombinedAudienceAnalysisResponse>;
228
+ getCombinedAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectArrayListCombinedAudienceAnalysisResponse>>;
229
+ getCombinedAnalysisAudienceCountUsingPOST(audienceAnalysisRequest: AudienceAnalysisRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectArrayListCombinedAudienceAnalysisResponse>>;
204
230
  /**
205
231
  * Api to get EligibleUsers
206
232
  *
@@ -38,9 +38,9 @@ export declare class AuditControllerService {
38
38
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
39
39
  * @param reportProgress flag to report request and response progress.
40
40
  */
41
- getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditDetails>;
42
- getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditDetails>>;
43
- getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditDetails>>;
41
+ getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditDetails>;
42
+ getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditDetails>>;
43
+ getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditDetails>>;
44
44
  /**
45
45
  * get Audit Log for campaign and strategy
46
46
  *
@@ -53,9 +53,9 @@ export declare class AuditControllerService {
53
53
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
54
54
  * @param reportProgress flag to report request and response progress.
55
55
  */
56
- getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditMarker>;
57
- getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditMarker>>;
58
- getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditMarker>>;
56
+ getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditMarker>;
57
+ getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditMarker>>;
58
+ getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditMarker>>;
59
59
  /**
60
60
  * get user activity log
61
61
  *
@@ -21,10 +21,8 @@ import { ApiResponseObjectCreativeSetResponse } from '../model/apiResponseObject
21
21
  import { ApiResponseObjectDashboardMetrics } from '../model/apiResponseObjectDashboardMetrics';
22
22
  import { ApiResponseObjectDashboardResponse } from '../model/apiResponseObjectDashboardResponse';
23
23
  import { ApiResponseObjectDuplicateCreativeSetResponse } from '../model/apiResponseObjectDuplicateCreativeSetResponse';
24
- import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
25
24
  import { BulkEditCreativeSetsDTO } from '../model/bulkEditCreativeSetsDTO';
26
25
  import { CreativeSetRequest } from '../model/creativeSetRequest';
27
- import { CreativeSetRescheduleRequest } from '../model/creativeSetRescheduleRequest';
28
26
  import { DashboardRequest } from '../model/dashboardRequest';
29
27
  import { DuplicateCreativeSetsRequestDTO } from '../model/duplicateCreativeSetsRequestDTO';
30
28
  import { Configuration } from '../configuration';
@@ -170,19 +168,6 @@ export declare class CreativeSetsControllerService {
170
168
  getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiListResponseCreativeTemplateDTO>;
171
169
  getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiListResponseCreativeTemplateDTO>>;
172
170
  getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseCreativeTemplateDTO>>;
173
- /**
174
- * Api to reschedule a creative sets
175
- *
176
- * @param creativeSetRescheduleRequest creativeSetRescheduleRequest
177
- * @param id id
178
- * @param reqId request id
179
- * @param token Auth Token
180
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
181
- * @param reportProgress flag to report request and response progress.
182
- */
183
- rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectResponseMessage>;
184
- rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectResponseMessage>>;
185
- rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectResponseMessage>>;
186
171
  /**
187
172
  * Api to update creative sets
188
173
  *
@@ -110,9 +110,9 @@ export declare class DashboardControllerService {
110
110
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
111
111
  * @param reportProgress flag to report request and response progress.
112
112
  */
113
- getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
114
- getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
115
- getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
113
+ getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
114
+ getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
115
+ getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
116
116
  /**
117
117
  * DashBoard Api For Download List CSV.
118
118
  *
@@ -123,9 +123,9 @@ export declare class DashboardControllerService {
123
123
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
124
124
  * @param reportProgress flag to report request and response progress.
125
125
  */
126
- getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectFileDownloadResponse>;
127
- getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectFileDownloadResponse>>;
128
- getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectFileDownloadResponse>>;
126
+ getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectFileDownloadResponse>;
127
+ getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectFileDownloadResponse>>;
128
+ getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectFileDownloadResponse>>;
129
129
  /**
130
130
  * DashBoard Api For DashBoard.
131
131
  *
@@ -138,9 +138,9 @@ export declare class DashboardControllerService {
138
138
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
139
139
  * @param reportProgress flag to report request and response progress.
140
140
  */
141
- getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
142
- getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
143
- getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
141
+ getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
142
+ getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
143
+ getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
144
144
  /**
145
145
  * getDetailById
146
146
  *
@@ -100,6 +100,19 @@ export declare class StrategyControllerService {
100
100
  deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
101
101
  deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
102
102
  deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
103
+ /**
104
+ * Api to disassociate strategy to creative set
105
+ *
106
+ * @param creativeSetIdsToBeRemoved creativeSetIdsToBeRemoved
107
+ * @param id id
108
+ * @param reqId request id
109
+ * @param token Auth Token
110
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
111
+ * @param reportProgress flag to report request and response progress.
112
+ */
113
+ disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectlong>;
114
+ disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectlong>>;
115
+ disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectlong>>;
103
116
  /**
104
117
  * Api to Create duplicate Strategy
105
118
  *
@@ -370,7 +370,7 @@
370
370
  var AdminControllerService = /** @class */ (function () {
371
371
  function AdminControllerService(httpClient, basePath, configuration) {
372
372
  this.httpClient = httpClient;
373
- this.basePath = 'https://apiv2stage1.atomex.net';
373
+ this.basePath = 'https://apiv2stage3.atomex.net';
374
374
  this.defaultHeaders = new http.HttpHeaders();
375
375
  this.configuration = new Configuration();
376
376
  if (basePath) {
@@ -575,7 +575,7 @@
575
575
  var AdvertiserControllerService = /** @class */ (function () {
576
576
  function AdvertiserControllerService(httpClient, basePath, configuration) {
577
577
  this.httpClient = httpClient;
578
- this.basePath = 'https://apiv2stage1.atomex.net';
578
+ this.basePath = 'https://apiv2stage3.atomex.net';
579
579
  this.defaultHeaders = new http.HttpHeaders();
580
580
  this.configuration = new Configuration();
581
581
  if (basePath) {
@@ -1009,7 +1009,7 @@
1009
1009
  var AppSettingsControllerService = /** @class */ (function () {
1010
1010
  function AppSettingsControllerService(httpClient, basePath, configuration) {
1011
1011
  this.httpClient = httpClient;
1012
- this.basePath = 'https://apiv2stage1.atomex.net';
1012
+ this.basePath = 'https://apiv2stage3.atomex.net';
1013
1013
  this.defaultHeaders = new http.HttpHeaders();
1014
1014
  this.configuration = new Configuration();
1015
1015
  if (basePath) {
@@ -1262,7 +1262,7 @@
1262
1262
  var AudienceControllerService = /** @class */ (function () {
1263
1263
  function AudienceControllerService(httpClient, basePath, configuration) {
1264
1264
  this.httpClient = httpClient;
1265
- this.basePath = 'https://apiv2stage1.atomex.net';
1265
+ this.basePath = 'https://apiv2stage3.atomex.net';
1266
1266
  this.defaultHeaders = new http.HttpHeaders();
1267
1267
  this.configuration = new Configuration();
1268
1268
  if (basePath) {
@@ -1666,6 +1666,42 @@
1666
1666
  reportProgress: reportProgress
1667
1667
  });
1668
1668
  };
1669
+ AudienceControllerService.prototype.getAnalysisAudienceCountUsingPOST = function (audienceAnalysisRequest, reqId, token, observe, reportProgress) {
1670
+ if (observe === void 0) { observe = 'body'; }
1671
+ if (reportProgress === void 0) { reportProgress = false; }
1672
+ if (audienceAnalysisRequest === null || audienceAnalysisRequest === undefined) {
1673
+ throw new Error('Required parameter audienceAnalysisRequest was null or undefined when calling getAnalysisAudienceCountUsingPOST.');
1674
+ }
1675
+ var headers = this.defaultHeaders;
1676
+ if (reqId !== undefined && reqId !== null) {
1677
+ headers = headers.set('reqId', String(reqId));
1678
+ }
1679
+ if (token !== undefined && token !== null) {
1680
+ headers = headers.set('token', String(token));
1681
+ }
1682
+ // to determine the Accept header
1683
+ var httpHeaderAccepts = [
1684
+ '*/*'
1685
+ ];
1686
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1687
+ if (httpHeaderAcceptSelected != undefined) {
1688
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1689
+ }
1690
+ // to determine the Content-Type header
1691
+ var consumes = [
1692
+ 'application/json'
1693
+ ];
1694
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1695
+ if (httpContentTypeSelected != undefined) {
1696
+ headers = headers.set('Content-Type', httpContentTypeSelected);
1697
+ }
1698
+ return this.httpClient.post(this.basePath + "/v2/api/audience/audienceanalysis", audienceAnalysisRequest, {
1699
+ withCredentials: this.configuration.withCredentials,
1700
+ headers: headers,
1701
+ observe: observe,
1702
+ reportProgress: reportProgress
1703
+ });
1704
+ };
1669
1705
  AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
1670
1706
  if (observe === void 0) { observe = 'body'; }
1671
1707
  if (reportProgress === void 0) { reportProgress = false; }
@@ -1760,6 +1796,42 @@
1760
1796
  reportProgress: reportProgress
1761
1797
  });
1762
1798
  };
1799
+ AudienceControllerService.prototype.getCombinedAnalysisAudienceCountUsingPOST = function (audienceAnalysisRequest, reqId, token, observe, reportProgress) {
1800
+ if (observe === void 0) { observe = 'body'; }
1801
+ if (reportProgress === void 0) { reportProgress = false; }
1802
+ if (audienceAnalysisRequest === null || audienceAnalysisRequest === undefined) {
1803
+ throw new Error('Required parameter audienceAnalysisRequest was null or undefined when calling getCombinedAnalysisAudienceCountUsingPOST.');
1804
+ }
1805
+ var headers = this.defaultHeaders;
1806
+ if (reqId !== undefined && reqId !== null) {
1807
+ headers = headers.set('reqId', String(reqId));
1808
+ }
1809
+ if (token !== undefined && token !== null) {
1810
+ headers = headers.set('token', String(token));
1811
+ }
1812
+ // to determine the Accept header
1813
+ var httpHeaderAccepts = [
1814
+ '*/*'
1815
+ ];
1816
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1817
+ if (httpHeaderAcceptSelected != undefined) {
1818
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1819
+ }
1820
+ // to determine the Content-Type header
1821
+ var consumes = [
1822
+ 'application/json'
1823
+ ];
1824
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1825
+ if (httpContentTypeSelected != undefined) {
1826
+ headers = headers.set('Content-Type', httpContentTypeSelected);
1827
+ }
1828
+ return this.httpClient.post(this.basePath + "/v2/api/audience/audienceanalysis/combination", audienceAnalysisRequest, {
1829
+ withCredentials: this.configuration.withCredentials,
1830
+ headers: headers,
1831
+ observe: observe,
1832
+ reportProgress: reportProgress
1833
+ });
1834
+ };
1763
1835
  AudienceControllerService.prototype.getEligibleUsersCountUsingPOST = function (eligibleUsersRequest, reqId, token, observe, reportProgress) {
1764
1836
  if (observe === void 0) { observe = 'body'; }
1765
1837
  if (reportProgress === void 0) { reportProgress = false; }
@@ -2048,7 +2120,7 @@
2048
2120
  var AuditControllerService = /** @class */ (function () {
2049
2121
  function AuditControllerService(httpClient, basePath, configuration) {
2050
2122
  this.httpClient = httpClient;
2051
- this.basePath = 'https://apiv2stage1.atomex.net';
2123
+ this.basePath = 'https://apiv2stage3.atomex.net';
2052
2124
  this.defaultHeaders = new http.HttpHeaders();
2053
2125
  this.configuration = new Configuration();
2054
2126
  if (basePath) {
@@ -2235,7 +2307,7 @@
2235
2307
  var BulkStrategyControllerService = /** @class */ (function () {
2236
2308
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2237
2309
  this.httpClient = httpClient;
2238
- this.basePath = 'https://apiv2stage1.atomex.net';
2310
+ this.basePath = 'https://apiv2stage3.atomex.net';
2239
2311
  this.defaultHeaders = new http.HttpHeaders();
2240
2312
  this.configuration = new Configuration();
2241
2313
  if (basePath) {
@@ -2466,7 +2538,7 @@
2466
2538
  var CSSThemeController_Service = /** @class */ (function () {
2467
2539
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2468
2540
  this.httpClient = httpClient;
2469
- this.basePath = 'https://apiv2stage1.atomex.net';
2541
+ this.basePath = 'https://apiv2stage3.atomex.net';
2470
2542
  this.defaultHeaders = new http.HttpHeaders();
2471
2543
  this.configuration = new Configuration();
2472
2544
  if (basePath) {
@@ -2575,7 +2647,7 @@
2575
2647
  var CampaignControllerService = /** @class */ (function () {
2576
2648
  function CampaignControllerService(httpClient, basePath, configuration) {
2577
2649
  this.httpClient = httpClient;
2578
- this.basePath = 'https://apiv2stage1.atomex.net';
2650
+ this.basePath = 'https://apiv2stage3.atomex.net';
2579
2651
  this.defaultHeaders = new http.HttpHeaders();
2580
2652
  this.configuration = new Configuration();
2581
2653
  if (basePath) {
@@ -2885,7 +2957,7 @@
2885
2957
  var CatalogControllerService = /** @class */ (function () {
2886
2958
  function CatalogControllerService(httpClient, basePath, configuration) {
2887
2959
  this.httpClient = httpClient;
2888
- this.basePath = 'https://apiv2stage1.atomex.net';
2960
+ this.basePath = 'https://apiv2stage3.atomex.net';
2889
2961
  this.defaultHeaders = new http.HttpHeaders();
2890
2962
  this.configuration = new Configuration();
2891
2963
  if (basePath) {
@@ -3131,7 +3203,7 @@
3131
3203
  var ClickDestinationControllerService = /** @class */ (function () {
3132
3204
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3133
3205
  this.httpClient = httpClient;
3134
- this.basePath = 'https://apiv2stage1.atomex.net';
3206
+ this.basePath = 'https://apiv2stage3.atomex.net';
3135
3207
  this.defaultHeaders = new http.HttpHeaders();
3136
3208
  this.configuration = new Configuration();
3137
3209
  if (basePath) {
@@ -3369,7 +3441,7 @@
3369
3441
  var CreativeControllerService = /** @class */ (function () {
3370
3442
  function CreativeControllerService(httpClient, basePath, configuration) {
3371
3443
  this.httpClient = httpClient;
3372
- this.basePath = 'https://apiv2stage1.atomex.net';
3444
+ this.basePath = 'https://apiv2stage3.atomex.net';
3373
3445
  this.defaultHeaders = new http.HttpHeaders();
3374
3446
  this.configuration = new Configuration();
3375
3447
  if (basePath) {
@@ -3834,7 +3906,7 @@
3834
3906
  var CreativeSetsControllerService = /** @class */ (function () {
3835
3907
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
3836
3908
  this.httpClient = httpClient;
3837
- this.basePath = 'https://apiv2stage1.atomex.net';
3909
+ this.basePath = 'https://apiv2stage3.atomex.net';
3838
3910
  this.defaultHeaders = new http.HttpHeaders();
3839
3911
  this.configuration = new Configuration();
3840
3912
  if (basePath) {
@@ -4261,45 +4333,6 @@
4261
4333
  reportProgress: reportProgress
4262
4334
  });
4263
4335
  };
4264
- CreativeSetsControllerService.prototype.rescheduleUsingPOST = function (creativeSetRescheduleRequest, id, reqId, token, observe, reportProgress) {
4265
- if (observe === void 0) { observe = 'body'; }
4266
- if (reportProgress === void 0) { reportProgress = false; }
4267
- if (creativeSetRescheduleRequest === null || creativeSetRescheduleRequest === undefined) {
4268
- throw new Error('Required parameter creativeSetRescheduleRequest was null or undefined when calling rescheduleUsingPOST.');
4269
- }
4270
- if (id === null || id === undefined) {
4271
- throw new Error('Required parameter id was null or undefined when calling rescheduleUsingPOST.');
4272
- }
4273
- var headers = this.defaultHeaders;
4274
- if (reqId !== undefined && reqId !== null) {
4275
- headers = headers.set('reqId', String(reqId));
4276
- }
4277
- if (token !== undefined && token !== null) {
4278
- headers = headers.set('token', String(token));
4279
- }
4280
- // to determine the Accept header
4281
- var httpHeaderAccepts = [
4282
- 'application/json'
4283
- ];
4284
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4285
- if (httpHeaderAcceptSelected != undefined) {
4286
- headers = headers.set('Accept', httpHeaderAcceptSelected);
4287
- }
4288
- // to determine the Content-Type header
4289
- var consumes = [
4290
- 'application/json'
4291
- ];
4292
- var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
4293
- if (httpContentTypeSelected != undefined) {
4294
- headers = headers.set('Content-Type', httpContentTypeSelected);
4295
- }
4296
- return this.httpClient.post(this.basePath + "/v2/api/creativesets/reschedule/" + encodeURIComponent(String(id)), creativeSetRescheduleRequest, {
4297
- withCredentials: this.configuration.withCredentials,
4298
- headers: headers,
4299
- observe: observe,
4300
- reportProgress: reportProgress
4301
- });
4302
- };
4303
4336
  CreativeSetsControllerService.prototype.updateUsingPOST = function (creativeSetRequest, id, reqId, token, observe, reportProgress) {
4304
4337
  if (observe === void 0) { observe = 'body'; }
4305
4338
  if (reportProgress === void 0) { reportProgress = false; }
@@ -4353,7 +4386,7 @@
4353
4386
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4354
4387
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4355
4388
  this.httpClient = httpClient;
4356
- this.basePath = 'https://apiv2stage1.atomex.net';
4389
+ this.basePath = 'https://apiv2stage3.atomex.net';
4357
4390
  this.defaultHeaders = new http.HttpHeaders();
4358
4391
  this.configuration = new Configuration();
4359
4392
  if (basePath) {
@@ -4542,7 +4575,7 @@
4542
4575
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4543
4576
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4544
4577
  this.httpClient = httpClient;
4545
- this.basePath = 'https://apiv2stage1.atomex.net';
4578
+ this.basePath = 'https://apiv2stage3.atomex.net';
4546
4579
  this.defaultHeaders = new http.HttpHeaders();
4547
4580
  this.configuration = new Configuration();
4548
4581
  if (basePath) {
@@ -4618,7 +4651,7 @@
4618
4651
  var CreativeTemplatesControllerService = /** @class */ (function () {
4619
4652
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4620
4653
  this.httpClient = httpClient;
4621
- this.basePath = 'https://apiv2stage1.atomex.net';
4654
+ this.basePath = 'https://apiv2stage3.atomex.net';
4622
4655
  this.defaultHeaders = new http.HttpHeaders();
4623
4656
  this.configuration = new Configuration();
4624
4657
  if (basePath) {
@@ -4785,7 +4818,7 @@
4785
4818
  var CustomerReportingControllerService = /** @class */ (function () {
4786
4819
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
4787
4820
  this.httpClient = httpClient;
4788
- this.basePath = 'https://apiv2stage1.atomex.net';
4821
+ this.basePath = 'https://apiv2stage3.atomex.net';
4789
4822
  this.defaultHeaders = new http.HttpHeaders();
4790
4823
  this.configuration = new Configuration();
4791
4824
  if (basePath) {
@@ -4870,7 +4903,7 @@
4870
4903
  var DashboardControllerService = /** @class */ (function () {
4871
4904
  function DashboardControllerService(httpClient, basePath, configuration) {
4872
4905
  this.httpClient = httpClient;
4873
- this.basePath = 'https://apiv2stage1.atomex.net';
4906
+ this.basePath = 'https://apiv2stage3.atomex.net';
4874
4907
  this.defaultHeaders = new http.HttpHeaders();
4875
4908
  this.configuration = new Configuration();
4876
4909
  if (basePath) {
@@ -5515,7 +5548,7 @@
5515
5548
  var NotificationsControllerService = /** @class */ (function () {
5516
5549
  function NotificationsControllerService(httpClient, basePath, configuration) {
5517
5550
  this.httpClient = httpClient;
5518
- this.basePath = 'https://apiv2stage1.atomex.net';
5551
+ this.basePath = 'https://apiv2stage3.atomex.net';
5519
5552
  this.defaultHeaders = new http.HttpHeaders();
5520
5553
  this.configuration = new Configuration();
5521
5554
  if (basePath) {
@@ -5702,7 +5735,7 @@
5702
5735
  var PixelControllerService = /** @class */ (function () {
5703
5736
  function PixelControllerService(httpClient, basePath, configuration) {
5704
5737
  this.httpClient = httpClient;
5705
- this.basePath = 'https://apiv2stage1.atomex.net';
5738
+ this.basePath = 'https://apiv2stage3.atomex.net';
5706
5739
  this.defaultHeaders = new http.HttpHeaders();
5707
5740
  this.configuration = new Configuration();
5708
5741
  if (basePath) {
@@ -6019,7 +6052,7 @@
6019
6052
  var ReportingControllerService = /** @class */ (function () {
6020
6053
  function ReportingControllerService(httpClient, basePath, configuration) {
6021
6054
  this.httpClient = httpClient;
6022
- this.basePath = 'https://apiv2stage1.atomex.net';
6055
+ this.basePath = 'https://apiv2stage3.atomex.net';
6023
6056
  this.defaultHeaders = new http.HttpHeaders();
6024
6057
  this.configuration = new Configuration();
6025
6058
  if (basePath) {
@@ -6191,7 +6224,7 @@
6191
6224
  var SliceXControllerService = /** @class */ (function () {
6192
6225
  function SliceXControllerService(httpClient, basePath, configuration) {
6193
6226
  this.httpClient = httpClient;
6194
- this.basePath = 'https://apiv2stage1.atomex.net';
6227
+ this.basePath = 'https://apiv2stage3.atomex.net';
6195
6228
  this.defaultHeaders = new http.HttpHeaders();
6196
6229
  this.configuration = new Configuration();
6197
6230
  if (basePath) {
@@ -6447,7 +6480,7 @@
6447
6480
  var StrategyControllerService = /** @class */ (function () {
6448
6481
  function StrategyControllerService(httpClient, basePath, configuration) {
6449
6482
  this.httpClient = httpClient;
6450
- this.basePath = 'https://apiv2stage1.atomex.net';
6483
+ this.basePath = 'https://apiv2stage3.atomex.net';
6451
6484
  this.defaultHeaders = new http.HttpHeaders();
6452
6485
  this.configuration = new Configuration();
6453
6486
  if (basePath) {
@@ -6664,6 +6697,45 @@
6664
6697
  reportProgress: reportProgress
6665
6698
  });
6666
6699
  };
6700
+ StrategyControllerService.prototype.disassociateStrategyWithCreativeSetsUsingPOST = function (creativeSetIdsToBeRemoved, id, reqId, token, observe, reportProgress) {
6701
+ if (observe === void 0) { observe = 'body'; }
6702
+ if (reportProgress === void 0) { reportProgress = false; }
6703
+ if (creativeSetIdsToBeRemoved === null || creativeSetIdsToBeRemoved === undefined) {
6704
+ throw new Error('Required parameter creativeSetIdsToBeRemoved was null or undefined when calling disassociateStrategyWithCreativeSetsUsingPOST.');
6705
+ }
6706
+ if (id === null || id === undefined) {
6707
+ throw new Error('Required parameter id was null or undefined when calling disassociateStrategyWithCreativeSetsUsingPOST.');
6708
+ }
6709
+ var headers = this.defaultHeaders;
6710
+ if (reqId !== undefined && reqId !== null) {
6711
+ headers = headers.set('reqId', String(reqId));
6712
+ }
6713
+ if (token !== undefined && token !== null) {
6714
+ headers = headers.set('token', String(token));
6715
+ }
6716
+ // to determine the Accept header
6717
+ var httpHeaderAccepts = [
6718
+ 'application/json'
6719
+ ];
6720
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6721
+ if (httpHeaderAcceptSelected != undefined) {
6722
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
6723
+ }
6724
+ // to determine the Content-Type header
6725
+ var consumes = [
6726
+ 'application/json'
6727
+ ];
6728
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
6729
+ if (httpContentTypeSelected != undefined) {
6730
+ headers = headers.set('Content-Type', httpContentTypeSelected);
6731
+ }
6732
+ return this.httpClient.post(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/disassociate/creativesets", creativeSetIdsToBeRemoved, {
6733
+ withCredentials: this.configuration.withCredentials,
6734
+ headers: headers,
6735
+ observe: observe,
6736
+ reportProgress: reportProgress
6737
+ });
6738
+ };
6667
6739
  StrategyControllerService.prototype.duplicateStrategyUsingPOST = function (dto, id, reqId, token, observe, reportProgress) {
6668
6740
  if (observe === void 0) { observe = 'body'; }
6669
6741
  if (reportProgress === void 0) { reportProgress = false; }
@@ -7096,7 +7168,7 @@
7096
7168
  var UILoggerControllerService = /** @class */ (function () {
7097
7169
  function UILoggerControllerService(httpClient, basePath, configuration) {
7098
7170
  this.httpClient = httpClient;
7099
- this.basePath = 'https://apiv2stage1.atomex.net';
7171
+ this.basePath = 'https://apiv2stage3.atomex.net';
7100
7172
  this.defaultHeaders = new http.HttpHeaders();
7101
7173
  this.configuration = new Configuration();
7102
7174
  if (basePath) {
@@ -7186,7 +7258,7 @@
7186
7258
  var UserPreferenceControllerService = /** @class */ (function () {
7187
7259
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
7188
7260
  this.httpClient = httpClient;
7189
- this.basePath = 'https://apiv2stage1.atomex.net';
7261
+ this.basePath = 'https://apiv2stage3.atomex.net';
7190
7262
  this.defaultHeaders = new http.HttpHeaders();
7191
7263
  this.configuration = new Configuration();
7192
7264
  if (basePath) {