@revxui/api-clients-ts 1.1.90 → 1.1.91

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 (62) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +1 -3
  3. package/api/strategyController.service.d.ts +28 -0
  4. package/bundles/revxui-api-clients-ts.umd.js +120 -171
  5. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  6. package/esm2015/api/adminController.service.js +2 -2
  7. package/esm2015/api/advertiserController.service.js +2 -2
  8. package/esm2015/api/api.js +2 -4
  9. package/esm2015/api/appSettingsController.service.js +2 -2
  10. package/esm2015/api/audienceController.service.js +2 -2
  11. package/esm2015/api/auditController.service.js +2 -2
  12. package/esm2015/api/bulkStrategyController.service.js +2 -2
  13. package/esm2015/api/cSSThemeController_.service.js +2 -2
  14. package/esm2015/api/campaignController.service.js +2 -2
  15. package/esm2015/api/catalogController.service.js +2 -2
  16. package/esm2015/api/clickDestinationController.service.js +2 -2
  17. package/esm2015/api/creativeController.service.js +2 -2
  18. package/esm2015/api/creativeSetsController.service.js +2 -2
  19. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  20. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  21. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  22. package/esm2015/api/customerReportingController.service.js +2 -2
  23. package/esm2015/api/dashboardController.service.js +2 -2
  24. package/esm2015/api/notificationsController.service.js +2 -2
  25. package/esm2015/api/pixelController.service.js +2 -2
  26. package/esm2015/api/reportingController.service.js +2 -2
  27. package/esm2015/api/sliceXController.service.js +2 -2
  28. package/esm2015/api/strategyController.service.js +68 -2
  29. package/esm2015/api/strategyTemplateController.service.js +2 -2
  30. package/esm2015/api/uILoggerController.service.js +2 -2
  31. package/esm2015/api/userPreferenceController.service.js +2 -2
  32. package/esm2015/api.module.js +1 -3
  33. package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
  34. package/esm2015/model/creativeCompactDTO.js +3 -2
  35. package/esm2015/model/creativeDTO.js +3 -2
  36. package/esm2015/model/creativeDetails.js +3 -2
  37. package/esm2015/model/creativeFileForSet.js +3 -2
  38. package/esm2015/model/creativeFiles.js +3 -2
  39. package/esm2015/model/creativeHtmlFileForSet.js +3 -2
  40. package/esm2015/model/creativeSetDashboardMetric.js +3 -2
  41. package/esm2015/model/creativeSetDetails.js +3 -2
  42. package/esm2015/model/creativeSetRequest.js +3 -2
  43. package/esm2015/model/creativeSetResponse.js +3 -2
  44. package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
  45. package/fesm2015/revxui-api-clients-ts.js +117 -166
  46. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  47. package/model/baseModelWithCreativeSetType.d.ts +2 -1
  48. package/model/creativeCompactDTO.d.ts +2 -1
  49. package/model/creativeDTO.d.ts +2 -1
  50. package/model/creativeDetails.d.ts +2 -1
  51. package/model/creativeFileForSet.d.ts +2 -1
  52. package/model/creativeFiles.d.ts +2 -1
  53. package/model/creativeHtmlFileForSet.d.ts +2 -1
  54. package/model/creativeSetDashboardMetric.d.ts +2 -1
  55. package/model/creativeSetDetails.d.ts +2 -1
  56. package/model/creativeSetRequest.d.ts +2 -1
  57. package/model/creativeSetResponse.d.ts +2 -1
  58. package/model/duplicateCreativeSetResponse.d.ts +2 -1
  59. package/package.json +1 -1
  60. package/revxui-api-clients-ts.metadata.json +1 -1
  61. package/api/bidFunnelController.service.d.ts +0 -56
  62. package/esm2015/api/bidFunnelController.service.js +0 -132
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.90
1
+ ## @revxui/api-clients-ts@1.1.91
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.90 --save
22
+ npm install @revxui/api-clients-ts@1.1.91 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
package/api/api.d.ts CHANGED
@@ -8,8 +8,6 @@ export * from './audienceController.service';
8
8
  import { AudienceControllerService } from './audienceController.service';
9
9
  export * from './auditController.service';
10
10
  import { AuditControllerService } from './auditController.service';
11
- export * from './bidFunnelController.service';
12
- import { BidFunnelControllerService } from './bidFunnelController.service';
13
11
  export * from './bulkStrategyController.service';
14
12
  import { BulkStrategyControllerService } from './bulkStrategyController.service';
15
13
  export * from './cSSThemeController_.service';
@@ -50,4 +48,4 @@ export * from './uILoggerController.service';
50
48
  import { UILoggerControllerService } from './uILoggerController.service';
51
49
  export * from './userPreferenceController.service';
52
50
  import { UserPreferenceControllerService } from './userPreferenceController.service';
53
- export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BidFunnelControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof SliceXControllerService | typeof StrategyControllerService | typeof StrategyTemplateControllerService | typeof UILoggerControllerService | typeof UserPreferenceControllerService)[];
51
+ export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof SliceXControllerService | typeof StrategyControllerService | typeof StrategyTemplateControllerService | typeof UILoggerControllerService | typeof UserPreferenceControllerService)[];
@@ -14,6 +14,8 @@ import { Observable } from 'rxjs';
14
14
  import { ABTestDTO } from '../model/aBTestDTO';
15
15
  import { ApiListResponseABTestDTO } from '../model/apiListResponseABTestDTO';
16
16
  import { ApiResponseObjectABTestDTO } from '../model/apiResponseObjectABTestDTO';
17
+ import { ApiResponseObjectBidToConversionDTO } from '../model/apiResponseObjectBidToConversionDTO';
18
+ import { ApiResponseObjectBidToConversionFilterMap } from '../model/apiResponseObjectBidToConversionFilterMap';
17
19
  import { ApiResponseObjectGeoListDTO } from '../model/apiResponseObjectGeoListDTO';
18
20
  import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
19
21
  import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
@@ -156,6 +158,32 @@ export declare class StrategyControllerService {
156
158
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectABTestDTO>;
157
159
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectABTestDTO>>;
158
160
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectABTestDTO>>;
161
+ /**
162
+ * API to get bid to conversion funnel details
163
+ *
164
+ * @param id id
165
+ * @param date date
166
+ * @param reqId request id
167
+ * @param token Auth Token
168
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
169
+ * @param reportProgress flag to report request and response progress.
170
+ */
171
+ getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionDTO>;
172
+ getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionDTO>>;
173
+ getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionDTO>>;
174
+ /**
175
+ * API to get bid to conversion filter details
176
+ *
177
+ * @param id id
178
+ * @param date date
179
+ * @param reqId request id
180
+ * @param token Auth Token
181
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
182
+ * @param reportProgress flag to report request and response progress.
183
+ */
184
+ getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionFilterMap>;
185
+ getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionFilterMap>>;
186
+ getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionFilterMap>>;
159
187
  /**
160
188
  * API to fetch settings for a SKAD Strategy
161
189
  *
@@ -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://apiv2stage5.atomex.net';
373
+ this.basePath = 'https://apiv2stage7.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://apiv2stage5.atomex.net';
578
+ this.basePath = 'https://apiv2stage7.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://apiv2stage5.atomex.net';
1012
+ this.basePath = 'https://apiv2stage7.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://apiv2stage5.atomex.net';
1265
+ this.basePath = 'https://apiv2stage7.atomex.net';
1266
1266
  this.defaultHeaders = new http.HttpHeaders();
1267
1267
  this.configuration = new Configuration();
1268
1268
  if (basePath) {
@@ -2120,7 +2120,7 @@
2120
2120
  var AuditControllerService = /** @class */ (function () {
2121
2121
  function AuditControllerService(httpClient, basePath, configuration) {
2122
2122
  this.httpClient = httpClient;
2123
- this.basePath = 'https://apiv2stage5.atomex.net';
2123
+ this.basePath = 'https://apiv2stage7.atomex.net';
2124
2124
  this.defaultHeaders = new http.HttpHeaders();
2125
2125
  this.configuration = new Configuration();
2126
2126
  if (basePath) {
@@ -2304,141 +2304,10 @@
2304
2304
  { type: Configuration, decorators: [{ type: core.Optional }] }
2305
2305
  ]; };
2306
2306
 
2307
- var BidFunnelControllerService = /** @class */ (function () {
2308
- function BidFunnelControllerService(httpClient, basePath, configuration) {
2309
- this.httpClient = httpClient;
2310
- this.basePath = 'https://apiv2stage5.atomex.net';
2311
- this.defaultHeaders = new http.HttpHeaders();
2312
- this.configuration = new Configuration();
2313
- if (basePath) {
2314
- this.basePath = basePath;
2315
- }
2316
- if (configuration) {
2317
- this.configuration = configuration;
2318
- this.basePath = basePath || configuration.basePath || this.basePath;
2319
- }
2320
- }
2321
- /**
2322
- * @param consumes string[] mime-types
2323
- * @return true: consumes contains 'multipart/form-data', false: otherwise
2324
- */
2325
- BidFunnelControllerService.prototype.canConsumeForm = function (consumes) {
2326
- var e_1, _a;
2327
- var form = 'multipart/form-data';
2328
- try {
2329
- for (var consumes_1 = __values(consumes), consumes_1_1 = consumes_1.next(); !consumes_1_1.done; consumes_1_1 = consumes_1.next()) {
2330
- var consume = consumes_1_1.value;
2331
- if (form === consume) {
2332
- return true;
2333
- }
2334
- }
2335
- }
2336
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
2337
- finally {
2338
- try {
2339
- if (consumes_1_1 && !consumes_1_1.done && (_a = consumes_1.return)) _a.call(consumes_1);
2340
- }
2341
- finally { if (e_1) throw e_1.error; }
2342
- }
2343
- return false;
2344
- };
2345
- BidFunnelControllerService.prototype.getBidToConversionDetailsUsingGET = function (entity, id, date, reqId, token, observe, reportProgress) {
2346
- if (observe === void 0) { observe = 'body'; }
2347
- if (reportProgress === void 0) { reportProgress = false; }
2348
- if (entity === null || entity === undefined) {
2349
- throw new Error('Required parameter entity was null or undefined when calling getBidToConversionDetailsUsingGET.');
2350
- }
2351
- if (id === null || id === undefined) {
2352
- throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsUsingGET.');
2353
- }
2354
- var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
2355
- if (date !== undefined && date !== null) {
2356
- queryParameters = queryParameters.set('date', date);
2357
- }
2358
- if (entity !== undefined && entity !== null) {
2359
- queryParameters = queryParameters.set('entity', entity);
2360
- }
2361
- var headers = this.defaultHeaders;
2362
- if (reqId !== undefined && reqId !== null) {
2363
- headers = headers.set('reqId', String(reqId));
2364
- }
2365
- if (token !== undefined && token !== null) {
2366
- headers = headers.set('token', String(token));
2367
- }
2368
- // to determine the Accept header
2369
- var httpHeaderAccepts = [
2370
- 'application/json'
2371
- ];
2372
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2373
- if (httpHeaderAcceptSelected != undefined) {
2374
- headers = headers.set('Accept', httpHeaderAcceptSelected);
2375
- }
2376
- // to determine the Content-Type header
2377
- var consumes = [];
2378
- return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)), {
2379
- params: queryParameters,
2380
- withCredentials: this.configuration.withCredentials,
2381
- headers: headers,
2382
- observe: observe,
2383
- reportProgress: reportProgress
2384
- });
2385
- };
2386
- BidFunnelControllerService.prototype.getBidToConversionFilterDetailsUsingGET = function (entity, id, date, reqId, token, observe, reportProgress) {
2387
- if (observe === void 0) { observe = 'body'; }
2388
- if (reportProgress === void 0) { reportProgress = false; }
2389
- if (entity === null || entity === undefined) {
2390
- throw new Error('Required parameter entity was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
2391
- }
2392
- if (id === null || id === undefined) {
2393
- throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
2394
- }
2395
- var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
2396
- if (date !== undefined && date !== null) {
2397
- queryParameters = queryParameters.set('date', date);
2398
- }
2399
- if (entity !== undefined && entity !== null) {
2400
- queryParameters = queryParameters.set('entity', entity);
2401
- }
2402
- var headers = this.defaultHeaders;
2403
- if (reqId !== undefined && reqId !== null) {
2404
- headers = headers.set('reqId', String(reqId));
2405
- }
2406
- if (token !== undefined && token !== null) {
2407
- headers = headers.set('token', String(token));
2408
- }
2409
- // to determine the Accept header
2410
- var httpHeaderAccepts = [
2411
- 'application/json'
2412
- ];
2413
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2414
- if (httpHeaderAcceptSelected != undefined) {
2415
- headers = headers.set('Accept', httpHeaderAcceptSelected);
2416
- }
2417
- // to determine the Content-Type header
2418
- var consumes = [];
2419
- return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)) + "/filters", {
2420
- params: queryParameters,
2421
- withCredentials: this.configuration.withCredentials,
2422
- headers: headers,
2423
- observe: observe,
2424
- reportProgress: reportProgress
2425
- });
2426
- };
2427
- return BidFunnelControllerService;
2428
- }());
2429
- BidFunnelControllerService.decorators = [
2430
- { type: core.Injectable }
2431
- ];
2432
- BidFunnelControllerService.ctorParameters = function () { return [
2433
- { type: http.HttpClient },
2434
- { type: String, decorators: [{ type: core.Optional }, { type: core.Inject, args: [BASE_PATH,] }] },
2435
- { type: Configuration, decorators: [{ type: core.Optional }] }
2436
- ]; };
2437
-
2438
2307
  var BulkStrategyControllerService = /** @class */ (function () {
2439
2308
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2440
2309
  this.httpClient = httpClient;
2441
- this.basePath = 'https://apiv2stage5.atomex.net';
2310
+ this.basePath = 'https://apiv2stage7.atomex.net';
2442
2311
  this.defaultHeaders = new http.HttpHeaders();
2443
2312
  this.configuration = new Configuration();
2444
2313
  if (basePath) {
@@ -2669,7 +2538,7 @@
2669
2538
  var CSSThemeController_Service = /** @class */ (function () {
2670
2539
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2671
2540
  this.httpClient = httpClient;
2672
- this.basePath = 'https://apiv2stage5.atomex.net';
2541
+ this.basePath = 'https://apiv2stage7.atomex.net';
2673
2542
  this.defaultHeaders = new http.HttpHeaders();
2674
2543
  this.configuration = new Configuration();
2675
2544
  if (basePath) {
@@ -2778,7 +2647,7 @@
2778
2647
  var CampaignControllerService = /** @class */ (function () {
2779
2648
  function CampaignControllerService(httpClient, basePath, configuration) {
2780
2649
  this.httpClient = httpClient;
2781
- this.basePath = 'https://apiv2stage5.atomex.net';
2650
+ this.basePath = 'https://apiv2stage7.atomex.net';
2782
2651
  this.defaultHeaders = new http.HttpHeaders();
2783
2652
  this.configuration = new Configuration();
2784
2653
  if (basePath) {
@@ -3088,7 +2957,7 @@
3088
2957
  var CatalogControllerService = /** @class */ (function () {
3089
2958
  function CatalogControllerService(httpClient, basePath, configuration) {
3090
2959
  this.httpClient = httpClient;
3091
- this.basePath = 'https://apiv2stage5.atomex.net';
2960
+ this.basePath = 'https://apiv2stage7.atomex.net';
3092
2961
  this.defaultHeaders = new http.HttpHeaders();
3093
2962
  this.configuration = new Configuration();
3094
2963
  if (basePath) {
@@ -3334,7 +3203,7 @@
3334
3203
  var ClickDestinationControllerService = /** @class */ (function () {
3335
3204
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3336
3205
  this.httpClient = httpClient;
3337
- this.basePath = 'https://apiv2stage5.atomex.net';
3206
+ this.basePath = 'https://apiv2stage7.atomex.net';
3338
3207
  this.defaultHeaders = new http.HttpHeaders();
3339
3208
  this.configuration = new Configuration();
3340
3209
  if (basePath) {
@@ -3572,7 +3441,7 @@
3572
3441
  var CreativeControllerService = /** @class */ (function () {
3573
3442
  function CreativeControllerService(httpClient, basePath, configuration) {
3574
3443
  this.httpClient = httpClient;
3575
- this.basePath = 'https://apiv2stage5.atomex.net';
3444
+ this.basePath = 'https://apiv2stage7.atomex.net';
3576
3445
  this.defaultHeaders = new http.HttpHeaders();
3577
3446
  this.configuration = new Configuration();
3578
3447
  if (basePath) {
@@ -4073,7 +3942,7 @@
4073
3942
  var CreativeSetsControllerService = /** @class */ (function () {
4074
3943
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
4075
3944
  this.httpClient = httpClient;
4076
- this.basePath = 'https://apiv2stage5.atomex.net';
3945
+ this.basePath = 'https://apiv2stage7.atomex.net';
4077
3946
  this.defaultHeaders = new http.HttpHeaders();
4078
3947
  this.configuration = new Configuration();
4079
3948
  if (basePath) {
@@ -4592,7 +4461,7 @@
4592
4461
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4593
4462
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4594
4463
  this.httpClient = httpClient;
4595
- this.basePath = 'https://apiv2stage5.atomex.net';
4464
+ this.basePath = 'https://apiv2stage7.atomex.net';
4596
4465
  this.defaultHeaders = new http.HttpHeaders();
4597
4466
  this.configuration = new Configuration();
4598
4467
  if (basePath) {
@@ -4781,7 +4650,7 @@
4781
4650
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4782
4651
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4783
4652
  this.httpClient = httpClient;
4784
- this.basePath = 'https://apiv2stage5.atomex.net';
4653
+ this.basePath = 'https://apiv2stage7.atomex.net';
4785
4654
  this.defaultHeaders = new http.HttpHeaders();
4786
4655
  this.configuration = new Configuration();
4787
4656
  if (basePath) {
@@ -4857,7 +4726,7 @@
4857
4726
  var CreativeTemplatesControllerService = /** @class */ (function () {
4858
4727
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4859
4728
  this.httpClient = httpClient;
4860
- this.basePath = 'https://apiv2stage5.atomex.net';
4729
+ this.basePath = 'https://apiv2stage7.atomex.net';
4861
4730
  this.defaultHeaders = new http.HttpHeaders();
4862
4731
  this.configuration = new Configuration();
4863
4732
  if (basePath) {
@@ -5024,7 +4893,7 @@
5024
4893
  var CustomerReportingControllerService = /** @class */ (function () {
5025
4894
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
5026
4895
  this.httpClient = httpClient;
5027
- this.basePath = 'https://apiv2stage5.atomex.net';
4896
+ this.basePath = 'https://apiv2stage7.atomex.net';
5028
4897
  this.defaultHeaders = new http.HttpHeaders();
5029
4898
  this.configuration = new Configuration();
5030
4899
  if (basePath) {
@@ -5109,7 +4978,7 @@
5109
4978
  var DashboardControllerService = /** @class */ (function () {
5110
4979
  function DashboardControllerService(httpClient, basePath, configuration) {
5111
4980
  this.httpClient = httpClient;
5112
- this.basePath = 'https://apiv2stage5.atomex.net';
4981
+ this.basePath = 'https://apiv2stage7.atomex.net';
5113
4982
  this.defaultHeaders = new http.HttpHeaders();
5114
4983
  this.configuration = new Configuration();
5115
4984
  if (basePath) {
@@ -5754,7 +5623,7 @@
5754
5623
  var NotificationsControllerService = /** @class */ (function () {
5755
5624
  function NotificationsControllerService(httpClient, basePath, configuration) {
5756
5625
  this.httpClient = httpClient;
5757
- this.basePath = 'https://apiv2stage5.atomex.net';
5626
+ this.basePath = 'https://apiv2stage7.atomex.net';
5758
5627
  this.defaultHeaders = new http.HttpHeaders();
5759
5628
  this.configuration = new Configuration();
5760
5629
  if (basePath) {
@@ -5973,7 +5842,7 @@
5973
5842
  var PixelControllerService = /** @class */ (function () {
5974
5843
  function PixelControllerService(httpClient, basePath, configuration) {
5975
5844
  this.httpClient = httpClient;
5976
- this.basePath = 'https://apiv2stage5.atomex.net';
5845
+ this.basePath = 'https://apiv2stage7.atomex.net';
5977
5846
  this.defaultHeaders = new http.HttpHeaders();
5978
5847
  this.configuration = new Configuration();
5979
5848
  if (basePath) {
@@ -6290,7 +6159,7 @@
6290
6159
  var ReportingControllerService = /** @class */ (function () {
6291
6160
  function ReportingControllerService(httpClient, basePath, configuration) {
6292
6161
  this.httpClient = httpClient;
6293
- this.basePath = 'https://apiv2stage5.atomex.net';
6162
+ this.basePath = 'https://apiv2stage7.atomex.net';
6294
6163
  this.defaultHeaders = new http.HttpHeaders();
6295
6164
  this.configuration = new Configuration();
6296
6165
  if (basePath) {
@@ -6462,7 +6331,7 @@
6462
6331
  var SliceXControllerService = /** @class */ (function () {
6463
6332
  function SliceXControllerService(httpClient, basePath, configuration) {
6464
6333
  this.httpClient = httpClient;
6465
- this.basePath = 'https://apiv2stage5.atomex.net';
6334
+ this.basePath = 'https://apiv2stage7.atomex.net';
6466
6335
  this.defaultHeaders = new http.HttpHeaders();
6467
6336
  this.configuration = new Configuration();
6468
6337
  if (basePath) {
@@ -6718,7 +6587,7 @@
6718
6587
  var StrategyControllerService = /** @class */ (function () {
6719
6588
  function StrategyControllerService(httpClient, basePath, configuration) {
6720
6589
  this.httpClient = httpClient;
6721
- this.basePath = 'https://apiv2stage5.atomex.net';
6590
+ this.basePath = 'https://apiv2stage7.atomex.net';
6722
6591
  this.defaultHeaders = new http.HttpHeaders();
6723
6592
  this.configuration = new Configuration();
6724
6593
  if (basePath) {
@@ -7076,6 +6945,76 @@
7076
6945
  reportProgress: reportProgress
7077
6946
  });
7078
6947
  };
6948
+ StrategyControllerService.prototype.getBidToConversionDetailsForStrategyUsingGET = function (id, date, reqId, token, observe, reportProgress) {
6949
+ if (observe === void 0) { observe = 'body'; }
6950
+ if (reportProgress === void 0) { reportProgress = false; }
6951
+ if (id === null || id === undefined) {
6952
+ throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsForStrategyUsingGET.');
6953
+ }
6954
+ var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
6955
+ if (date !== undefined && date !== null) {
6956
+ queryParameters = queryParameters.set('date', date);
6957
+ }
6958
+ var headers = this.defaultHeaders;
6959
+ if (reqId !== undefined && reqId !== null) {
6960
+ headers = headers.set('reqId', String(reqId));
6961
+ }
6962
+ if (token !== undefined && token !== null) {
6963
+ headers = headers.set('token', String(token));
6964
+ }
6965
+ // to determine the Accept header
6966
+ var httpHeaderAccepts = [
6967
+ 'application/json'
6968
+ ];
6969
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6970
+ if (httpHeaderAcceptSelected != undefined) {
6971
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
6972
+ }
6973
+ // to determine the Content-Type header
6974
+ var consumes = [];
6975
+ return this.httpClient.get(this.basePath + "/v2/api/strategies/b2c/" + encodeURIComponent(String(id)), {
6976
+ params: queryParameters,
6977
+ withCredentials: this.configuration.withCredentials,
6978
+ headers: headers,
6979
+ observe: observe,
6980
+ reportProgress: reportProgress
6981
+ });
6982
+ };
6983
+ StrategyControllerService.prototype.getBidToConversionFilterDetailsForStrategyUsingGET = function (id, date, reqId, token, observe, reportProgress) {
6984
+ if (observe === void 0) { observe = 'body'; }
6985
+ if (reportProgress === void 0) { reportProgress = false; }
6986
+ if (id === null || id === undefined) {
6987
+ throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsForStrategyUsingGET.');
6988
+ }
6989
+ var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
6990
+ if (date !== undefined && date !== null) {
6991
+ queryParameters = queryParameters.set('date', date);
6992
+ }
6993
+ var headers = this.defaultHeaders;
6994
+ if (reqId !== undefined && reqId !== null) {
6995
+ headers = headers.set('reqId', String(reqId));
6996
+ }
6997
+ if (token !== undefined && token !== null) {
6998
+ headers = headers.set('token', String(token));
6999
+ }
7000
+ // to determine the Accept header
7001
+ var httpHeaderAccepts = [
7002
+ 'application/json'
7003
+ ];
7004
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
7005
+ if (httpHeaderAcceptSelected != undefined) {
7006
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
7007
+ }
7008
+ // to determine the Content-Type header
7009
+ var consumes = [];
7010
+ return this.httpClient.get(this.basePath + "/v2/api/strategies/b2c/" + encodeURIComponent(String(id)) + "/filters", {
7011
+ params: queryParameters,
7012
+ withCredentials: this.configuration.withCredentials,
7013
+ headers: headers,
7014
+ observe: observe,
7015
+ reportProgress: reportProgress
7016
+ });
7017
+ };
7079
7018
  StrategyControllerService.prototype.getSkadSettingsUsingGET = function (reqId, token, observe, reportProgress) {
7080
7019
  if (observe === void 0) { observe = 'body'; }
7081
7020
  if (reportProgress === void 0) { reportProgress = false; }
@@ -7550,7 +7489,7 @@
7550
7489
  var StrategyTemplateControllerService = /** @class */ (function () {
7551
7490
  function StrategyTemplateControllerService(httpClient, basePath, configuration) {
7552
7491
  this.httpClient = httpClient;
7553
- this.basePath = 'https://apiv2stage5.atomex.net';
7492
+ this.basePath = 'https://apiv2stage7.atomex.net';
7554
7493
  this.defaultHeaders = new http.HttpHeaders();
7555
7494
  this.configuration = new Configuration();
7556
7495
  if (basePath) {
@@ -7672,7 +7611,7 @@
7672
7611
  var UILoggerControllerService = /** @class */ (function () {
7673
7612
  function UILoggerControllerService(httpClient, basePath, configuration) {
7674
7613
  this.httpClient = httpClient;
7675
- this.basePath = 'https://apiv2stage5.atomex.net';
7614
+ this.basePath = 'https://apiv2stage7.atomex.net';
7676
7615
  this.defaultHeaders = new http.HttpHeaders();
7677
7616
  this.configuration = new Configuration();
7678
7617
  if (basePath) {
@@ -7762,7 +7701,7 @@
7762
7701
  var UserPreferenceControllerService = /** @class */ (function () {
7763
7702
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
7764
7703
  this.httpClient = httpClient;
7765
- this.basePath = 'https://apiv2stage5.atomex.net';
7704
+ this.basePath = 'https://apiv2stage7.atomex.net';
7766
7705
  this.defaultHeaders = new http.HttpHeaders();
7767
7706
  this.configuration = new Configuration();
7768
7707
  if (basePath) {
@@ -7937,7 +7876,7 @@
7937
7876
  { type: Configuration, decorators: [{ type: core.Optional }] }
7938
7877
  ]; };
7939
7878
 
7940
- var APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
7879
+ var APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
7941
7880
 
7942
7881
  exports.ActivityLogsCreativeSetsBulkUpdateDTO = void 0;
7943
7882
  (function (ActivityLogsCreativeSetsBulkUpdateDTO) {
@@ -8133,7 +8072,8 @@
8133
8072
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8134
8073
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8135
8074
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8136
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8075
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8076
+ NATIVEICON: 'NATIVE_ICON'
8137
8077
  };
8138
8078
  })(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
8139
8079
 
@@ -8166,7 +8106,8 @@
8166
8106
  FbAppInstall: 'fbAppInstall',
8167
8107
  FbAppEngagement: 'fbAppEngagement',
8168
8108
  ClickTracker: 'clickTracker',
8169
- FbxImageNewsFeed: 'fbxImageNewsFeed'
8109
+ FbxImageNewsFeed: 'fbxImageNewsFeed',
8110
+ NativeIcon: 'nativeIcon'
8170
8111
  };
8171
8112
  })(exports.CreativeCompactDTO || (exports.CreativeCompactDTO = {}));
8172
8113
 
@@ -8204,7 +8145,8 @@
8204
8145
  FbAppInstall: 'fbAppInstall',
8205
8146
  FbAppEngagement: 'fbAppEngagement',
8206
8147
  ClickTracker: 'clickTracker',
8207
- FbxImageNewsFeed: 'fbxImageNewsFeed'
8148
+ FbxImageNewsFeed: 'fbxImageNewsFeed',
8149
+ NativeIcon: 'nativeIcon'
8208
8150
  };
8209
8151
  CreativeDTO.VideoUploadTypeEnum = {
8210
8152
  VIDEO: 'VIDEO',
@@ -8227,7 +8169,8 @@
8227
8169
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8228
8170
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8229
8171
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8230
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8172
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8173
+ NATIVEICON: 'NATIVE_ICON'
8231
8174
  };
8232
8175
  })(exports.CreativeDetails || (exports.CreativeDetails = {}));
8233
8176
 
@@ -8247,7 +8190,8 @@
8247
8190
  FbAppInstall: 'fbAppInstall',
8248
8191
  FbAppEngagement: 'fbAppEngagement',
8249
8192
  ClickTracker: 'clickTracker',
8250
- FbxImageNewsFeed: 'fbxImageNewsFeed'
8193
+ FbxImageNewsFeed: 'fbxImageNewsFeed',
8194
+ NativeIcon: 'nativeIcon'
8251
8195
  };
8252
8196
  })(exports.CreativeFileForSet || (exports.CreativeFileForSet = {}));
8253
8197
 
@@ -8267,7 +8211,8 @@
8267
8211
  FbAppInstall: 'fbAppInstall',
8268
8212
  FbAppEngagement: 'fbAppEngagement',
8269
8213
  ClickTracker: 'clickTracker',
8270
- FbxImageNewsFeed: 'fbxImageNewsFeed'
8214
+ FbxImageNewsFeed: 'fbxImageNewsFeed',
8215
+ NativeIcon: 'nativeIcon'
8271
8216
  };
8272
8217
  })(exports.CreativeFiles || (exports.CreativeFiles = {}));
8273
8218
 
@@ -8292,7 +8237,8 @@
8292
8237
  FbAppInstall: 'fbAppInstall',
8293
8238
  FbAppEngagement: 'fbAppEngagement',
8294
8239
  ClickTracker: 'clickTracker',
8295
- FbxImageNewsFeed: 'fbxImageNewsFeed'
8240
+ FbxImageNewsFeed: 'fbxImageNewsFeed',
8241
+ NativeIcon: 'nativeIcon'
8296
8242
  };
8297
8243
  })(exports.CreativeHtmlFileForSet || (exports.CreativeHtmlFileForSet = {}));
8298
8244
 
@@ -8311,7 +8257,8 @@
8311
8257
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8312
8258
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8313
8259
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8314
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8260
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8261
+ NATIVEICON: 'NATIVE_ICON'
8315
8262
  };
8316
8263
  })(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
8317
8264
 
@@ -8330,7 +8277,8 @@
8330
8277
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8331
8278
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8332
8279
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8333
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8280
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8281
+ NATIVEICON: 'NATIVE_ICON'
8334
8282
  };
8335
8283
  })(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
8336
8284
 
@@ -8349,7 +8297,8 @@
8349
8297
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8350
8298
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8351
8299
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8352
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8300
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8301
+ NATIVEICON: 'NATIVE_ICON'
8353
8302
  };
8354
8303
  })(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
8355
8304
 
@@ -8379,7 +8328,8 @@
8379
8328
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8380
8329
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8381
8330
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8382
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8331
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8332
+ NATIVEICON: 'NATIVE_ICON'
8383
8333
  };
8384
8334
  })(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
8385
8335
 
@@ -8429,7 +8379,8 @@
8429
8379
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
8430
8380
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
8431
8381
  HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
8432
- THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
8382
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
8383
+ NATIVEICON: 'NATIVE_ICON'
8433
8384
  };
8434
8385
  })(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
8435
8386
 
@@ -8986,7 +8937,6 @@
8986
8937
  AppSettingsControllerService,
8987
8938
  AudienceControllerService,
8988
8939
  AuditControllerService,
8989
- BidFunnelControllerService,
8990
8940
  BulkStrategyControllerService,
8991
8941
  CSSThemeController_Service,
8992
8942
  CampaignControllerService,
@@ -9027,7 +8977,6 @@
9027
8977
  exports.AudienceControllerService = AudienceControllerService;
9028
8978
  exports.AuditControllerService = AuditControllerService;
9029
8979
  exports.BASE_PATH = BASE_PATH;
9030
- exports.BidFunnelControllerService = BidFunnelControllerService;
9031
8980
  exports.BulkStrategyControllerService = BulkStrategyControllerService;
9032
8981
  exports.COLLECTION_FORMATS = COLLECTION_FORMATS;
9033
8982
  exports.CSSThemeController_Service = CSSThemeController_Service;