@revxui/api-clients-ts 1.1.239 → 1.1.241

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 (47) hide show
  1. package/README.md +2 -2
  2. package/api/strategyController.service.d.ts +8 -8
  3. package/bundles/revxui-api-clients-ts.umd.js +37 -59
  4. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  5. package/esm2015/api/adminController.service.js +2 -2
  6. package/esm2015/api/advertiserController.service.js +2 -2
  7. package/esm2015/api/appSettingsController.service.js +2 -2
  8. package/esm2015/api/audienceController.service.js +2 -2
  9. package/esm2015/api/auditController.service.js +2 -2
  10. package/esm2015/api/bidFunnelController.service.js +2 -2
  11. package/esm2015/api/bulkStrategyController.service.js +2 -2
  12. package/esm2015/api/cSSThemeController_.service.js +2 -2
  13. package/esm2015/api/campaignController.service.js +2 -2
  14. package/esm2015/api/catalogController.service.js +2 -2
  15. package/esm2015/api/clickDestinationController.service.js +2 -2
  16. package/esm2015/api/creativeController.service.js +2 -2
  17. package/esm2015/api/creativeSetsController.service.js +2 -2
  18. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  19. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  20. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  21. package/esm2015/api/customerReportingController.service.js +2 -2
  22. package/esm2015/api/dashboardController.service.js +2 -2
  23. package/esm2015/api/notificationsController.service.js +2 -2
  24. package/esm2015/api/pixelController.service.js +2 -2
  25. package/esm2015/api/reportingController.service.js +2 -2
  26. package/esm2015/api/reportingSchedulerController.service.js +2 -2
  27. package/esm2015/api/sliceXController.service.js +2 -2
  28. package/esm2015/api/strategyController.service.js +12 -12
  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/model/creativeSetResponse.js +1 -12
  33. package/esm2015/model/duplicateCreativeSetResponse.js +1 -12
  34. package/esm2015/model/models.js +3 -1
  35. package/esm2015/model/strategyDTO.js +1 -1
  36. package/esm2015/model/targetObject.js +13 -0
  37. package/esm2015/model/zipCode.js +2 -0
  38. package/fesm2015/revxui-api-clients-ts.js +49 -59
  39. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  40. package/model/creativeSetResponse.d.ts +2 -0
  41. package/model/duplicateCreativeSetResponse.d.ts +2 -0
  42. package/model/models.d.ts +2 -0
  43. package/model/strategyDTO.d.ts +2 -0
  44. package/model/targetObject.d.ts +15 -0
  45. package/model/zipCode.d.ts +16 -0
  46. package/package.json +1 -1
  47. package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.239
1
+ ## @revxui/api-clients-ts@1.1.241
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.239 --save
22
+ npm install @revxui/api-clients-ts@1.1.241 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -48,15 +48,15 @@ export declare class StrategyControllerService {
48
48
  /**
49
49
  * Api to activate Lists of Strategy id
50
50
  *
51
- * @param id id
51
+ * @param ids ids
52
52
  * @param reqId request id
53
53
  * @param token Auth Token
54
54
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
55
55
  * @param reportProgress flag to report request and response progress.
56
56
  */
57
- activateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
58
- activateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
59
- activateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
57
+ activateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
58
+ activateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
59
+ activateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
60
60
  /**
61
61
  * Api to associate strategy to creative
62
62
  *
@@ -96,15 +96,15 @@ export declare class StrategyControllerService {
96
96
  /**
97
97
  * Api to deactivate Lists of Strategy ids
98
98
  *
99
- * @param id id
99
+ * @param ids ids
100
100
  * @param reqId request id
101
101
  * @param token Auth Token
102
102
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
103
103
  * @param reportProgress flag to report request and response progress.
104
104
  */
105
- deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
106
- deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
107
- deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
105
+ deactivateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
106
+ deactivateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
107
+ deactivateStrategyUsingPOST(ids: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
108
108
  /**
109
109
  * Api to disassociate strategy to creative set
110
110
  *
@@ -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://apiv2stage2.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://apiv2stage2.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) {
@@ -1047,7 +1047,7 @@
1047
1047
  var AppSettingsControllerService = /** @class */ (function () {
1048
1048
  function AppSettingsControllerService(httpClient, basePath, configuration) {
1049
1049
  this.httpClient = httpClient;
1050
- this.basePath = 'https://apiv2stage2.atomex.net';
1050
+ this.basePath = 'https://apiv2stage7.atomex.net';
1051
1051
  this.defaultHeaders = new http.HttpHeaders();
1052
1052
  this.configuration = new Configuration();
1053
1053
  if (basePath) {
@@ -1300,7 +1300,7 @@
1300
1300
  var AudienceControllerService = /** @class */ (function () {
1301
1301
  function AudienceControllerService(httpClient, basePath, configuration) {
1302
1302
  this.httpClient = httpClient;
1303
- this.basePath = 'https://apiv2stage2.atomex.net';
1303
+ this.basePath = 'https://apiv2stage7.atomex.net';
1304
1304
  this.defaultHeaders = new http.HttpHeaders();
1305
1305
  this.configuration = new Configuration();
1306
1306
  if (basePath) {
@@ -2158,7 +2158,7 @@
2158
2158
  var AuditControllerService = /** @class */ (function () {
2159
2159
  function AuditControllerService(httpClient, basePath, configuration) {
2160
2160
  this.httpClient = httpClient;
2161
- this.basePath = 'https://apiv2stage2.atomex.net';
2161
+ this.basePath = 'https://apiv2stage7.atomex.net';
2162
2162
  this.defaultHeaders = new http.HttpHeaders();
2163
2163
  this.configuration = new Configuration();
2164
2164
  if (basePath) {
@@ -2345,7 +2345,7 @@
2345
2345
  var BidFunnelControllerService = /** @class */ (function () {
2346
2346
  function BidFunnelControllerService(httpClient, basePath, configuration) {
2347
2347
  this.httpClient = httpClient;
2348
- this.basePath = 'https://apiv2stage2.atomex.net';
2348
+ this.basePath = 'https://apiv2stage7.atomex.net';
2349
2349
  this.defaultHeaders = new http.HttpHeaders();
2350
2350
  this.configuration = new Configuration();
2351
2351
  if (basePath) {
@@ -2476,7 +2476,7 @@
2476
2476
  var BulkStrategyControllerService = /** @class */ (function () {
2477
2477
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2478
2478
  this.httpClient = httpClient;
2479
- this.basePath = 'https://apiv2stage2.atomex.net';
2479
+ this.basePath = 'https://apiv2stage7.atomex.net';
2480
2480
  this.defaultHeaders = new http.HttpHeaders();
2481
2481
  this.configuration = new Configuration();
2482
2482
  if (basePath) {
@@ -2707,7 +2707,7 @@
2707
2707
  var CSSThemeController_Service = /** @class */ (function () {
2708
2708
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2709
2709
  this.httpClient = httpClient;
2710
- this.basePath = 'https://apiv2stage2.atomex.net';
2710
+ this.basePath = 'https://apiv2stage7.atomex.net';
2711
2711
  this.defaultHeaders = new http.HttpHeaders();
2712
2712
  this.configuration = new Configuration();
2713
2713
  if (basePath) {
@@ -2816,7 +2816,7 @@
2816
2816
  var CampaignControllerService = /** @class */ (function () {
2817
2817
  function CampaignControllerService(httpClient, basePath, configuration) {
2818
2818
  this.httpClient = httpClient;
2819
- this.basePath = 'https://apiv2stage2.atomex.net';
2819
+ this.basePath = 'https://apiv2stage7.atomex.net';
2820
2820
  this.defaultHeaders = new http.HttpHeaders();
2821
2821
  this.configuration = new Configuration();
2822
2822
  if (basePath) {
@@ -3126,7 +3126,7 @@
3126
3126
  var CatalogControllerService = /** @class */ (function () {
3127
3127
  function CatalogControllerService(httpClient, basePath, configuration) {
3128
3128
  this.httpClient = httpClient;
3129
- this.basePath = 'https://apiv2stage2.atomex.net';
3129
+ this.basePath = 'https://apiv2stage7.atomex.net';
3130
3130
  this.defaultHeaders = new http.HttpHeaders();
3131
3131
  this.configuration = new Configuration();
3132
3132
  if (basePath) {
@@ -3372,7 +3372,7 @@
3372
3372
  var ClickDestinationControllerService = /** @class */ (function () {
3373
3373
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3374
3374
  this.httpClient = httpClient;
3375
- this.basePath = 'https://apiv2stage2.atomex.net';
3375
+ this.basePath = 'https://apiv2stage7.atomex.net';
3376
3376
  this.defaultHeaders = new http.HttpHeaders();
3377
3377
  this.configuration = new Configuration();
3378
3378
  if (basePath) {
@@ -3610,7 +3610,7 @@
3610
3610
  var CreativeControllerService = /** @class */ (function () {
3611
3611
  function CreativeControllerService(httpClient, basePath, configuration) {
3612
3612
  this.httpClient = httpClient;
3613
- this.basePath = 'https://apiv2stage2.atomex.net';
3613
+ this.basePath = 'https://apiv2stage7.atomex.net';
3614
3614
  this.defaultHeaders = new http.HttpHeaders();
3615
3615
  this.configuration = new Configuration();
3616
3616
  if (basePath) {
@@ -4111,7 +4111,7 @@
4111
4111
  var CreativeSetsControllerService = /** @class */ (function () {
4112
4112
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
4113
4113
  this.httpClient = httpClient;
4114
- this.basePath = 'https://apiv2stage2.atomex.net';
4114
+ this.basePath = 'https://apiv2stage7.atomex.net';
4115
4115
  this.defaultHeaders = new http.HttpHeaders();
4116
4116
  this.configuration = new Configuration();
4117
4117
  if (basePath) {
@@ -4742,7 +4742,7 @@
4742
4742
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4743
4743
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4744
4744
  this.httpClient = httpClient;
4745
- this.basePath = 'https://apiv2stage2.atomex.net';
4745
+ this.basePath = 'https://apiv2stage7.atomex.net';
4746
4746
  this.defaultHeaders = new http.HttpHeaders();
4747
4747
  this.configuration = new Configuration();
4748
4748
  if (basePath) {
@@ -4931,7 +4931,7 @@
4931
4931
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4932
4932
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4933
4933
  this.httpClient = httpClient;
4934
- this.basePath = 'https://apiv2stage2.atomex.net';
4934
+ this.basePath = 'https://apiv2stage7.atomex.net';
4935
4935
  this.defaultHeaders = new http.HttpHeaders();
4936
4936
  this.configuration = new Configuration();
4937
4937
  if (basePath) {
@@ -5007,7 +5007,7 @@
5007
5007
  var CreativeTemplatesControllerService = /** @class */ (function () {
5008
5008
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
5009
5009
  this.httpClient = httpClient;
5010
- this.basePath = 'https://apiv2stage2.atomex.net';
5010
+ this.basePath = 'https://apiv2stage7.atomex.net';
5011
5011
  this.defaultHeaders = new http.HttpHeaders();
5012
5012
  this.configuration = new Configuration();
5013
5013
  if (basePath) {
@@ -5174,7 +5174,7 @@
5174
5174
  var CustomerReportingControllerService = /** @class */ (function () {
5175
5175
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
5176
5176
  this.httpClient = httpClient;
5177
- this.basePath = 'https://apiv2stage2.atomex.net';
5177
+ this.basePath = 'https://apiv2stage7.atomex.net';
5178
5178
  this.defaultHeaders = new http.HttpHeaders();
5179
5179
  this.configuration = new Configuration();
5180
5180
  if (basePath) {
@@ -5259,7 +5259,7 @@
5259
5259
  var DashboardControllerService = /** @class */ (function () {
5260
5260
  function DashboardControllerService(httpClient, basePath, configuration) {
5261
5261
  this.httpClient = httpClient;
5262
- this.basePath = 'https://apiv2stage2.atomex.net';
5262
+ this.basePath = 'https://apiv2stage7.atomex.net';
5263
5263
  this.defaultHeaders = new http.HttpHeaders();
5264
5264
  this.configuration = new Configuration();
5265
5265
  if (basePath) {
@@ -5945,7 +5945,7 @@
5945
5945
  var NotificationsControllerService = /** @class */ (function () {
5946
5946
  function NotificationsControllerService(httpClient, basePath, configuration) {
5947
5947
  this.httpClient = httpClient;
5948
- this.basePath = 'https://apiv2stage2.atomex.net';
5948
+ this.basePath = 'https://apiv2stage7.atomex.net';
5949
5949
  this.defaultHeaders = new http.HttpHeaders();
5950
5950
  this.configuration = new Configuration();
5951
5951
  if (basePath) {
@@ -6164,7 +6164,7 @@
6164
6164
  var PixelControllerService = /** @class */ (function () {
6165
6165
  function PixelControllerService(httpClient, basePath, configuration) {
6166
6166
  this.httpClient = httpClient;
6167
- this.basePath = 'https://apiv2stage2.atomex.net';
6167
+ this.basePath = 'https://apiv2stage7.atomex.net';
6168
6168
  this.defaultHeaders = new http.HttpHeaders();
6169
6169
  this.configuration = new Configuration();
6170
6170
  if (basePath) {
@@ -6481,7 +6481,7 @@
6481
6481
  var ReportingControllerService = /** @class */ (function () {
6482
6482
  function ReportingControllerService(httpClient, basePath, configuration) {
6483
6483
  this.httpClient = httpClient;
6484
- this.basePath = 'https://apiv2stage2.atomex.net';
6484
+ this.basePath = 'https://apiv2stage7.atomex.net';
6485
6485
  this.defaultHeaders = new http.HttpHeaders();
6486
6486
  this.configuration = new Configuration();
6487
6487
  if (basePath) {
@@ -6653,7 +6653,7 @@
6653
6653
  var ReportingSchedulerControllerService = /** @class */ (function () {
6654
6654
  function ReportingSchedulerControllerService(httpClient, basePath, configuration) {
6655
6655
  this.httpClient = httpClient;
6656
- this.basePath = 'https://apiv2stage2.atomex.net';
6656
+ this.basePath = 'https://apiv2stage7.atomex.net';
6657
6657
  this.defaultHeaders = new http.HttpHeaders();
6658
6658
  this.configuration = new Configuration();
6659
6659
  if (basePath) {
@@ -6978,7 +6978,7 @@
6978
6978
  var SliceXControllerService = /** @class */ (function () {
6979
6979
  function SliceXControllerService(httpClient, basePath, configuration) {
6980
6980
  this.httpClient = httpClient;
6981
- this.basePath = 'https://apiv2stage2.atomex.net';
6981
+ this.basePath = 'https://apiv2stage7.atomex.net';
6982
6982
  this.defaultHeaders = new http.HttpHeaders();
6983
6983
  this.configuration = new Configuration();
6984
6984
  if (basePath) {
@@ -7234,7 +7234,7 @@
7234
7234
  var StrategyControllerService = /** @class */ (function () {
7235
7235
  function StrategyControllerService(httpClient, basePath, configuration) {
7236
7236
  this.httpClient = httpClient;
7237
- this.basePath = 'https://apiv2stage2.atomex.net';
7237
+ this.basePath = 'https://apiv2stage7.atomex.net';
7238
7238
  this.defaultHeaders = new http.HttpHeaders();
7239
7239
  this.configuration = new Configuration();
7240
7240
  if (basePath) {
@@ -7269,15 +7269,15 @@
7269
7269
  }
7270
7270
  return false;
7271
7271
  };
7272
- StrategyControllerService.prototype.activateStrategyUsingPOST = function (id, reqId, token, observe, reportProgress) {
7272
+ StrategyControllerService.prototype.activateStrategyUsingPOST = function (ids, reqId, token, observe, reportProgress) {
7273
7273
  if (observe === void 0) { observe = 'body'; }
7274
7274
  if (reportProgress === void 0) { reportProgress = false; }
7275
- if (id === null || id === undefined) {
7276
- throw new Error('Required parameter id was null or undefined when calling activateStrategyUsingPOST.');
7275
+ if (ids === null || ids === undefined) {
7276
+ throw new Error('Required parameter ids was null or undefined when calling activateStrategyUsingPOST.');
7277
7277
  }
7278
7278
  var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
7279
- if (id !== undefined && id !== null) {
7280
- queryParameters = queryParameters.set('id', id);
7279
+ if (ids !== undefined && ids !== null) {
7280
+ queryParameters = queryParameters.set('ids', ids);
7281
7281
  }
7282
7282
  var headers = this.defaultHeaders;
7283
7283
  if (reqId !== undefined && reqId !== null) {
@@ -7414,15 +7414,15 @@
7414
7414
  reportProgress: reportProgress
7415
7415
  });
7416
7416
  };
7417
- StrategyControllerService.prototype.deactivateStrategyUsingPOST = function (id, reqId, token, observe, reportProgress) {
7417
+ StrategyControllerService.prototype.deactivateStrategyUsingPOST = function (ids, reqId, token, observe, reportProgress) {
7418
7418
  if (observe === void 0) { observe = 'body'; }
7419
7419
  if (reportProgress === void 0) { reportProgress = false; }
7420
- if (id === null || id === undefined) {
7421
- throw new Error('Required parameter id was null or undefined when calling deactivateStrategyUsingPOST.');
7420
+ if (ids === null || ids === undefined) {
7421
+ throw new Error('Required parameter ids was null or undefined when calling deactivateStrategyUsingPOST.');
7422
7422
  }
7423
7423
  var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
7424
- if (id !== undefined && id !== null) {
7425
- queryParameters = queryParameters.set('id', id);
7424
+ if (ids !== undefined && ids !== null) {
7425
+ queryParameters = queryParameters.set('ids', ids);
7426
7426
  }
7427
7427
  var headers = this.defaultHeaders;
7428
7428
  if (reqId !== undefined && reqId !== null) {
@@ -8066,7 +8066,7 @@
8066
8066
  var StrategyTemplateControllerService = /** @class */ (function () {
8067
8067
  function StrategyTemplateControllerService(httpClient, basePath, configuration) {
8068
8068
  this.httpClient = httpClient;
8069
- this.basePath = 'https://apiv2stage2.atomex.net';
8069
+ this.basePath = 'https://apiv2stage7.atomex.net';
8070
8070
  this.defaultHeaders = new http.HttpHeaders();
8071
8071
  this.configuration = new Configuration();
8072
8072
  if (basePath) {
@@ -8188,7 +8188,7 @@
8188
8188
  var UILoggerControllerService = /** @class */ (function () {
8189
8189
  function UILoggerControllerService(httpClient, basePath, configuration) {
8190
8190
  this.httpClient = httpClient;
8191
- this.basePath = 'https://apiv2stage2.atomex.net';
8191
+ this.basePath = 'https://apiv2stage7.atomex.net';
8192
8192
  this.defaultHeaders = new http.HttpHeaders();
8193
8193
  this.configuration = new Configuration();
8194
8194
  if (basePath) {
@@ -8278,7 +8278,7 @@
8278
8278
  var UserPreferenceControllerService = /** @class */ (function () {
8279
8279
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
8280
8280
  this.httpClient = httpClient;
8281
- this.basePath = 'https://apiv2stage2.atomex.net';
8281
+ this.basePath = 'https://apiv2stage7.atomex.net';
8282
8282
  this.defaultHeaders = new http.HttpHeaders();
8283
8283
  this.configuration = new Configuration();
8284
8284
  if (basePath) {
@@ -8929,17 +8929,6 @@
8929
8929
  };
8930
8930
  })(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
8931
8931
 
8932
- /**
8933
- * Api Documentation
8934
- * Api Documentation
8935
- *
8936
- * OpenAPI spec version: 1.0
8937
- *
8938
- *
8939
- * NOTE: This class is auto generated by the swagger code generator program.
8940
- * https://github.com/swagger-api/swagger-codegen.git
8941
- * Do not edit the class manually.
8942
- */
8943
8932
  exports.CreativeSetResponse = void 0;
8944
8933
  (function (CreativeSetResponse) {
8945
8934
  CreativeSetResponse.OtherCreativeSetTypeEnum = {
@@ -9001,17 +8990,6 @@
9001
8990
  };
9002
8991
  })(exports.DeviceTargetModel || (exports.DeviceTargetModel = {}));
9003
8992
 
9004
- /**
9005
- * Api Documentation
9006
- * Api Documentation
9007
- *
9008
- * OpenAPI spec version: 1.0
9009
- *
9010
- *
9011
- * NOTE: This class is auto generated by the swagger code generator program.
9012
- * https://github.com/swagger-api/swagger-codegen.git
9013
- * Do not edit the class manually.
9014
- */
9015
8993
  exports.DuplicateCreativeSetResponse = void 0;
9016
8994
  (function (DuplicateCreativeSetResponse) {
9017
8995
  DuplicateCreativeSetResponse.OtherCreativeSetTypeEnum = {