@revxui/api-clients-ts 0.10.334 → 0.10.336

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/appSettingsController.service.d.ts +39 -0
  3. package/bundles/revxui-api-clients-ts.umd.js +148 -23
  4. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  5. package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
  6. package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
  7. package/esm2015/api/adminController.service.js +2 -2
  8. package/esm2015/api/advertiserController.service.js +2 -2
  9. package/esm2015/api/appSettingsController.service.js +91 -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/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/sliceXController.service.js +2 -2
  27. package/esm2015/api/strategyController.service.js +2 -2
  28. package/esm2015/api/uILoggerController.service.js +2 -2
  29. package/esm2015/api/userPreferenceController.service.js +2 -2
  30. package/esm2015/model/advertiserDynamicVideoConfig.js +2 -0
  31. package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +2 -0
  32. package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +2 -0
  33. package/esm2015/model/dynamicVideoConfigDTO.js +30 -0
  34. package/esm2015/model/dynamicVideoDTO.js +2 -0
  35. package/esm2015/model/dynamicVideoTemplate.js +2 -0
  36. package/esm2015/model/models.js +8 -1
  37. package/esm2015/model/nameAndTitleModel.js +13 -0
  38. package/fesm2015/revxui-api-clients-ts.js +155 -24
  39. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  40. package/model/advertiserDynamicVideoConfig.d.ts +19 -0
  41. package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +17 -0
  42. package/model/apiResponseObjectListDynamicVideoTemplate.d.ts +17 -0
  43. package/model/dynamicVideoConfigDTO.d.ts +34 -0
  44. package/model/dynamicVideoDTO.d.ts +16 -0
  45. package/model/dynamicVideoTemplate.d.ts +18 -0
  46. package/model/models.d.ts +7 -0
  47. package/model/nameAndTitleModel.d.ts +15 -0
  48. package/package.json +1 -1
  49. package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.334
1
+ ## @revxui/api-clients-ts@0.10.336
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.334 --save
22
+ npm install @revxui/api-clients-ts@0.10.336 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -11,8 +11,12 @@
11
11
  */
12
12
  import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
13
13
  import { Observable } from 'rxjs';
14
+ import { ApiResponseObjectAdvertiserDynamicVideoConfig } from '../model/apiResponseObjectAdvertiserDynamicVideoConfig';
14
15
  import { ApiResponseObjectListAppSettingsDTO } from '../model/apiResponseObjectListAppSettingsDTO';
16
+ import { ApiResponseObjectListDynamicVideoTemplate } from '../model/apiResponseObjectListDynamicVideoTemplate';
17
+ import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
15
18
  import { AppSettingsDTO } from '../model/appSettingsDTO';
19
+ import { DynamicVideoDTO } from '../model/dynamicVideoDTO';
16
20
  import { Configuration } from '../configuration';
17
21
  export declare class AppSettingsControllerService {
18
22
  protected httpClient: HttpClient;
@@ -37,6 +41,29 @@ export declare class AppSettingsControllerService {
37
41
  createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
38
42
  createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
39
43
  createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
44
+ /**
45
+ * Api to fetch sample dynamic video templates
46
+ *
47
+ * @param reqId request id
48
+ * @param token Auth Token
49
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
50
+ * @param reportProgress flag to report request and response progress.
51
+ */
52
+ fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListDynamicVideoTemplate>;
53
+ fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListDynamicVideoTemplate>>;
54
+ fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListDynamicVideoTemplate>>;
55
+ /**
56
+ * Api to fetch dynamic video config for given advertiserid
57
+ *
58
+ * @param advertiserId advertiserId
59
+ * @param reqId request id
60
+ * @param token Auth Token
61
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
62
+ * @param reportProgress flag to report request and response progress.
63
+ */
64
+ fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectAdvertiserDynamicVideoConfig>;
65
+ fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectAdvertiserDynamicVideoConfig>>;
66
+ fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectAdvertiserDynamicVideoConfig>>;
40
67
  /**
41
68
  * Api to get App Settings
42
69
  *
@@ -62,4 +89,16 @@ export declare class AppSettingsControllerService {
62
89
  updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
63
90
  updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
64
91
  updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
92
+ /**
93
+ * Api to upsert dynamic video
94
+ *
95
+ * @param dynamicVideoDTO dynamicVideoDTO
96
+ * @param reqId request id
97
+ * @param token Auth Token
98
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
99
+ * @param reportProgress flag to report request and response progress.
100
+ */
101
+ upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectResponseMessage>;
102
+ upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectResponseMessage>>;
103
+ upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectResponseMessage>>;
65
104
  }
@@ -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://apiv2stage6.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://apiv2stage6.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://apiv2stage6.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) {
@@ -1080,6 +1080,65 @@
1080
1080
  reportProgress: reportProgress
1081
1081
  });
1082
1082
  };
1083
+ AppSettingsControllerService.prototype.fetchAllDynamicVideoTemplatesUsingGET = function (reqId, token, observe, reportProgress) {
1084
+ if (observe === void 0) { observe = 'body'; }
1085
+ if (reportProgress === void 0) { reportProgress = false; }
1086
+ var headers = this.defaultHeaders;
1087
+ if (reqId !== undefined && reqId !== null) {
1088
+ headers = headers.set('reqId', String(reqId));
1089
+ }
1090
+ if (token !== undefined && token !== null) {
1091
+ headers = headers.set('token', String(token));
1092
+ }
1093
+ // to determine the Accept header
1094
+ var httpHeaderAccepts = [
1095
+ 'application/json'
1096
+ ];
1097
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1098
+ if (httpHeaderAcceptSelected != undefined) {
1099
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1100
+ }
1101
+ // to determine the Content-Type header
1102
+ var consumes = [];
1103
+ return this.httpClient.get(this.basePath + "/v2/api/appsettings/dynamicvideo/templates", {
1104
+ withCredentials: this.configuration.withCredentials,
1105
+ headers: headers,
1106
+ observe: observe,
1107
+ reportProgress: reportProgress
1108
+ });
1109
+ };
1110
+ AppSettingsControllerService.prototype.fetchDynamicVideoConfigUsingGET = function (advertiserId, reqId, token, observe, reportProgress) {
1111
+ if (observe === void 0) { observe = 'body'; }
1112
+ if (reportProgress === void 0) { reportProgress = false; }
1113
+ var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
1114
+ if (advertiserId !== undefined && advertiserId !== null) {
1115
+ queryParameters = queryParameters.set('advertiserId', advertiserId);
1116
+ }
1117
+ var headers = this.defaultHeaders;
1118
+ if (reqId !== undefined && reqId !== null) {
1119
+ headers = headers.set('reqId', String(reqId));
1120
+ }
1121
+ if (token !== undefined && token !== null) {
1122
+ headers = headers.set('token', String(token));
1123
+ }
1124
+ // to determine the Accept header
1125
+ var httpHeaderAccepts = [
1126
+ 'application/json'
1127
+ ];
1128
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1129
+ if (httpHeaderAcceptSelected != undefined) {
1130
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1131
+ }
1132
+ // to determine the Content-Type header
1133
+ var consumes = [];
1134
+ return this.httpClient.get(this.basePath + "/v2/api/appsettings/dynamicvideo/config", {
1135
+ params: queryParameters,
1136
+ withCredentials: this.configuration.withCredentials,
1137
+ headers: headers,
1138
+ observe: observe,
1139
+ reportProgress: reportProgress
1140
+ });
1141
+ };
1083
1142
  AppSettingsControllerService.prototype.getAppSettingsUsingGET = function (advertiserId, reqId, settingsKeys, token, observe, reportProgress) {
1084
1143
  if (observe === void 0) { observe = 'body'; }
1085
1144
  if (reportProgress === void 0) { reportProgress = false; }
@@ -1153,6 +1212,42 @@
1153
1212
  reportProgress: reportProgress
1154
1213
  });
1155
1214
  };
1215
+ AppSettingsControllerService.prototype.upsertDynamicVideoUsingPOST = function (dynamicVideoDTO, reqId, token, observe, reportProgress) {
1216
+ if (observe === void 0) { observe = 'body'; }
1217
+ if (reportProgress === void 0) { reportProgress = false; }
1218
+ if (dynamicVideoDTO === null || dynamicVideoDTO === undefined) {
1219
+ throw new Error('Required parameter dynamicVideoDTO was null or undefined when calling upsertDynamicVideoUsingPOST.');
1220
+ }
1221
+ var headers = this.defaultHeaders;
1222
+ if (reqId !== undefined && reqId !== null) {
1223
+ headers = headers.set('reqId', String(reqId));
1224
+ }
1225
+ if (token !== undefined && token !== null) {
1226
+ headers = headers.set('token', String(token));
1227
+ }
1228
+ // to determine the Accept header
1229
+ var httpHeaderAccepts = [
1230
+ 'application/json'
1231
+ ];
1232
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
1233
+ if (httpHeaderAcceptSelected != undefined) {
1234
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
1235
+ }
1236
+ // to determine the Content-Type header
1237
+ var consumes = [
1238
+ 'application/json'
1239
+ ];
1240
+ var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1241
+ if (httpContentTypeSelected != undefined) {
1242
+ headers = headers.set('Content-Type', httpContentTypeSelected);
1243
+ }
1244
+ return this.httpClient.post(this.basePath + "/v2/api/appsettings/dynamicvideo/upsert", dynamicVideoDTO, {
1245
+ withCredentials: this.configuration.withCredentials,
1246
+ headers: headers,
1247
+ observe: observe,
1248
+ reportProgress: reportProgress
1249
+ });
1250
+ };
1156
1251
  return AppSettingsControllerService;
1157
1252
  }());
1158
1253
  AppSettingsControllerService.decorators = [
@@ -1167,7 +1262,7 @@
1167
1262
  var AudienceControllerService = /** @class */ (function () {
1168
1263
  function AudienceControllerService(httpClient, basePath, configuration) {
1169
1264
  this.httpClient = httpClient;
1170
- this.basePath = 'https://apiv2stage6.atomex.net';
1265
+ this.basePath = 'https://apiv2stage3.atomex.net';
1171
1266
  this.defaultHeaders = new http.HttpHeaders();
1172
1267
  this.configuration = new Configuration();
1173
1268
  if (basePath) {
@@ -1953,7 +2048,7 @@
1953
2048
  var AuditControllerService = /** @class */ (function () {
1954
2049
  function AuditControllerService(httpClient, basePath, configuration) {
1955
2050
  this.httpClient = httpClient;
1956
- this.basePath = 'https://apiv2stage6.atomex.net';
2051
+ this.basePath = 'https://apiv2stage3.atomex.net';
1957
2052
  this.defaultHeaders = new http.HttpHeaders();
1958
2053
  this.configuration = new Configuration();
1959
2054
  if (basePath) {
@@ -2140,7 +2235,7 @@
2140
2235
  var BulkStrategyControllerService = /** @class */ (function () {
2141
2236
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2142
2237
  this.httpClient = httpClient;
2143
- this.basePath = 'https://apiv2stage6.atomex.net';
2238
+ this.basePath = 'https://apiv2stage3.atomex.net';
2144
2239
  this.defaultHeaders = new http.HttpHeaders();
2145
2240
  this.configuration = new Configuration();
2146
2241
  if (basePath) {
@@ -2371,7 +2466,7 @@
2371
2466
  var CSSThemeController_Service = /** @class */ (function () {
2372
2467
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2373
2468
  this.httpClient = httpClient;
2374
- this.basePath = 'https://apiv2stage6.atomex.net';
2469
+ this.basePath = 'https://apiv2stage3.atomex.net';
2375
2470
  this.defaultHeaders = new http.HttpHeaders();
2376
2471
  this.configuration = new Configuration();
2377
2472
  if (basePath) {
@@ -2480,7 +2575,7 @@
2480
2575
  var CampaignControllerService = /** @class */ (function () {
2481
2576
  function CampaignControllerService(httpClient, basePath, configuration) {
2482
2577
  this.httpClient = httpClient;
2483
- this.basePath = 'https://apiv2stage6.atomex.net';
2578
+ this.basePath = 'https://apiv2stage3.atomex.net';
2484
2579
  this.defaultHeaders = new http.HttpHeaders();
2485
2580
  this.configuration = new Configuration();
2486
2581
  if (basePath) {
@@ -2790,7 +2885,7 @@
2790
2885
  var CatalogControllerService = /** @class */ (function () {
2791
2886
  function CatalogControllerService(httpClient, basePath, configuration) {
2792
2887
  this.httpClient = httpClient;
2793
- this.basePath = 'https://apiv2stage6.atomex.net';
2888
+ this.basePath = 'https://apiv2stage3.atomex.net';
2794
2889
  this.defaultHeaders = new http.HttpHeaders();
2795
2890
  this.configuration = new Configuration();
2796
2891
  if (basePath) {
@@ -3036,7 +3131,7 @@
3036
3131
  var ClickDestinationControllerService = /** @class */ (function () {
3037
3132
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3038
3133
  this.httpClient = httpClient;
3039
- this.basePath = 'https://apiv2stage6.atomex.net';
3134
+ this.basePath = 'https://apiv2stage3.atomex.net';
3040
3135
  this.defaultHeaders = new http.HttpHeaders();
3041
3136
  this.configuration = new Configuration();
3042
3137
  if (basePath) {
@@ -3274,7 +3369,7 @@
3274
3369
  var CreativeControllerService = /** @class */ (function () {
3275
3370
  function CreativeControllerService(httpClient, basePath, configuration) {
3276
3371
  this.httpClient = httpClient;
3277
- this.basePath = 'https://apiv2stage6.atomex.net';
3372
+ this.basePath = 'https://apiv2stage3.atomex.net';
3278
3373
  this.defaultHeaders = new http.HttpHeaders();
3279
3374
  this.configuration = new Configuration();
3280
3375
  if (basePath) {
@@ -3739,7 +3834,7 @@
3739
3834
  var CreativeSetsControllerService = /** @class */ (function () {
3740
3835
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
3741
3836
  this.httpClient = httpClient;
3742
- this.basePath = 'https://apiv2stage6.atomex.net';
3837
+ this.basePath = 'https://apiv2stage3.atomex.net';
3743
3838
  this.defaultHeaders = new http.HttpHeaders();
3744
3839
  this.configuration = new Configuration();
3745
3840
  if (basePath) {
@@ -4219,7 +4314,7 @@
4219
4314
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4220
4315
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4221
4316
  this.httpClient = httpClient;
4222
- this.basePath = 'https://apiv2stage6.atomex.net';
4317
+ this.basePath = 'https://apiv2stage3.atomex.net';
4223
4318
  this.defaultHeaders = new http.HttpHeaders();
4224
4319
  this.configuration = new Configuration();
4225
4320
  if (basePath) {
@@ -4408,7 +4503,7 @@
4408
4503
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4409
4504
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4410
4505
  this.httpClient = httpClient;
4411
- this.basePath = 'https://apiv2stage6.atomex.net';
4506
+ this.basePath = 'https://apiv2stage3.atomex.net';
4412
4507
  this.defaultHeaders = new http.HttpHeaders();
4413
4508
  this.configuration = new Configuration();
4414
4509
  if (basePath) {
@@ -4484,7 +4579,7 @@
4484
4579
  var CreativeTemplatesControllerService = /** @class */ (function () {
4485
4580
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4486
4581
  this.httpClient = httpClient;
4487
- this.basePath = 'https://apiv2stage6.atomex.net';
4582
+ this.basePath = 'https://apiv2stage3.atomex.net';
4488
4583
  this.defaultHeaders = new http.HttpHeaders();
4489
4584
  this.configuration = new Configuration();
4490
4585
  if (basePath) {
@@ -4651,7 +4746,7 @@
4651
4746
  var DashboardControllerService = /** @class */ (function () {
4652
4747
  function DashboardControllerService(httpClient, basePath, configuration) {
4653
4748
  this.httpClient = httpClient;
4654
- this.basePath = 'https://apiv2stage6.atomex.net';
4749
+ this.basePath = 'https://apiv2stage3.atomex.net';
4655
4750
  this.defaultHeaders = new http.HttpHeaders();
4656
4751
  this.configuration = new Configuration();
4657
4752
  if (basePath) {
@@ -5296,7 +5391,7 @@
5296
5391
  var NotificationsControllerService = /** @class */ (function () {
5297
5392
  function NotificationsControllerService(httpClient, basePath, configuration) {
5298
5393
  this.httpClient = httpClient;
5299
- this.basePath = 'https://apiv2stage6.atomex.net';
5394
+ this.basePath = 'https://apiv2stage3.atomex.net';
5300
5395
  this.defaultHeaders = new http.HttpHeaders();
5301
5396
  this.configuration = new Configuration();
5302
5397
  if (basePath) {
@@ -5483,7 +5578,7 @@
5483
5578
  var PixelControllerService = /** @class */ (function () {
5484
5579
  function PixelControllerService(httpClient, basePath, configuration) {
5485
5580
  this.httpClient = httpClient;
5486
- this.basePath = 'https://apiv2stage6.atomex.net';
5581
+ this.basePath = 'https://apiv2stage3.atomex.net';
5487
5582
  this.defaultHeaders = new http.HttpHeaders();
5488
5583
  this.configuration = new Configuration();
5489
5584
  if (basePath) {
@@ -5800,7 +5895,7 @@
5800
5895
  var ReportingControllerService = /** @class */ (function () {
5801
5896
  function ReportingControllerService(httpClient, basePath, configuration) {
5802
5897
  this.httpClient = httpClient;
5803
- this.basePath = 'https://apiv2stage6.atomex.net';
5898
+ this.basePath = 'https://apiv2stage3.atomex.net';
5804
5899
  this.defaultHeaders = new http.HttpHeaders();
5805
5900
  this.configuration = new Configuration();
5806
5901
  if (basePath) {
@@ -5972,7 +6067,7 @@
5972
6067
  var SliceXControllerService = /** @class */ (function () {
5973
6068
  function SliceXControllerService(httpClient, basePath, configuration) {
5974
6069
  this.httpClient = httpClient;
5975
- this.basePath = 'https://apiv2stage6.atomex.net';
6070
+ this.basePath = 'https://apiv2stage3.atomex.net';
5976
6071
  this.defaultHeaders = new http.HttpHeaders();
5977
6072
  this.configuration = new Configuration();
5978
6073
  if (basePath) {
@@ -6228,7 +6323,7 @@
6228
6323
  var StrategyControllerService = /** @class */ (function () {
6229
6324
  function StrategyControllerService(httpClient, basePath, configuration) {
6230
6325
  this.httpClient = httpClient;
6231
- this.basePath = 'https://apiv2stage6.atomex.net';
6326
+ this.basePath = 'https://apiv2stage3.atomex.net';
6232
6327
  this.defaultHeaders = new http.HttpHeaders();
6233
6328
  this.configuration = new Configuration();
6234
6329
  if (basePath) {
@@ -6877,7 +6972,7 @@
6877
6972
  var UILoggerControllerService = /** @class */ (function () {
6878
6973
  function UILoggerControllerService(httpClient, basePath, configuration) {
6879
6974
  this.httpClient = httpClient;
6880
- this.basePath = 'https://apiv2stage6.atomex.net';
6975
+ this.basePath = 'https://apiv2stage3.atomex.net';
6881
6976
  this.defaultHeaders = new http.HttpHeaders();
6882
6977
  this.configuration = new Configuration();
6883
6978
  if (basePath) {
@@ -6967,7 +7062,7 @@
6967
7062
  var UserPreferenceControllerService = /** @class */ (function () {
6968
7063
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
6969
7064
  this.httpClient = httpClient;
6970
- this.basePath = 'https://apiv2stage6.atomex.net';
7065
+ this.basePath = 'https://apiv2stage3.atomex.net';
6971
7066
  this.defaultHeaders = new http.HttpHeaders();
6972
7067
  this.configuration = new Configuration();
6973
7068
  if (basePath) {
@@ -7612,6 +7707,36 @@
7612
7707
  };
7613
7708
  })(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
7614
7709
 
7710
+ /**
7711
+ * Api Documentation
7712
+ * Api Documentation
7713
+ *
7714
+ * OpenAPI spec version: 1.0
7715
+ *
7716
+ *
7717
+ * NOTE: This class is auto generated by the swagger code generator program.
7718
+ * https://github.com/swagger-api/swagger-codegen.git
7719
+ * Do not edit the class manually.
7720
+ */
7721
+ exports.DynamicVideoConfigDTO = void 0;
7722
+ (function (DynamicVideoConfigDTO) {
7723
+ DynamicVideoConfigDTO.ConfigKeyEnum = {
7724
+ TEMPLATEID: 'TEMPLATE_ID',
7725
+ LOGO: 'LOGO',
7726
+ SALEPRICEPREFIX: 'SALE_PRICE_PREFIX',
7727
+ ORIGINALPRICEPREFIX: 'ORIGINAL_PRICE_PREFIX',
7728
+ CTA: 'CTA',
7729
+ TITLELENGTH: 'TITLE_LENGTH',
7730
+ TITLEROWS: 'TITLE_ROWS',
7731
+ DISCOUNTSUFFIX: 'DISCOUNT_SUFFIX',
7732
+ FONT: 'FONT',
7733
+ ROUNDPRICE: 'ROUND_PRICE',
7734
+ MUSICFILE: 'MUSIC_FILE',
7735
+ VIDEOFILE: 'VIDEO_FILE',
7736
+ USERESIZER: 'USE_RESIZER'
7737
+ };
7738
+ })(exports.DynamicVideoConfigDTO || (exports.DynamicVideoConfigDTO = {}));
7739
+
7615
7740
  /**
7616
7741
  * Api Documentation
7617
7742
  * Api Documentation