@revxui/api-clients-ts 1.1.486 → 1.1.488

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 (82) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/appSettingsController.service.d.ts +3 -3
  4. package/api/creativeSetsController.service.d.ts +3 -3
  5. package/api/creativeSetsV2Controller.service.d.ts +97 -0
  6. package/api/pixelController.service.d.ts +3 -3
  7. package/esm2020/api/adminController.service.mjs +2 -2
  8. package/esm2020/api/advertiserController.service.mjs +2 -2
  9. package/esm2020/api/api.mjs +4 -2
  10. package/esm2020/api/appSettingsController.service.mjs +2 -2
  11. package/esm2020/api/appsFlyerController.service.mjs +2 -2
  12. package/esm2020/api/audienceController.service.mjs +2 -2
  13. package/esm2020/api/auditController.service.mjs +2 -2
  14. package/esm2020/api/bidFunnelController.service.mjs +2 -2
  15. package/esm2020/api/bulkStrategyController.service.mjs +2 -2
  16. package/esm2020/api/cSSThemeController_.service.mjs +2 -2
  17. package/esm2020/api/campaignController.service.mjs +2 -2
  18. package/esm2020/api/catalogController.service.mjs +2 -2
  19. package/esm2020/api/clickDestinationController.service.mjs +2 -2
  20. package/esm2020/api/creativeController.service.mjs +2 -2
  21. package/esm2020/api/creativeSetsController.service.mjs +5 -5
  22. package/esm2020/api/creativeSetsV2Controller.service.mjs +251 -0
  23. package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
  24. package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
  25. package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
  26. package/esm2020/api/customerReportingController.service.mjs +2 -2
  27. package/esm2020/api/dCOVideoSettingsController.service.mjs +2 -2
  28. package/esm2020/api/dashboardController.service.mjs +2 -2
  29. package/esm2020/api/experimentsController.service.mjs +2 -2
  30. package/esm2020/api/notificationsController.service.mjs +2 -2
  31. package/esm2020/api/pixelController.service.mjs +5 -5
  32. package/esm2020/api/reportController.service.mjs +2 -2
  33. package/esm2020/api/reportingController.service.mjs +2 -2
  34. package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
  35. package/esm2020/api/safeguardController.service.mjs +2 -2
  36. package/esm2020/api/sliceXController.service.mjs +2 -2
  37. package/esm2020/api/strategyController.service.mjs +2 -2
  38. package/esm2020/api/strategyTemplateController.service.mjs +2 -2
  39. package/esm2020/api/uILoggerController.service.mjs +2 -2
  40. package/esm2020/api/userPreferenceController.service.mjs +2 -2
  41. package/esm2020/api.module.mjs +4 -1
  42. package/esm2020/model/advertiserAppSettingsDTO.mjs +3 -2
  43. package/esm2020/model/advertiserSettings.mjs +9 -2
  44. package/esm2020/model/apiListResponseCreativeSizeMappingDTO.mjs +2 -0
  45. package/esm2020/model/appSettingsDTO.mjs +3 -2
  46. package/esm2020/model/assetSelectionDTO.mjs +8 -0
  47. package/esm2020/model/creativeAssetOptimizationRequest.mjs +23 -0
  48. package/esm2020/model/creativeAssetUploadResponse.mjs +20 -0
  49. package/esm2020/model/creativeDTO.mjs +6 -1
  50. package/esm2020/model/creativeEntity.mjs +6 -1
  51. package/esm2020/model/creativeSetDetails.mjs +1 -1
  52. package/esm2020/model/creativeSetPerformanceList.mjs +1 -1
  53. package/esm2020/model/creativeSizeMappingDTO.mjs +38 -0
  54. package/esm2020/model/models.mjs +9 -1
  55. package/esm2020/model/optimizationJobItemStatusDTO.mjs +21 -0
  56. package/esm2020/model/optimizationJobStatusResponse.mjs +11 -0
  57. package/esm2020/model/selectedTargetDTO.mjs +24 -0
  58. package/esm2020/model/strategyDTO.mjs +1 -1
  59. package/esm2020/model/videoAttributes.mjs +6 -1
  60. package/fesm2015/revxui-api-clients-ts.mjs +460 -42
  61. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  62. package/fesm2020/revxui-api-clients-ts.mjs +458 -42
  63. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  64. package/model/advertiserAppSettingsDTO.d.ts +2 -1
  65. package/model/advertiserSettings.d.ts +9 -0
  66. package/model/apiListResponseCreativeSizeMappingDTO.d.ts +16 -0
  67. package/model/appSettingsDTO.d.ts +2 -1
  68. package/model/assetSelectionDTO.d.ts +25 -0
  69. package/model/creativeAssetOptimizationRequest.d.ts +41 -0
  70. package/model/creativeAssetUploadResponse.d.ts +26 -0
  71. package/model/creativeDTO.d.ts +7 -0
  72. package/model/creativeEntity.d.ts +7 -0
  73. package/model/creativeSetDetails.d.ts +1 -0
  74. package/model/creativeSetPerformanceList.d.ts +1 -0
  75. package/model/creativeSizeMappingDTO.d.ts +47 -0
  76. package/model/models.d.ts +8 -0
  77. package/model/optimizationJobItemStatusDTO.d.ts +27 -0
  78. package/model/optimizationJobStatusResponse.d.ts +32 -0
  79. package/model/selectedTargetDTO.d.ts +30 -0
  80. package/model/strategyDTO.d.ts +0 -1
  81. package/model/videoAttributes.d.ts +7 -0
  82. package/package.json +1 -1
@@ -85,7 +85,7 @@ class Configuration {
85
85
  class AdminControllerService {
86
86
  constructor(httpClient, basePath, configuration) {
87
87
  this.httpClient = httpClient;
88
- this.basePath = 'https://apiv2stage1.atomex.net';
88
+ this.basePath = 'https://apiv2stage7.atomex.net';
89
89
  this.defaultHeaders = new HttpHeaders();
90
90
  this.configuration = new Configuration();
91
91
  if (basePath) {
@@ -281,7 +281,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
281
281
  class AdvertiserControllerService {
282
282
  constructor(httpClient, basePath, configuration) {
283
283
  this.httpClient = httpClient;
284
- this.basePath = 'https://apiv2stage1.atomex.net';
284
+ this.basePath = 'https://apiv2stage7.atomex.net';
285
285
  this.defaultHeaders = new HttpHeaders();
286
286
  this.configuration = new Configuration();
287
287
  if (basePath) {
@@ -858,7 +858,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
858
858
  class AppSettingsControllerService {
859
859
  constructor(httpClient, basePath, configuration) {
860
860
  this.httpClient = httpClient;
861
- this.basePath = 'https://apiv2stage1.atomex.net';
861
+ this.basePath = 'https://apiv2stage7.atomex.net';
862
862
  this.defaultHeaders = new HttpHeaders();
863
863
  this.configuration = new Configuration();
864
864
  if (basePath) {
@@ -1105,7 +1105,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1105
1105
  class AppsFlyerControllerService {
1106
1106
  constructor(httpClient, basePath, configuration) {
1107
1107
  this.httpClient = httpClient;
1108
- this.basePath = 'https://apiv2stage1.atomex.net';
1108
+ this.basePath = 'https://apiv2stage7.atomex.net';
1109
1109
  this.defaultHeaders = new HttpHeaders();
1110
1110
  this.configuration = new Configuration();
1111
1111
  if (basePath) {
@@ -1193,7 +1193,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1193
1193
  class AudienceControllerService {
1194
1194
  constructor(httpClient, basePath, configuration) {
1195
1195
  this.httpClient = httpClient;
1196
- this.basePath = 'https://apiv2stage1.atomex.net';
1196
+ this.basePath = 'https://apiv2stage7.atomex.net';
1197
1197
  this.defaultHeaders = new HttpHeaders();
1198
1198
  this.configuration = new Configuration();
1199
1199
  if (basePath) {
@@ -2071,7 +2071,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2071
2071
  class AuditControllerService {
2072
2072
  constructor(httpClient, basePath, configuration) {
2073
2073
  this.httpClient = httpClient;
2074
- this.basePath = 'https://apiv2stage1.atomex.net';
2074
+ this.basePath = 'https://apiv2stage7.atomex.net';
2075
2075
  this.defaultHeaders = new HttpHeaders();
2076
2076
  this.configuration = new Configuration();
2077
2077
  if (basePath) {
@@ -2273,7 +2273,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2273
2273
  class BidFunnelControllerService {
2274
2274
  constructor(httpClient, basePath, configuration) {
2275
2275
  this.httpClient = httpClient;
2276
- this.basePath = 'https://apiv2stage1.atomex.net';
2276
+ this.basePath = 'https://apiv2stage7.atomex.net';
2277
2277
  this.defaultHeaders = new HttpHeaders();
2278
2278
  this.configuration = new Configuration();
2279
2279
  if (basePath) {
@@ -2424,7 +2424,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2424
2424
  class BulkStrategyControllerService {
2425
2425
  constructor(httpClient, basePath, configuration) {
2426
2426
  this.httpClient = httpClient;
2427
- this.basePath = 'https://apiv2stage1.atomex.net';
2427
+ this.basePath = 'https://apiv2stage7.atomex.net';
2428
2428
  this.defaultHeaders = new HttpHeaders();
2429
2429
  this.configuration = new Configuration();
2430
2430
  if (basePath) {
@@ -2651,7 +2651,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2651
2651
  class CSSThemeController_Service {
2652
2652
  constructor(httpClient, basePath, configuration) {
2653
2653
  this.httpClient = httpClient;
2654
- this.basePath = 'https://apiv2stage1.atomex.net';
2654
+ this.basePath = 'https://apiv2stage7.atomex.net';
2655
2655
  this.defaultHeaders = new HttpHeaders();
2656
2656
  this.configuration = new Configuration();
2657
2657
  if (basePath) {
@@ -2762,7 +2762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2762
2762
  class CampaignControllerService {
2763
2763
  constructor(httpClient, basePath, configuration) {
2764
2764
  this.httpClient = httpClient;
2765
- this.basePath = 'https://apiv2stage1.atomex.net';
2765
+ this.basePath = 'https://apiv2stage7.atomex.net';
2766
2766
  this.defaultHeaders = new HttpHeaders();
2767
2767
  this.configuration = new Configuration();
2768
2768
  if (basePath) {
@@ -3205,7 +3205,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3205
3205
  class CatalogControllerService {
3206
3206
  constructor(httpClient, basePath, configuration) {
3207
3207
  this.httpClient = httpClient;
3208
- this.basePath = 'https://apiv2stage1.atomex.net';
3208
+ this.basePath = 'https://apiv2stage7.atomex.net';
3209
3209
  this.defaultHeaders = new HttpHeaders();
3210
3210
  this.configuration = new Configuration();
3211
3211
  if (basePath) {
@@ -3450,7 +3450,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3450
3450
  class ClickDestinationControllerService {
3451
3451
  constructor(httpClient, basePath, configuration) {
3452
3452
  this.httpClient = httpClient;
3453
- this.basePath = 'https://apiv2stage1.atomex.net';
3453
+ this.basePath = 'https://apiv2stage7.atomex.net';
3454
3454
  this.defaultHeaders = new HttpHeaders();
3455
3455
  this.configuration = new Configuration();
3456
3456
  if (basePath) {
@@ -3684,7 +3684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3684
3684
  class CreativeControllerService {
3685
3685
  constructor(httpClient, basePath, configuration) {
3686
3686
  this.httpClient = httpClient;
3687
- this.basePath = 'https://apiv2stage1.atomex.net';
3687
+ this.basePath = 'https://apiv2stage7.atomex.net';
3688
3688
  this.defaultHeaders = new HttpHeaders();
3689
3689
  this.configuration = new Configuration();
3690
3690
  if (basePath) {
@@ -4289,7 +4289,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4289
4289
  class CreativeSetsControllerService {
4290
4290
  constructor(httpClient, basePath, configuration) {
4291
4291
  this.httpClient = httpClient;
4292
- this.basePath = 'https://apiv2stage1.atomex.net';
4292
+ this.basePath = 'https://apiv2stage7.atomex.net';
4293
4293
  this.defaultHeaders = new HttpHeaders();
4294
4294
  this.configuration = new Configuration();
4295
4295
  if (basePath) {
@@ -4869,12 +4869,12 @@ class CreativeSetsControllerService {
4869
4869
  reportProgress: reportProgress
4870
4870
  });
4871
4871
  }
4872
- updateUsingPOST(creativeSetRequest, id, reqId, token, observe = 'body', reportProgress = false) {
4872
+ updateUsingPOST1(creativeSetRequest, id, reqId, token, observe = 'body', reportProgress = false) {
4873
4873
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
4874
- throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateUsingPOST.');
4874
+ throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateUsingPOST1.');
4875
4875
  }
4876
4876
  if (id === null || id === undefined) {
4877
- throw new Error('Required parameter id was null or undefined when calling updateUsingPOST.');
4877
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST1.');
4878
4878
  }
4879
4879
  let headers = this.defaultHeaders;
4880
4880
  if (reqId !== undefined && reqId !== null) {
@@ -4922,6 +4922,251 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4922
4922
  }] }];
4923
4923
  } });
4924
4924
 
4925
+ /**
4926
+ * Api Documentation
4927
+ * Api Documentation
4928
+ *
4929
+ * OpenAPI spec version: 1.0
4930
+ *
4931
+ *
4932
+ * NOTE: This class is auto generated by the swagger code generator program.
4933
+ * https://github.com/swagger-api/swagger-codegen.git
4934
+ * Do not edit the class manually.
4935
+ */
4936
+ /* tslint:disable:no-unused-variable member-ordering */
4937
+ class CreativeSetsV2ControllerService {
4938
+ constructor(httpClient, basePath, configuration) {
4939
+ this.httpClient = httpClient;
4940
+ this.basePath = 'https://apiv2stage7.atomex.net';
4941
+ this.defaultHeaders = new HttpHeaders();
4942
+ this.configuration = new Configuration();
4943
+ if (basePath) {
4944
+ this.basePath = basePath;
4945
+ }
4946
+ if (configuration) {
4947
+ this.configuration = configuration;
4948
+ this.basePath = basePath || configuration.basePath || this.basePath;
4949
+ }
4950
+ }
4951
+ /**
4952
+ * @param consumes string[] mime-types
4953
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
4954
+ */
4955
+ canConsumeForm(consumes) {
4956
+ const form = 'multipart/form-data';
4957
+ for (const consume of consumes) {
4958
+ if (form === consume) {
4959
+ return true;
4960
+ }
4961
+ }
4962
+ return false;
4963
+ }
4964
+ getJobStatusUsingGET(jobId, reqId, token, observe = 'body', reportProgress = false) {
4965
+ if (jobId === null || jobId === undefined) {
4966
+ throw new Error('Required parameter jobId was null or undefined when calling getJobStatusUsingGET.');
4967
+ }
4968
+ let headers = this.defaultHeaders;
4969
+ if (reqId !== undefined && reqId !== null) {
4970
+ headers = headers.set('reqId', String(reqId));
4971
+ }
4972
+ if (token !== undefined && token !== null) {
4973
+ headers = headers.set('token', String(token));
4974
+ }
4975
+ // to determine the Accept header
4976
+ let httpHeaderAccepts = [
4977
+ 'application/json'
4978
+ ];
4979
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4980
+ if (httpHeaderAcceptSelected != undefined) {
4981
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
4982
+ }
4983
+ // to determine the Content-Type header
4984
+ const consumes = [];
4985
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/jobs/${encodeURIComponent(String(jobId))}`, {
4986
+ withCredentials: this.configuration.withCredentials,
4987
+ headers: headers,
4988
+ observe: observe,
4989
+ reportProgress: reportProgress
4990
+ });
4991
+ }
4992
+ getSizeMappingConfigUsingGET(creativeType, reqId, token, observe = 'body', reportProgress = false) {
4993
+ if (creativeType === null || creativeType === undefined) {
4994
+ throw new Error('Required parameter creativeType was null or undefined when calling getSizeMappingConfigUsingGET.');
4995
+ }
4996
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
4997
+ if (creativeType !== undefined && creativeType !== null) {
4998
+ queryParameters = queryParameters.set('creativeType', creativeType);
4999
+ }
5000
+ let headers = this.defaultHeaders;
5001
+ if (reqId !== undefined && reqId !== null) {
5002
+ headers = headers.set('reqId', String(reqId));
5003
+ }
5004
+ if (token !== undefined && token !== null) {
5005
+ headers = headers.set('token', String(token));
5006
+ }
5007
+ // to determine the Accept header
5008
+ let httpHeaderAccepts = [
5009
+ 'application/json'
5010
+ ];
5011
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5012
+ if (httpHeaderAcceptSelected != undefined) {
5013
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5014
+ }
5015
+ // to determine the Content-Type header
5016
+ const consumes = [];
5017
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/size-mapping-config`, {
5018
+ params: queryParameters,
5019
+ withCredentials: this.configuration.withCredentials,
5020
+ headers: headers,
5021
+ observe: observe,
5022
+ reportProgress: reportProgress
5023
+ });
5024
+ }
5025
+ saveUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
5026
+ if (request === null || request === undefined) {
5027
+ throw new Error('Required parameter request was null or undefined when calling saveUsingPOST.');
5028
+ }
5029
+ let headers = this.defaultHeaders;
5030
+ if (reqId !== undefined && reqId !== null) {
5031
+ headers = headers.set('reqId', String(reqId));
5032
+ }
5033
+ if (token !== undefined && token !== null) {
5034
+ headers = headers.set('token', String(token));
5035
+ }
5036
+ // to determine the Accept header
5037
+ let httpHeaderAccepts = [
5038
+ 'application/json'
5039
+ ];
5040
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5041
+ if (httpHeaderAcceptSelected != undefined) {
5042
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5043
+ }
5044
+ // to determine the Content-Type header
5045
+ const consumes = [
5046
+ 'application/json'
5047
+ ];
5048
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5049
+ if (httpContentTypeSelected != undefined) {
5050
+ headers = headers.set('Content-Type', httpContentTypeSelected);
5051
+ }
5052
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save`, request, {
5053
+ withCredentials: this.configuration.withCredentials,
5054
+ headers: headers,
5055
+ observe: observe,
5056
+ reportProgress: reportProgress
5057
+ });
5058
+ }
5059
+ updateUsingPOST(id, request, reqId, token, observe = 'body', reportProgress = false) {
5060
+ if (id === null || id === undefined) {
5061
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST.');
5062
+ }
5063
+ if (request === null || request === undefined) {
5064
+ throw new Error('Required parameter request was null or undefined when calling updateUsingPOST.');
5065
+ }
5066
+ let headers = this.defaultHeaders;
5067
+ if (reqId !== undefined && reqId !== null) {
5068
+ headers = headers.set('reqId', String(reqId));
5069
+ }
5070
+ if (token !== undefined && token !== null) {
5071
+ headers = headers.set('token', String(token));
5072
+ }
5073
+ // to determine the Accept header
5074
+ let httpHeaderAccepts = [
5075
+ 'application/json'
5076
+ ];
5077
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5078
+ if (httpHeaderAcceptSelected != undefined) {
5079
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5080
+ }
5081
+ // to determine the Content-Type header
5082
+ const consumes = [
5083
+ 'application/json'
5084
+ ];
5085
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5086
+ if (httpContentTypeSelected != undefined) {
5087
+ headers = headers.set('Content-Type', httpContentTypeSelected);
5088
+ }
5089
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save/${encodeURIComponent(String(id))}`, request, {
5090
+ withCredentials: this.configuration.withCredentials,
5091
+ headers: headers,
5092
+ observe: observe,
5093
+ reportProgress: reportProgress
5094
+ });
5095
+ }
5096
+ uploadUsingPOST(advertiserId, creativeSetType, file, reqId, token, observe = 'body', reportProgress = false) {
5097
+ if (advertiserId === null || advertiserId === undefined) {
5098
+ throw new Error('Required parameter advertiserId was null or undefined when calling uploadUsingPOST.');
5099
+ }
5100
+ if (creativeSetType === null || creativeSetType === undefined) {
5101
+ throw new Error('Required parameter creativeSetType was null or undefined when calling uploadUsingPOST.');
5102
+ }
5103
+ if (file === null || file === undefined) {
5104
+ throw new Error('Required parameter file was null or undefined when calling uploadUsingPOST.');
5105
+ }
5106
+ let headers = this.defaultHeaders;
5107
+ if (reqId !== undefined && reqId !== null) {
5108
+ headers = headers.set('reqId', String(reqId));
5109
+ }
5110
+ if (token !== undefined && token !== null) {
5111
+ headers = headers.set('token', String(token));
5112
+ }
5113
+ // to determine the Accept header
5114
+ let httpHeaderAccepts = [
5115
+ 'application/json'
5116
+ ];
5117
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5118
+ if (httpHeaderAcceptSelected != undefined) {
5119
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5120
+ }
5121
+ // to determine the Content-Type header
5122
+ const consumes = [
5123
+ 'multipart/form-data'
5124
+ ];
5125
+ const canConsumeForm = this.canConsumeForm(consumes);
5126
+ let formParams;
5127
+ let useForm = false;
5128
+ let convertFormParamsToString = false;
5129
+ // use FormData to transmit files using content-type "multipart/form-data"
5130
+ // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
5131
+ useForm = canConsumeForm;
5132
+ if (useForm) {
5133
+ formParams = new FormData();
5134
+ }
5135
+ else {
5136
+ formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
5137
+ }
5138
+ if (advertiserId !== undefined) {
5139
+ formParams = formParams.append('advertiserId', advertiserId) || formParams;
5140
+ }
5141
+ if (creativeSetType !== undefined) {
5142
+ formParams = formParams.append('creativeSetType', creativeSetType) || formParams;
5143
+ }
5144
+ if (file !== undefined) {
5145
+ formParams = formParams.append('file', file) || formParams;
5146
+ }
5147
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/upload`, convertFormParamsToString ? formParams.toString() : formParams, {
5148
+ withCredentials: this.configuration.withCredentials,
5149
+ headers: headers,
5150
+ observe: observe,
5151
+ reportProgress: reportProgress
5152
+ });
5153
+ }
5154
+ }
5155
+ CreativeSetsV2ControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeSetsV2ControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
5156
+ CreativeSetsV2ControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeSetsV2ControllerService });
5157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeSetsV2ControllerService, decorators: [{
5158
+ type: Injectable
5159
+ }], ctorParameters: function () {
5160
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5161
+ type: Optional
5162
+ }, {
5163
+ type: Inject,
5164
+ args: [BASE_PATH]
5165
+ }] }, { type: Configuration, decorators: [{
5166
+ type: Optional
5167
+ }] }];
5168
+ } });
5169
+
4925
5170
  /**
4926
5171
  * Api Documentation
4927
5172
  * Api Documentation
@@ -4937,7 +5182,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4937
5182
  class CreativeTemplateThemesControllerService {
4938
5183
  constructor(httpClient, basePath, configuration) {
4939
5184
  this.httpClient = httpClient;
4940
- this.basePath = 'https://apiv2stage1.atomex.net';
5185
+ this.basePath = 'https://apiv2stage7.atomex.net';
4941
5186
  this.defaultHeaders = new HttpHeaders();
4942
5187
  this.configuration = new Configuration();
4943
5188
  if (basePath) {
@@ -5124,7 +5369,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5124
5369
  class CreativeTemplateVariablesControllerService {
5125
5370
  constructor(httpClient, basePath, configuration) {
5126
5371
  this.httpClient = httpClient;
5127
- this.basePath = 'https://apiv2stage1.atomex.net';
5372
+ this.basePath = 'https://apiv2stage7.atomex.net';
5128
5373
  this.defaultHeaders = new HttpHeaders();
5129
5374
  this.configuration = new Configuration();
5130
5375
  if (basePath) {
@@ -5204,7 +5449,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5204
5449
  class CreativeTemplatesControllerService {
5205
5450
  constructor(httpClient, basePath, configuration) {
5206
5451
  this.httpClient = httpClient;
5207
- this.basePath = 'https://apiv2stage1.atomex.net';
5452
+ this.basePath = 'https://apiv2stage7.atomex.net';
5208
5453
  this.defaultHeaders = new HttpHeaders();
5209
5454
  this.configuration = new Configuration();
5210
5455
  if (basePath) {
@@ -5371,7 +5616,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5371
5616
  class CustomerReportingControllerService {
5372
5617
  constructor(httpClient, basePath, configuration) {
5373
5618
  this.httpClient = httpClient;
5374
- this.basePath = 'https://apiv2stage1.atomex.net';
5619
+ this.basePath = 'https://apiv2stage7.atomex.net';
5375
5620
  this.defaultHeaders = new HttpHeaders();
5376
5621
  this.configuration = new Configuration();
5377
5622
  if (basePath) {
@@ -5536,7 +5781,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5536
5781
  class DCOVideoSettingsControllerService {
5537
5782
  constructor(httpClient, basePath, configuration) {
5538
5783
  this.httpClient = httpClient;
5539
- this.basePath = 'https://apiv2stage1.atomex.net';
5784
+ this.basePath = 'https://apiv2stage7.atomex.net';
5540
5785
  this.defaultHeaders = new HttpHeaders();
5541
5786
  this.configuration = new Configuration();
5542
5787
  if (basePath) {
@@ -6104,7 +6349,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6104
6349
  class DashboardControllerService {
6105
6350
  constructor(httpClient, basePath, configuration) {
6106
6351
  this.httpClient = httpClient;
6107
- this.basePath = 'https://apiv2stage1.atomex.net';
6352
+ this.basePath = 'https://apiv2stage7.atomex.net';
6108
6353
  this.defaultHeaders = new HttpHeaders();
6109
6354
  this.configuration = new Configuration();
6110
6355
  if (basePath) {
@@ -6764,7 +7009,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6764
7009
  class ExperimentsControllerService {
6765
7010
  constructor(httpClient, basePath, configuration) {
6766
7011
  this.httpClient = httpClient;
6767
- this.basePath = 'https://apiv2stage1.atomex.net';
7012
+ this.basePath = 'https://apiv2stage7.atomex.net';
6768
7013
  this.defaultHeaders = new HttpHeaders();
6769
7014
  this.configuration = new Configuration();
6770
7015
  if (basePath) {
@@ -7493,7 +7738,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7493
7738
  class NotificationsControllerService {
7494
7739
  constructor(httpClient, basePath, configuration) {
7495
7740
  this.httpClient = httpClient;
7496
- this.basePath = 'https://apiv2stage1.atomex.net';
7741
+ this.basePath = 'https://apiv2stage7.atomex.net';
7497
7742
  this.defaultHeaders = new HttpHeaders();
7498
7743
  this.configuration = new Configuration();
7499
7744
  if (basePath) {
@@ -7708,7 +7953,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7708
7953
  class PixelControllerService {
7709
7954
  constructor(httpClient, basePath, configuration) {
7710
7955
  this.httpClient = httpClient;
7711
- this.basePath = 'https://apiv2stage1.atomex.net';
7956
+ this.basePath = 'https://apiv2stage7.atomex.net';
7712
7957
  this.defaultHeaders = new HttpHeaders();
7713
7958
  this.configuration = new Configuration();
7714
7959
  if (basePath) {
@@ -7944,12 +8189,12 @@ class PixelControllerService {
7944
8189
  reportProgress: reportProgress
7945
8190
  });
7946
8191
  }
7947
- updateUsingPOST1(id, pixel, reqId, token, observe = 'body', reportProgress = false) {
8192
+ updateUsingPOST2(id, pixel, reqId, token, observe = 'body', reportProgress = false) {
7948
8193
  if (id === null || id === undefined) {
7949
- throw new Error('Required parameter id was null or undefined when calling updateUsingPOST1.');
8194
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST2.');
7950
8195
  }
7951
8196
  if (pixel === null || pixel === undefined) {
7952
- throw new Error('Required parameter pixel was null or undefined when calling updateUsingPOST1.');
8197
+ throw new Error('Required parameter pixel was null or undefined when calling updateUsingPOST2.');
7953
8198
  }
7954
8199
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
7955
8200
  if (id !== undefined && id !== null) {
@@ -8017,7 +8262,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8017
8262
  class ReportControllerService {
8018
8263
  constructor(httpClient, basePath, configuration) {
8019
8264
  this.httpClient = httpClient;
8020
- this.basePath = 'https://apiv2stage1.atomex.net';
8265
+ this.basePath = 'https://apiv2stage7.atomex.net';
8021
8266
  this.defaultHeaders = new HttpHeaders();
8022
8267
  this.configuration = new Configuration();
8023
8268
  if (basePath) {
@@ -8156,7 +8401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8156
8401
  class ReportingControllerService {
8157
8402
  constructor(httpClient, basePath, configuration) {
8158
8403
  this.httpClient = httpClient;
8159
- this.basePath = 'https://apiv2stage1.atomex.net';
8404
+ this.basePath = 'https://apiv2stage7.atomex.net';
8160
8405
  this.defaultHeaders = new HttpHeaders();
8161
8406
  this.configuration = new Configuration();
8162
8407
  if (basePath) {
@@ -8328,7 +8573,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8328
8573
  class ReportingSchedulerControllerService {
8329
8574
  constructor(httpClient, basePath, configuration) {
8330
8575
  this.httpClient = httpClient;
8331
- this.basePath = 'https://apiv2stage1.atomex.net';
8576
+ this.basePath = 'https://apiv2stage7.atomex.net';
8332
8577
  this.defaultHeaders = new HttpHeaders();
8333
8578
  this.configuration = new Configuration();
8334
8579
  if (basePath) {
@@ -8645,7 +8890,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8645
8890
  class SafeguardControllerService {
8646
8891
  constructor(httpClient, basePath, configuration) {
8647
8892
  this.httpClient = httpClient;
8648
- this.basePath = 'https://apiv2stage1.atomex.net';
8893
+ this.basePath = 'https://apiv2stage7.atomex.net';
8649
8894
  this.defaultHeaders = new HttpHeaders();
8650
8895
  this.configuration = new Configuration();
8651
8896
  if (basePath) {
@@ -9141,7 +9386,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9141
9386
  class SliceXControllerService {
9142
9387
  constructor(httpClient, basePath, configuration) {
9143
9388
  this.httpClient = httpClient;
9144
- this.basePath = 'https://apiv2stage1.atomex.net';
9389
+ this.basePath = 'https://apiv2stage7.atomex.net';
9145
9390
  this.defaultHeaders = new HttpHeaders();
9146
9391
  this.configuration = new Configuration();
9147
9392
  if (basePath) {
@@ -9547,7 +9792,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9547
9792
  class StrategyControllerService {
9548
9793
  constructor(httpClient, basePath, configuration) {
9549
9794
  this.httpClient = httpClient;
9550
- this.basePath = 'https://apiv2stage1.atomex.net';
9795
+ this.basePath = 'https://apiv2stage7.atomex.net';
9551
9796
  this.defaultHeaders = new HttpHeaders();
9552
9797
  this.configuration = new Configuration();
9553
9798
  if (basePath) {
@@ -10751,7 +10996,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10751
10996
  class StrategyTemplateControllerService {
10752
10997
  constructor(httpClient, basePath, configuration) {
10753
10998
  this.httpClient = httpClient;
10754
- this.basePath = 'https://apiv2stage1.atomex.net';
10999
+ this.basePath = 'https://apiv2stage7.atomex.net';
10755
11000
  this.defaultHeaders = new HttpHeaders();
10756
11001
  this.configuration = new Configuration();
10757
11002
  if (basePath) {
@@ -10875,7 +11120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10875
11120
  class UILoggerControllerService {
10876
11121
  constructor(httpClient, basePath, configuration) {
10877
11122
  this.httpClient = httpClient;
10878
- this.basePath = 'https://apiv2stage1.atomex.net';
11123
+ this.basePath = 'https://apiv2stage7.atomex.net';
10879
11124
  this.defaultHeaders = new HttpHeaders();
10880
11125
  this.configuration = new Configuration();
10881
11126
  if (basePath) {
@@ -10969,7 +11214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10969
11214
  class UserPreferenceControllerService {
10970
11215
  constructor(httpClient, basePath, configuration) {
10971
11216
  this.httpClient = httpClient;
10972
- this.basePath = 'https://apiv2stage1.atomex.net';
11217
+ this.basePath = 'https://apiv2stage7.atomex.net';
10973
11218
  this.defaultHeaders = new HttpHeaders();
10974
11219
  this.configuration = new Configuration();
10975
11220
  if (basePath) {
@@ -11130,7 +11375,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11130
11375
  }] }];
11131
11376
  } });
11132
11377
 
11133
- const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AppsFlyerControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
11378
+ const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AppsFlyerControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeSetsV2ControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
11134
11379
 
11135
11380
  var ABTestingDTO;
11136
11381
  (function (ABTestingDTO) {
@@ -11233,7 +11478,8 @@ var AdvertiserAppSettingsDTO;
11233
11478
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11234
11479
  CLICKSIGNING: 'CLICK_SIGNING',
11235
11480
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11236
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11481
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11482
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11237
11483
  };
11238
11484
  AdvertiserAppSettingsDTO.TypeEnum = {
11239
11485
  BOOLEAN: 'BOOLEAN',
@@ -11274,6 +11520,15 @@ var AdvertiserCohortResponse;
11274
11520
  };
11275
11521
  })(AdvertiserCohortResponse || (AdvertiserCohortResponse = {}));
11276
11522
 
11523
+ var AdvertiserSettings;
11524
+ (function (AdvertiserSettings) {
11525
+ AdvertiserSettings.CreativeBorderTypeEnum = {
11526
+ NONE: 'NONE',
11527
+ BLACK: 'BLACK',
11528
+ BLUR: 'BLUR'
11529
+ };
11530
+ })(AdvertiserSettings || (AdvertiserSettings = {}));
11531
+
11277
11532
  var AppSettingsDTO;
11278
11533
  (function (AppSettingsDTO) {
11279
11534
  AppSettingsDTO.SettingsKeyEnum = {
@@ -11284,7 +11539,8 @@ var AppSettingsDTO;
11284
11539
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11285
11540
  CLICKSIGNING: 'CLICK_SIGNING',
11286
11541
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11287
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11542
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11543
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11288
11544
  };
11289
11545
  AppSettingsDTO.SettingsTypeEnum = {
11290
11546
  BOOLEAN: 'BOOLEAN',
@@ -11314,6 +11570,14 @@ var AppSettingsPropertyDTO;
11314
11570
  };
11315
11571
  })(AppSettingsPropertyDTO || (AppSettingsPropertyDTO = {}));
11316
11572
 
11573
+ var AssetSelectionDTO;
11574
+ (function (AssetSelectionDTO) {
11575
+ AssetSelectionDTO.EndCardTypeEnum = {
11576
+ IMAGE: 'IMAGE',
11577
+ HTML: 'HTML'
11578
+ };
11579
+ })(AssetSelectionDTO || (AssetSelectionDTO = {}));
11580
+
11317
11581
  /**
11318
11582
  * Api Documentation
11319
11583
  * Api Documentation
@@ -11514,6 +11778,49 @@ var CohortCampaignStrategyDO;
11514
11778
  };
11515
11779
  })(CohortCampaignStrategyDO || (CohortCampaignStrategyDO = {}));
11516
11780
 
11781
+ var CreativeAssetOptimizationRequest;
11782
+ (function (CreativeAssetOptimizationRequest) {
11783
+ CreativeAssetOptimizationRequest.CreativeSetTypeEnum = {
11784
+ IMAGE: 'IMAGE',
11785
+ VIDEO: 'VIDEO',
11786
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
11787
+ ZIPPEDHTML: 'ZIPPED_HTML',
11788
+ NATIVEIMAGE: 'NATIVE_IMAGE',
11789
+ NATIVEVIDEO: 'NATIVE_VIDEO',
11790
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
11791
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
11792
+ DYNAMICHTML: 'DYNAMIC_HTML',
11793
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
11794
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
11795
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
11796
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
11797
+ NATIVEICON: 'NATIVE_ICON',
11798
+ ICON: 'ICON',
11799
+ CTVVIDEO: 'CTV_VIDEO',
11800
+ PLAYABLE: 'PLAYABLE'
11801
+ };
11802
+ })(CreativeAssetOptimizationRequest || (CreativeAssetOptimizationRequest = {}));
11803
+
11804
+ /**
11805
+ * Api Documentation
11806
+ * Api Documentation
11807
+ *
11808
+ * OpenAPI spec version: 1.0
11809
+ *
11810
+ *
11811
+ * NOTE: This class is auto generated by the swagger code generator program.
11812
+ * https://github.com/swagger-api/swagger-codegen.git
11813
+ * Do not edit the class manually.
11814
+ */
11815
+ var CreativeAssetUploadResponse;
11816
+ (function (CreativeAssetUploadResponse) {
11817
+ CreativeAssetUploadResponse.WarningCodeEnum = {
11818
+ INVALIDSIZE: 'INVALID_SIZE',
11819
+ ASPECTRATIOMISMATCH: 'ASPECT_RATIO_MISMATCH',
11820
+ LOWRESOLUTIONUPLOAD: 'LOW_RESOLUTION_UPLOAD'
11821
+ };
11822
+ })(CreativeAssetUploadResponse || (CreativeAssetUploadResponse = {}));
11823
+
11517
11824
  var CreativeCompactDTO;
11518
11825
  (function (CreativeCompactDTO) {
11519
11826
  CreativeCompactDTO.TypeEnum = {
@@ -11538,6 +11845,11 @@ var CreativeCompactDTO;
11538
11845
 
11539
11846
  var CreativeDTO;
11540
11847
  (function (CreativeDTO) {
11848
+ CreativeDTO.BorderTypeEnum = {
11849
+ NONE: 'NONE',
11850
+ BLACK: 'BLACK',
11851
+ BLUR: 'BLUR'
11852
+ };
11541
11853
  CreativeDTO.ContentTypeEnum = {
11542
11854
  ZIP: 'ZIP',
11543
11855
  JPG: 'JPG',
@@ -11606,6 +11918,11 @@ var CreativeDetails;
11606
11918
 
11607
11919
  var CreativeEntity;
11608
11920
  (function (CreativeEntity) {
11921
+ CreativeEntity.BorderTypeEnum = {
11922
+ NONE: 'NONE',
11923
+ BLACK: 'BLACK',
11924
+ BLUR: 'BLUR'
11925
+ };
11609
11926
  CreativeEntity.HybridAdTypeEnum = {
11610
11927
  STATIC: 'STATIC',
11611
11928
  DYNAMIC: 'DYNAMIC'
@@ -11847,6 +12164,44 @@ var CreativeSetResponse;
11847
12164
  };
11848
12165
  })(CreativeSetResponse || (CreativeSetResponse = {}));
11849
12166
 
12167
+ /**
12168
+ * Api Documentation
12169
+ * Api Documentation
12170
+ *
12171
+ * OpenAPI spec version: 1.0
12172
+ *
12173
+ *
12174
+ * NOTE: This class is auto generated by the swagger code generator program.
12175
+ * https://github.com/swagger-api/swagger-codegen.git
12176
+ * Do not edit the class manually.
12177
+ */
12178
+ var CreativeSizeMappingDTO;
12179
+ (function (CreativeSizeMappingDTO) {
12180
+ CreativeSizeMappingDTO.CreativeTypeEnum = {
12181
+ IMAGE: 'IMAGE',
12182
+ VIDEO: 'VIDEO',
12183
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12184
+ ZIPPEDHTML: 'ZIPPED_HTML',
12185
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12186
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12187
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12188
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12189
+ DYNAMICHTML: 'DYNAMIC_HTML',
12190
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12191
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12192
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12193
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12194
+ NATIVEICON: 'NATIVE_ICON',
12195
+ ICON: 'ICON',
12196
+ CTVVIDEO: 'CTV_VIDEO',
12197
+ PLAYABLE: 'PLAYABLE'
12198
+ };
12199
+ CreativeSizeMappingDTO.MappingTypeEnum = {
12200
+ EXACTFIT: 'EXACT_FIT',
12201
+ BORDER: 'BORDER'
12202
+ };
12203
+ })(CreativeSizeMappingDTO || (CreativeSizeMappingDTO = {}));
12204
+
11850
12205
  /**
11851
12206
  * Api Documentation
11852
12207
  * Api Documentation
@@ -12220,6 +12575,38 @@ var NotificationResponse;
12220
12575
  };
12221
12576
  })(NotificationResponse || (NotificationResponse = {}));
12222
12577
 
12578
+ /**
12579
+ * Api Documentation
12580
+ * Api Documentation
12581
+ *
12582
+ * OpenAPI spec version: 1.0
12583
+ *
12584
+ *
12585
+ * NOTE: This class is auto generated by the swagger code generator program.
12586
+ * https://github.com/swagger-api/swagger-codegen.git
12587
+ * Do not edit the class manually.
12588
+ */
12589
+ var OptimizationJobItemStatusDTO;
12590
+ (function (OptimizationJobItemStatusDTO) {
12591
+ OptimizationJobItemStatusDTO.StatusEnum = {
12592
+ PENDING: 'PENDING',
12593
+ PROCESSING: 'PROCESSING',
12594
+ COMPLETED: 'COMPLETED',
12595
+ FAILED: 'FAILED'
12596
+ };
12597
+ })(OptimizationJobItemStatusDTO || (OptimizationJobItemStatusDTO = {}));
12598
+
12599
+ var OptimizationJobStatusResponse;
12600
+ (function (OptimizationJobStatusResponse) {
12601
+ OptimizationJobStatusResponse.StatusEnum = {
12602
+ PENDING: 'PENDING',
12603
+ PROCESSING: 'PROCESSING',
12604
+ COMPLETED: 'COMPLETED',
12605
+ COMPLETEDWITHERRORS: 'COMPLETED_WITH_ERRORS',
12606
+ FAILED: 'FAILED'
12607
+ };
12608
+ })(OptimizationJobStatusResponse || (OptimizationJobStatusResponse = {}));
12609
+
12223
12610
  var OptimizationRuleAuditLogDTO;
12224
12611
  (function (OptimizationRuleAuditLogDTO) {
12225
12612
  OptimizationRuleAuditLogDTO.StateEnum = {
@@ -12560,6 +12947,30 @@ var SchedulerRequest;
12560
12947
  };
12561
12948
  })(SchedulerRequest || (SchedulerRequest = {}));
12562
12949
 
12950
+ /**
12951
+ * Api Documentation
12952
+ * Api Documentation
12953
+ *
12954
+ * OpenAPI spec version: 1.0
12955
+ *
12956
+ *
12957
+ * NOTE: This class is auto generated by the swagger code generator program.
12958
+ * https://github.com/swagger-api/swagger-codegen.git
12959
+ * Do not edit the class manually.
12960
+ */
12961
+ var SelectedTargetDTO;
12962
+ (function (SelectedTargetDTO) {
12963
+ SelectedTargetDTO.BorderTypeEnum = {
12964
+ NONE: 'NONE',
12965
+ BLACK: 'BLACK',
12966
+ BLUR: 'BLUR'
12967
+ };
12968
+ SelectedTargetDTO.MappingTypeEnum = {
12969
+ EXACTFIT: 'EXACT_FIT',
12970
+ BORDER: 'BORDER'
12971
+ };
12972
+ })(SelectedTargetDTO || (SelectedTargetDTO = {}));
12973
+
12563
12974
  var StrategyDTO;
12564
12975
  (function (StrategyDTO) {
12565
12976
  StrategyDTO.AuctionTypeTargetingEnum = {
@@ -12746,6 +13157,11 @@ var VastCreative;
12746
13157
  */
12747
13158
  var VideoAttributes;
12748
13159
  (function (VideoAttributes) {
13160
+ VideoAttributes.BorderTypeEnum = {
13161
+ NONE: 'NONE',
13162
+ BLACK: 'BLACK',
13163
+ BLUR: 'BLUR'
13164
+ };
12749
13165
  VideoAttributes.CompanionContentTypeEnum = {
12750
13166
  ZIP: 'ZIP',
12751
13167
  JPG: 'JPG',
@@ -12862,6 +13278,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
12862
13278
  ClickDestinationControllerService,
12863
13279
  CreativeControllerService,
12864
13280
  CreativeSetsControllerService,
13281
+ CreativeSetsV2ControllerService,
12865
13282
  CreativeTemplateThemesControllerService,
12866
13283
  CreativeTemplateVariablesControllerService,
12867
13284
  CreativeTemplatesControllerService,
@@ -12902,6 +13319,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12902
13319
  ClickDestinationControllerService,
12903
13320
  CreativeControllerService,
12904
13321
  CreativeSetsControllerService,
13322
+ CreativeSetsV2ControllerService,
12905
13323
  CreativeTemplateThemesControllerService,
12906
13324
  CreativeTemplateVariablesControllerService,
12907
13325
  CreativeTemplatesControllerService,
@@ -12936,5 +13354,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12936
13354
  * Generated bundle index. Do not edit.
12937
13355
  */
12938
13356
 
12939
- export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerControllerService, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, DcoAttributesDTO, DcoVideoAssetDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, EndCards, ExperimentsControllerService, ExperimentsEntity, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RecencyTargetingDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeguardBlockedItemDTO, SafeguardControllerService, SafeguardDetail, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SchedulerRequest, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
13357
+ export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, AdvertiserSettings, ApiModule, AppSettingsControllerService, AppSettingsDTO, AppSettingsPropertyDTO, AppsFlyerControllerService, AssetSelectionDTO, AuctionTypeEditField, AudienceBackfillQueryTemplateRequest, AudienceBackfillRequest, AudienceControllerService, AudienceDTO, AudienceESDTO, AudiencePerformanceDTO, AuditControllerService, BASE_PATH, BaseModelWithCreativeSetType, BidFunnelControllerService, BulkStrategyControllerService, COLLECTION_FORMATS, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestination, ClickDestinationControllerService, CohortCampaignStrategyDO, Configuration, CreativeAssetOptimizationRequest, CreativeAssetUploadResponse, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, CreativeSetsV2ControllerService, CreativeSizeMappingDTO, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, DcoAttributesDTO, DcoVideoAssetDTO, DeviceTargetModel, DuplicateCampaignStrategyRequestDTO, DuplicateCreativeSetResponse, DynamicVideoConfigDTO, EndCards, ExperimentsControllerService, ExperimentsEntity, FilterModel, GeoFenceDTO, GeoListRequest, IncrementalityTestDTO, IncrementalityTestDetails, JobResponse, JsonNode, LookAlikeAudienceConfigDTO, Macro, MetaRuleDto, NotificationResponse, NotificationsControllerService, OptimizationJobItemStatusDTO, OptimizationJobStatusResponse, OptimizationRuleAuditLogDTO, OptimizationRuleDTO, PixelControllerService, PixelDataFileDTO, RecencyTargetingDTO, RemoteFileDTO, ReportControllerService, ReportProperty, ReportRequest, ReportResponse, ReportingControllerService, ReportingRequest, ReportingResponse, ReportingSchedulerControllerService, ReportingSchedulerResponse, RuleDTO, SafeguardBlockedItemDTO, SafeguardControllerService, SafeguardDetail, SafeguardExclusionDTO, SafeguardRequestDTO, SafeguardResponseDTO, SchedulerRequest, SelectedTargetDTO, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
12940
13358
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map