@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) {
@@ -279,7 +279,7 @@ class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {
279
279
  class AdvertiserControllerService {
280
280
  constructor(httpClient, basePath, configuration) {
281
281
  this.httpClient = httpClient;
282
- this.basePath = 'https://apiv2stage1.atomex.net';
282
+ this.basePath = 'https://apiv2stage7.atomex.net';
283
283
  this.defaultHeaders = new HttpHeaders();
284
284
  this.configuration = new Configuration();
285
285
  if (basePath) {
@@ -854,7 +854,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
854
854
  class AppSettingsControllerService {
855
855
  constructor(httpClient, basePath, configuration) {
856
856
  this.httpClient = httpClient;
857
- this.basePath = 'https://apiv2stage1.atomex.net';
857
+ this.basePath = 'https://apiv2stage7.atomex.net';
858
858
  this.defaultHeaders = new HttpHeaders();
859
859
  this.configuration = new Configuration();
860
860
  if (basePath) {
@@ -1099,7 +1099,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1099
1099
  class AppsFlyerControllerService {
1100
1100
  constructor(httpClient, basePath, configuration) {
1101
1101
  this.httpClient = httpClient;
1102
- this.basePath = 'https://apiv2stage1.atomex.net';
1102
+ this.basePath = 'https://apiv2stage7.atomex.net';
1103
1103
  this.defaultHeaders = new HttpHeaders();
1104
1104
  this.configuration = new Configuration();
1105
1105
  if (basePath) {
@@ -1185,7 +1185,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
1185
1185
  class AudienceControllerService {
1186
1186
  constructor(httpClient, basePath, configuration) {
1187
1187
  this.httpClient = httpClient;
1188
- this.basePath = 'https://apiv2stage1.atomex.net';
1188
+ this.basePath = 'https://apiv2stage7.atomex.net';
1189
1189
  this.defaultHeaders = new HttpHeaders();
1190
1190
  this.configuration = new Configuration();
1191
1191
  if (basePath) {
@@ -2061,7 +2061,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2061
2061
  class AuditControllerService {
2062
2062
  constructor(httpClient, basePath, configuration) {
2063
2063
  this.httpClient = httpClient;
2064
- this.basePath = 'https://apiv2stage1.atomex.net';
2064
+ this.basePath = 'https://apiv2stage7.atomex.net';
2065
2065
  this.defaultHeaders = new HttpHeaders();
2066
2066
  this.configuration = new Configuration();
2067
2067
  if (basePath) {
@@ -2261,7 +2261,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2261
2261
  class BidFunnelControllerService {
2262
2262
  constructor(httpClient, basePath, configuration) {
2263
2263
  this.httpClient = httpClient;
2264
- this.basePath = 'https://apiv2stage1.atomex.net';
2264
+ this.basePath = 'https://apiv2stage7.atomex.net';
2265
2265
  this.defaultHeaders = new HttpHeaders();
2266
2266
  this.configuration = new Configuration();
2267
2267
  if (basePath) {
@@ -2410,7 +2410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2410
2410
  class BulkStrategyControllerService {
2411
2411
  constructor(httpClient, basePath, configuration) {
2412
2412
  this.httpClient = httpClient;
2413
- this.basePath = 'https://apiv2stage1.atomex.net';
2413
+ this.basePath = 'https://apiv2stage7.atomex.net';
2414
2414
  this.defaultHeaders = new HttpHeaders();
2415
2415
  this.configuration = new Configuration();
2416
2416
  if (basePath) {
@@ -2635,7 +2635,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2635
2635
  class CSSThemeController_Service {
2636
2636
  constructor(httpClient, basePath, configuration) {
2637
2637
  this.httpClient = httpClient;
2638
- this.basePath = 'https://apiv2stage1.atomex.net';
2638
+ this.basePath = 'https://apiv2stage7.atomex.net';
2639
2639
  this.defaultHeaders = new HttpHeaders();
2640
2640
  this.configuration = new Configuration();
2641
2641
  if (basePath) {
@@ -2744,7 +2744,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2744
2744
  class CampaignControllerService {
2745
2745
  constructor(httpClient, basePath, configuration) {
2746
2746
  this.httpClient = httpClient;
2747
- this.basePath = 'https://apiv2stage1.atomex.net';
2747
+ this.basePath = 'https://apiv2stage7.atomex.net';
2748
2748
  this.defaultHeaders = new HttpHeaders();
2749
2749
  this.configuration = new Configuration();
2750
2750
  if (basePath) {
@@ -3185,7 +3185,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3185
3185
  class CatalogControllerService {
3186
3186
  constructor(httpClient, basePath, configuration) {
3187
3187
  this.httpClient = httpClient;
3188
- this.basePath = 'https://apiv2stage1.atomex.net';
3188
+ this.basePath = 'https://apiv2stage7.atomex.net';
3189
3189
  this.defaultHeaders = new HttpHeaders();
3190
3190
  this.configuration = new Configuration();
3191
3191
  if (basePath) {
@@ -3428,7 +3428,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3428
3428
  class ClickDestinationControllerService {
3429
3429
  constructor(httpClient, basePath, configuration) {
3430
3430
  this.httpClient = httpClient;
3431
- this.basePath = 'https://apiv2stage1.atomex.net';
3431
+ this.basePath = 'https://apiv2stage7.atomex.net';
3432
3432
  this.defaultHeaders = new HttpHeaders();
3433
3433
  this.configuration = new Configuration();
3434
3434
  if (basePath) {
@@ -3660,7 +3660,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3660
3660
  class CreativeControllerService {
3661
3661
  constructor(httpClient, basePath, configuration) {
3662
3662
  this.httpClient = httpClient;
3663
- this.basePath = 'https://apiv2stage1.atomex.net';
3663
+ this.basePath = 'https://apiv2stage7.atomex.net';
3664
3664
  this.defaultHeaders = new HttpHeaders();
3665
3665
  this.configuration = new Configuration();
3666
3666
  if (basePath) {
@@ -4263,7 +4263,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4263
4263
  class CreativeSetsControllerService {
4264
4264
  constructor(httpClient, basePath, configuration) {
4265
4265
  this.httpClient = httpClient;
4266
- this.basePath = 'https://apiv2stage1.atomex.net';
4266
+ this.basePath = 'https://apiv2stage7.atomex.net';
4267
4267
  this.defaultHeaders = new HttpHeaders();
4268
4268
  this.configuration = new Configuration();
4269
4269
  if (basePath) {
@@ -4843,12 +4843,12 @@ class CreativeSetsControllerService {
4843
4843
  reportProgress: reportProgress
4844
4844
  });
4845
4845
  }
4846
- updateUsingPOST(creativeSetRequest, id, reqId, token, observe = 'body', reportProgress = false) {
4846
+ updateUsingPOST1(creativeSetRequest, id, reqId, token, observe = 'body', reportProgress = false) {
4847
4847
  if (creativeSetRequest === null || creativeSetRequest === undefined) {
4848
- throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateUsingPOST.');
4848
+ throw new Error('Required parameter creativeSetRequest was null or undefined when calling updateUsingPOST1.');
4849
4849
  }
4850
4850
  if (id === null || id === undefined) {
4851
- throw new Error('Required parameter id was null or undefined when calling updateUsingPOST.');
4851
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST1.');
4852
4852
  }
4853
4853
  let headers = this.defaultHeaders;
4854
4854
  if (reqId !== undefined && reqId !== null) {
@@ -4894,6 +4894,249 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4894
4894
  type: Optional
4895
4895
  }] }]; } });
4896
4896
 
4897
+ /**
4898
+ * Api Documentation
4899
+ * Api Documentation
4900
+ *
4901
+ * OpenAPI spec version: 1.0
4902
+ *
4903
+ *
4904
+ * NOTE: This class is auto generated by the swagger code generator program.
4905
+ * https://github.com/swagger-api/swagger-codegen.git
4906
+ * Do not edit the class manually.
4907
+ */
4908
+ /* tslint:disable:no-unused-variable member-ordering */
4909
+ class CreativeSetsV2ControllerService {
4910
+ constructor(httpClient, basePath, configuration) {
4911
+ this.httpClient = httpClient;
4912
+ this.basePath = 'https://apiv2stage7.atomex.net';
4913
+ this.defaultHeaders = new HttpHeaders();
4914
+ this.configuration = new Configuration();
4915
+ if (basePath) {
4916
+ this.basePath = basePath;
4917
+ }
4918
+ if (configuration) {
4919
+ this.configuration = configuration;
4920
+ this.basePath = basePath || configuration.basePath || this.basePath;
4921
+ }
4922
+ }
4923
+ /**
4924
+ * @param consumes string[] mime-types
4925
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
4926
+ */
4927
+ canConsumeForm(consumes) {
4928
+ const form = 'multipart/form-data';
4929
+ for (const consume of consumes) {
4930
+ if (form === consume) {
4931
+ return true;
4932
+ }
4933
+ }
4934
+ return false;
4935
+ }
4936
+ getJobStatusUsingGET(jobId, reqId, token, observe = 'body', reportProgress = false) {
4937
+ if (jobId === null || jobId === undefined) {
4938
+ throw new Error('Required parameter jobId was null or undefined when calling getJobStatusUsingGET.');
4939
+ }
4940
+ let headers = this.defaultHeaders;
4941
+ if (reqId !== undefined && reqId !== null) {
4942
+ headers = headers.set('reqId', String(reqId));
4943
+ }
4944
+ if (token !== undefined && token !== null) {
4945
+ headers = headers.set('token', String(token));
4946
+ }
4947
+ // to determine the Accept header
4948
+ let httpHeaderAccepts = [
4949
+ 'application/json'
4950
+ ];
4951
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4952
+ if (httpHeaderAcceptSelected != undefined) {
4953
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
4954
+ }
4955
+ // to determine the Content-Type header
4956
+ const consumes = [];
4957
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/jobs/${encodeURIComponent(String(jobId))}`, {
4958
+ withCredentials: this.configuration.withCredentials,
4959
+ headers: headers,
4960
+ observe: observe,
4961
+ reportProgress: reportProgress
4962
+ });
4963
+ }
4964
+ getSizeMappingConfigUsingGET(creativeType, reqId, token, observe = 'body', reportProgress = false) {
4965
+ if (creativeType === null || creativeType === undefined) {
4966
+ throw new Error('Required parameter creativeType was null or undefined when calling getSizeMappingConfigUsingGET.');
4967
+ }
4968
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
4969
+ if (creativeType !== undefined && creativeType !== null) {
4970
+ queryParameters = queryParameters.set('creativeType', creativeType);
4971
+ }
4972
+ let headers = this.defaultHeaders;
4973
+ if (reqId !== undefined && reqId !== null) {
4974
+ headers = headers.set('reqId', String(reqId));
4975
+ }
4976
+ if (token !== undefined && token !== null) {
4977
+ headers = headers.set('token', String(token));
4978
+ }
4979
+ // to determine the Accept header
4980
+ let httpHeaderAccepts = [
4981
+ 'application/json'
4982
+ ];
4983
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4984
+ if (httpHeaderAcceptSelected != undefined) {
4985
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
4986
+ }
4987
+ // to determine the Content-Type header
4988
+ const consumes = [];
4989
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/size-mapping-config`, {
4990
+ params: queryParameters,
4991
+ withCredentials: this.configuration.withCredentials,
4992
+ headers: headers,
4993
+ observe: observe,
4994
+ reportProgress: reportProgress
4995
+ });
4996
+ }
4997
+ saveUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
4998
+ if (request === null || request === undefined) {
4999
+ throw new Error('Required parameter request was null or undefined when calling saveUsingPOST.');
5000
+ }
5001
+ let headers = this.defaultHeaders;
5002
+ if (reqId !== undefined && reqId !== null) {
5003
+ headers = headers.set('reqId', String(reqId));
5004
+ }
5005
+ if (token !== undefined && token !== null) {
5006
+ headers = headers.set('token', String(token));
5007
+ }
5008
+ // to determine the Accept header
5009
+ let httpHeaderAccepts = [
5010
+ 'application/json'
5011
+ ];
5012
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5013
+ if (httpHeaderAcceptSelected != undefined) {
5014
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5015
+ }
5016
+ // to determine the Content-Type header
5017
+ const consumes = [
5018
+ 'application/json'
5019
+ ];
5020
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5021
+ if (httpContentTypeSelected != undefined) {
5022
+ headers = headers.set('Content-Type', httpContentTypeSelected);
5023
+ }
5024
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save`, request, {
5025
+ withCredentials: this.configuration.withCredentials,
5026
+ headers: headers,
5027
+ observe: observe,
5028
+ reportProgress: reportProgress
5029
+ });
5030
+ }
5031
+ updateUsingPOST(id, request, reqId, token, observe = 'body', reportProgress = false) {
5032
+ if (id === null || id === undefined) {
5033
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST.');
5034
+ }
5035
+ if (request === null || request === undefined) {
5036
+ throw new Error('Required parameter request was null or undefined when calling updateUsingPOST.');
5037
+ }
5038
+ let headers = this.defaultHeaders;
5039
+ if (reqId !== undefined && reqId !== null) {
5040
+ headers = headers.set('reqId', String(reqId));
5041
+ }
5042
+ if (token !== undefined && token !== null) {
5043
+ headers = headers.set('token', String(token));
5044
+ }
5045
+ // to determine the Accept header
5046
+ let httpHeaderAccepts = [
5047
+ 'application/json'
5048
+ ];
5049
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5050
+ if (httpHeaderAcceptSelected != undefined) {
5051
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5052
+ }
5053
+ // to determine the Content-Type header
5054
+ const consumes = [
5055
+ 'application/json'
5056
+ ];
5057
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
5058
+ if (httpContentTypeSelected != undefined) {
5059
+ headers = headers.set('Content-Type', httpContentTypeSelected);
5060
+ }
5061
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save/${encodeURIComponent(String(id))}`, request, {
5062
+ withCredentials: this.configuration.withCredentials,
5063
+ headers: headers,
5064
+ observe: observe,
5065
+ reportProgress: reportProgress
5066
+ });
5067
+ }
5068
+ uploadUsingPOST(advertiserId, creativeSetType, file, reqId, token, observe = 'body', reportProgress = false) {
5069
+ if (advertiserId === null || advertiserId === undefined) {
5070
+ throw new Error('Required parameter advertiserId was null or undefined when calling uploadUsingPOST.');
5071
+ }
5072
+ if (creativeSetType === null || creativeSetType === undefined) {
5073
+ throw new Error('Required parameter creativeSetType was null or undefined when calling uploadUsingPOST.');
5074
+ }
5075
+ if (file === null || file === undefined) {
5076
+ throw new Error('Required parameter file was null or undefined when calling uploadUsingPOST.');
5077
+ }
5078
+ let headers = this.defaultHeaders;
5079
+ if (reqId !== undefined && reqId !== null) {
5080
+ headers = headers.set('reqId', String(reqId));
5081
+ }
5082
+ if (token !== undefined && token !== null) {
5083
+ headers = headers.set('token', String(token));
5084
+ }
5085
+ // to determine the Accept header
5086
+ let httpHeaderAccepts = [
5087
+ 'application/json'
5088
+ ];
5089
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
5090
+ if (httpHeaderAcceptSelected != undefined) {
5091
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
5092
+ }
5093
+ // to determine the Content-Type header
5094
+ const consumes = [
5095
+ 'multipart/form-data'
5096
+ ];
5097
+ const canConsumeForm = this.canConsumeForm(consumes);
5098
+ let formParams;
5099
+ let useForm = false;
5100
+ let convertFormParamsToString = false;
5101
+ // use FormData to transmit files using content-type "multipart/form-data"
5102
+ // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
5103
+ useForm = canConsumeForm;
5104
+ if (useForm) {
5105
+ formParams = new FormData();
5106
+ }
5107
+ else {
5108
+ formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
5109
+ }
5110
+ if (advertiserId !== undefined) {
5111
+ formParams = formParams.append('advertiserId', advertiserId) || formParams;
5112
+ }
5113
+ if (creativeSetType !== undefined) {
5114
+ formParams = formParams.append('creativeSetType', creativeSetType) || formParams;
5115
+ }
5116
+ if (file !== undefined) {
5117
+ formParams = formParams.append('file', file) || formParams;
5118
+ }
5119
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/upload`, convertFormParamsToString ? formParams.toString() : formParams, {
5120
+ withCredentials: this.configuration.withCredentials,
5121
+ headers: headers,
5122
+ observe: observe,
5123
+ reportProgress: reportProgress
5124
+ });
5125
+ }
5126
+ }
5127
+ 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 });
5128
+ CreativeSetsV2ControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeSetsV2ControllerService });
5129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeSetsV2ControllerService, decorators: [{
5130
+ type: Injectable
5131
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
5132
+ type: Optional
5133
+ }, {
5134
+ type: Inject,
5135
+ args: [BASE_PATH]
5136
+ }] }, { type: Configuration, decorators: [{
5137
+ type: Optional
5138
+ }] }]; } });
5139
+
4897
5140
  /**
4898
5141
  * Api Documentation
4899
5142
  * Api Documentation
@@ -4909,7 +5152,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
4909
5152
  class CreativeTemplateThemesControllerService {
4910
5153
  constructor(httpClient, basePath, configuration) {
4911
5154
  this.httpClient = httpClient;
4912
- this.basePath = 'https://apiv2stage1.atomex.net';
5155
+ this.basePath = 'https://apiv2stage7.atomex.net';
4913
5156
  this.defaultHeaders = new HttpHeaders();
4914
5157
  this.configuration = new Configuration();
4915
5158
  if (basePath) {
@@ -5094,7 +5337,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5094
5337
  class CreativeTemplateVariablesControllerService {
5095
5338
  constructor(httpClient, basePath, configuration) {
5096
5339
  this.httpClient = httpClient;
5097
- this.basePath = 'https://apiv2stage1.atomex.net';
5340
+ this.basePath = 'https://apiv2stage7.atomex.net';
5098
5341
  this.defaultHeaders = new HttpHeaders();
5099
5342
  this.configuration = new Configuration();
5100
5343
  if (basePath) {
@@ -5172,7 +5415,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5172
5415
  class CreativeTemplatesControllerService {
5173
5416
  constructor(httpClient, basePath, configuration) {
5174
5417
  this.httpClient = httpClient;
5175
- this.basePath = 'https://apiv2stage1.atomex.net';
5418
+ this.basePath = 'https://apiv2stage7.atomex.net';
5176
5419
  this.defaultHeaders = new HttpHeaders();
5177
5420
  this.configuration = new Configuration();
5178
5421
  if (basePath) {
@@ -5337,7 +5580,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5337
5580
  class CustomerReportingControllerService {
5338
5581
  constructor(httpClient, basePath, configuration) {
5339
5582
  this.httpClient = httpClient;
5340
- this.basePath = 'https://apiv2stage1.atomex.net';
5583
+ this.basePath = 'https://apiv2stage7.atomex.net';
5341
5584
  this.defaultHeaders = new HttpHeaders();
5342
5585
  this.configuration = new Configuration();
5343
5586
  if (basePath) {
@@ -5500,7 +5743,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
5500
5743
  class DCOVideoSettingsControllerService {
5501
5744
  constructor(httpClient, basePath, configuration) {
5502
5745
  this.httpClient = httpClient;
5503
- this.basePath = 'https://apiv2stage1.atomex.net';
5746
+ this.basePath = 'https://apiv2stage7.atomex.net';
5504
5747
  this.defaultHeaders = new HttpHeaders();
5505
5748
  this.configuration = new Configuration();
5506
5749
  if (basePath) {
@@ -6066,7 +6309,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6066
6309
  class DashboardControllerService {
6067
6310
  constructor(httpClient, basePath, configuration) {
6068
6311
  this.httpClient = httpClient;
6069
- this.basePath = 'https://apiv2stage1.atomex.net';
6312
+ this.basePath = 'https://apiv2stage7.atomex.net';
6070
6313
  this.defaultHeaders = new HttpHeaders();
6071
6314
  this.configuration = new Configuration();
6072
6315
  if (basePath) {
@@ -6724,7 +6967,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6724
6967
  class ExperimentsControllerService {
6725
6968
  constructor(httpClient, basePath, configuration) {
6726
6969
  this.httpClient = httpClient;
6727
- this.basePath = 'https://apiv2stage1.atomex.net';
6970
+ this.basePath = 'https://apiv2stage7.atomex.net';
6728
6971
  this.defaultHeaders = new HttpHeaders();
6729
6972
  this.configuration = new Configuration();
6730
6973
  if (basePath) {
@@ -7451,7 +7694,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7451
7694
  class NotificationsControllerService {
7452
7695
  constructor(httpClient, basePath, configuration) {
7453
7696
  this.httpClient = httpClient;
7454
- this.basePath = 'https://apiv2stage1.atomex.net';
7697
+ this.basePath = 'https://apiv2stage7.atomex.net';
7455
7698
  this.defaultHeaders = new HttpHeaders();
7456
7699
  this.configuration = new Configuration();
7457
7700
  if (basePath) {
@@ -7664,7 +7907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7664
7907
  class PixelControllerService {
7665
7908
  constructor(httpClient, basePath, configuration) {
7666
7909
  this.httpClient = httpClient;
7667
- this.basePath = 'https://apiv2stage1.atomex.net';
7910
+ this.basePath = 'https://apiv2stage7.atomex.net';
7668
7911
  this.defaultHeaders = new HttpHeaders();
7669
7912
  this.configuration = new Configuration();
7670
7913
  if (basePath) {
@@ -7900,12 +8143,12 @@ class PixelControllerService {
7900
8143
  reportProgress: reportProgress
7901
8144
  });
7902
8145
  }
7903
- updateUsingPOST1(id, pixel, reqId, token, observe = 'body', reportProgress = false) {
8146
+ updateUsingPOST2(id, pixel, reqId, token, observe = 'body', reportProgress = false) {
7904
8147
  if (id === null || id === undefined) {
7905
- throw new Error('Required parameter id was null or undefined when calling updateUsingPOST1.');
8148
+ throw new Error('Required parameter id was null or undefined when calling updateUsingPOST2.');
7906
8149
  }
7907
8150
  if (pixel === null || pixel === undefined) {
7908
- throw new Error('Required parameter pixel was null or undefined when calling updateUsingPOST1.');
8151
+ throw new Error('Required parameter pixel was null or undefined when calling updateUsingPOST2.');
7909
8152
  }
7910
8153
  let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
7911
8154
  if (id !== undefined && id !== null) {
@@ -7971,7 +8214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
7971
8214
  class ReportControllerService {
7972
8215
  constructor(httpClient, basePath, configuration) {
7973
8216
  this.httpClient = httpClient;
7974
- this.basePath = 'https://apiv2stage1.atomex.net';
8217
+ this.basePath = 'https://apiv2stage7.atomex.net';
7975
8218
  this.defaultHeaders = new HttpHeaders();
7976
8219
  this.configuration = new Configuration();
7977
8220
  if (basePath) {
@@ -8108,7 +8351,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8108
8351
  class ReportingControllerService {
8109
8352
  constructor(httpClient, basePath, configuration) {
8110
8353
  this.httpClient = httpClient;
8111
- this.basePath = 'https://apiv2stage1.atomex.net';
8354
+ this.basePath = 'https://apiv2stage7.atomex.net';
8112
8355
  this.defaultHeaders = new HttpHeaders();
8113
8356
  this.configuration = new Configuration();
8114
8357
  if (basePath) {
@@ -8278,7 +8521,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8278
8521
  class ReportingSchedulerControllerService {
8279
8522
  constructor(httpClient, basePath, configuration) {
8280
8523
  this.httpClient = httpClient;
8281
- this.basePath = 'https://apiv2stage1.atomex.net';
8524
+ this.basePath = 'https://apiv2stage7.atomex.net';
8282
8525
  this.defaultHeaders = new HttpHeaders();
8283
8526
  this.configuration = new Configuration();
8284
8527
  if (basePath) {
@@ -8593,7 +8836,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
8593
8836
  class SafeguardControllerService {
8594
8837
  constructor(httpClient, basePath, configuration) {
8595
8838
  this.httpClient = httpClient;
8596
- this.basePath = 'https://apiv2stage1.atomex.net';
8839
+ this.basePath = 'https://apiv2stage7.atomex.net';
8597
8840
  this.defaultHeaders = new HttpHeaders();
8598
8841
  this.configuration = new Configuration();
8599
8842
  if (basePath) {
@@ -9087,7 +9330,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9087
9330
  class SliceXControllerService {
9088
9331
  constructor(httpClient, basePath, configuration) {
9089
9332
  this.httpClient = httpClient;
9090
- this.basePath = 'https://apiv2stage1.atomex.net';
9333
+ this.basePath = 'https://apiv2stage7.atomex.net';
9091
9334
  this.defaultHeaders = new HttpHeaders();
9092
9335
  this.configuration = new Configuration();
9093
9336
  if (basePath) {
@@ -9491,7 +9734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
9491
9734
  class StrategyControllerService {
9492
9735
  constructor(httpClient, basePath, configuration) {
9493
9736
  this.httpClient = httpClient;
9494
- this.basePath = 'https://apiv2stage1.atomex.net';
9737
+ this.basePath = 'https://apiv2stage7.atomex.net';
9495
9738
  this.defaultHeaders = new HttpHeaders();
9496
9739
  this.configuration = new Configuration();
9497
9740
  if (basePath) {
@@ -10693,7 +10936,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10693
10936
  class StrategyTemplateControllerService {
10694
10937
  constructor(httpClient, basePath, configuration) {
10695
10938
  this.httpClient = httpClient;
10696
- this.basePath = 'https://apiv2stage1.atomex.net';
10939
+ this.basePath = 'https://apiv2stage7.atomex.net';
10697
10940
  this.defaultHeaders = new HttpHeaders();
10698
10941
  this.configuration = new Configuration();
10699
10942
  if (basePath) {
@@ -10815,7 +11058,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10815
11058
  class UILoggerControllerService {
10816
11059
  constructor(httpClient, basePath, configuration) {
10817
11060
  this.httpClient = httpClient;
10818
- this.basePath = 'https://apiv2stage1.atomex.net';
11061
+ this.basePath = 'https://apiv2stage7.atomex.net';
10819
11062
  this.defaultHeaders = new HttpHeaders();
10820
11063
  this.configuration = new Configuration();
10821
11064
  if (basePath) {
@@ -10907,7 +11150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
10907
11150
  class UserPreferenceControllerService {
10908
11151
  constructor(httpClient, basePath, configuration) {
10909
11152
  this.httpClient = httpClient;
10910
- this.basePath = 'https://apiv2stage1.atomex.net';
11153
+ this.basePath = 'https://apiv2stage7.atomex.net';
10911
11154
  this.defaultHeaders = new HttpHeaders();
10912
11155
  this.configuration = new Configuration();
10913
11156
  if (basePath) {
@@ -11066,7 +11309,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11066
11309
  type: Optional
11067
11310
  }] }]; } });
11068
11311
 
11069
- 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];
11312
+ 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];
11070
11313
 
11071
11314
  var ABTestingDTO;
11072
11315
  (function (ABTestingDTO) {
@@ -11193,7 +11436,8 @@ var AdvertiserAppSettingsDTO;
11193
11436
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11194
11437
  CLICKSIGNING: 'CLICK_SIGNING',
11195
11438
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11196
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11439
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11440
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11197
11441
  };
11198
11442
  AdvertiserAppSettingsDTO.TypeEnum = {
11199
11443
  BOOLEAN: 'BOOLEAN',
@@ -11258,6 +11502,15 @@ var AdvertiserCohortResponse;
11258
11502
  * Do not edit the class manually.
11259
11503
  */
11260
11504
 
11505
+ var AdvertiserSettings;
11506
+ (function (AdvertiserSettings) {
11507
+ AdvertiserSettings.CreativeBorderTypeEnum = {
11508
+ NONE: 'NONE',
11509
+ BLACK: 'BLACK',
11510
+ BLUR: 'BLUR'
11511
+ };
11512
+ })(AdvertiserSettings || (AdvertiserSettings = {}));
11513
+
11261
11514
  /**
11262
11515
  * Api Documentation
11263
11516
  * Api Documentation
@@ -11364,7 +11617,8 @@ var AppSettingsDTO;
11364
11617
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11365
11618
  CLICKSIGNING: 'CLICK_SIGNING',
11366
11619
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11367
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11620
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11621
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11368
11622
  };
11369
11623
  AppSettingsDTO.SettingsTypeEnum = {
11370
11624
  BOOLEAN: 'BOOLEAN',
@@ -11394,6 +11648,14 @@ var AppSettingsPropertyDTO;
11394
11648
  };
11395
11649
  })(AppSettingsPropertyDTO || (AppSettingsPropertyDTO = {}));
11396
11650
 
11651
+ var AssetSelectionDTO;
11652
+ (function (AssetSelectionDTO) {
11653
+ AssetSelectionDTO.EndCardTypeEnum = {
11654
+ IMAGE: 'IMAGE',
11655
+ HTML: 'HTML'
11656
+ };
11657
+ })(AssetSelectionDTO || (AssetSelectionDTO = {}));
11658
+
11397
11659
  /**
11398
11660
  * Api Documentation
11399
11661
  * Api Documentation
@@ -11882,6 +12144,49 @@ var CohortCampaignStrategyDO;
11882
12144
  * Do not edit the class manually.
11883
12145
  */
11884
12146
 
12147
+ var CreativeAssetOptimizationRequest;
12148
+ (function (CreativeAssetOptimizationRequest) {
12149
+ CreativeAssetOptimizationRequest.CreativeSetTypeEnum = {
12150
+ IMAGE: 'IMAGE',
12151
+ VIDEO: 'VIDEO',
12152
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12153
+ ZIPPEDHTML: 'ZIPPED_HTML',
12154
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12155
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12156
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12157
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12158
+ DYNAMICHTML: 'DYNAMIC_HTML',
12159
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12160
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12161
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12162
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12163
+ NATIVEICON: 'NATIVE_ICON',
12164
+ ICON: 'ICON',
12165
+ CTVVIDEO: 'CTV_VIDEO',
12166
+ PLAYABLE: 'PLAYABLE'
12167
+ };
12168
+ })(CreativeAssetOptimizationRequest || (CreativeAssetOptimizationRequest = {}));
12169
+
12170
+ /**
12171
+ * Api Documentation
12172
+ * Api Documentation
12173
+ *
12174
+ * OpenAPI spec version: 1.0
12175
+ *
12176
+ *
12177
+ * NOTE: This class is auto generated by the swagger code generator program.
12178
+ * https://github.com/swagger-api/swagger-codegen.git
12179
+ * Do not edit the class manually.
12180
+ */
12181
+ var CreativeAssetUploadResponse;
12182
+ (function (CreativeAssetUploadResponse) {
12183
+ CreativeAssetUploadResponse.WarningCodeEnum = {
12184
+ INVALIDSIZE: 'INVALID_SIZE',
12185
+ ASPECTRATIOMISMATCH: 'ASPECT_RATIO_MISMATCH',
12186
+ LOWRESOLUTIONUPLOAD: 'LOW_RESOLUTION_UPLOAD'
12187
+ };
12188
+ })(CreativeAssetUploadResponse || (CreativeAssetUploadResponse = {}));
12189
+
11885
12190
  var CreativeCompactDTO;
11886
12191
  (function (CreativeCompactDTO) {
11887
12192
  CreativeCompactDTO.TypeEnum = {
@@ -11906,6 +12211,11 @@ var CreativeCompactDTO;
11906
12211
 
11907
12212
  var CreativeDTO;
11908
12213
  (function (CreativeDTO) {
12214
+ CreativeDTO.BorderTypeEnum = {
12215
+ NONE: 'NONE',
12216
+ BLACK: 'BLACK',
12217
+ BLUR: 'BLUR'
12218
+ };
11909
12219
  CreativeDTO.ContentTypeEnum = {
11910
12220
  ZIP: 'ZIP',
11911
12221
  JPG: 'JPG',
@@ -11974,6 +12284,11 @@ var CreativeDetails;
11974
12284
 
11975
12285
  var CreativeEntity;
11976
12286
  (function (CreativeEntity) {
12287
+ CreativeEntity.BorderTypeEnum = {
12288
+ NONE: 'NONE',
12289
+ BLACK: 'BLACK',
12290
+ BLUR: 'BLUR'
12291
+ };
11977
12292
  CreativeEntity.HybridAdTypeEnum = {
11978
12293
  STATIC: 'STATIC',
11979
12294
  DYNAMIC: 'DYNAMIC'
@@ -12239,6 +12554,44 @@ var CreativeSetResponse;
12239
12554
  };
12240
12555
  })(CreativeSetResponse || (CreativeSetResponse = {}));
12241
12556
 
12557
+ /**
12558
+ * Api Documentation
12559
+ * Api Documentation
12560
+ *
12561
+ * OpenAPI spec version: 1.0
12562
+ *
12563
+ *
12564
+ * NOTE: This class is auto generated by the swagger code generator program.
12565
+ * https://github.com/swagger-api/swagger-codegen.git
12566
+ * Do not edit the class manually.
12567
+ */
12568
+ var CreativeSizeMappingDTO;
12569
+ (function (CreativeSizeMappingDTO) {
12570
+ CreativeSizeMappingDTO.CreativeTypeEnum = {
12571
+ IMAGE: 'IMAGE',
12572
+ VIDEO: 'VIDEO',
12573
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12574
+ ZIPPEDHTML: 'ZIPPED_HTML',
12575
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12576
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12577
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12578
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12579
+ DYNAMICHTML: 'DYNAMIC_HTML',
12580
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12581
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12582
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12583
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12584
+ NATIVEICON: 'NATIVE_ICON',
12585
+ ICON: 'ICON',
12586
+ CTVVIDEO: 'CTV_VIDEO',
12587
+ PLAYABLE: 'PLAYABLE'
12588
+ };
12589
+ CreativeSizeMappingDTO.MappingTypeEnum = {
12590
+ EXACTFIT: 'EXACT_FIT',
12591
+ BORDER: 'BORDER'
12592
+ };
12593
+ })(CreativeSizeMappingDTO || (CreativeSizeMappingDTO = {}));
12594
+
12242
12595
  /**
12243
12596
  * Api Documentation
12244
12597
  * Api Documentation
@@ -13188,6 +13541,38 @@ var NotificationResponse;
13188
13541
  * Do not edit the class manually.
13189
13542
  */
13190
13543
 
13544
+ /**
13545
+ * Api Documentation
13546
+ * Api Documentation
13547
+ *
13548
+ * OpenAPI spec version: 1.0
13549
+ *
13550
+ *
13551
+ * NOTE: This class is auto generated by the swagger code generator program.
13552
+ * https://github.com/swagger-api/swagger-codegen.git
13553
+ * Do not edit the class manually.
13554
+ */
13555
+ var OptimizationJobItemStatusDTO;
13556
+ (function (OptimizationJobItemStatusDTO) {
13557
+ OptimizationJobItemStatusDTO.StatusEnum = {
13558
+ PENDING: 'PENDING',
13559
+ PROCESSING: 'PROCESSING',
13560
+ COMPLETED: 'COMPLETED',
13561
+ FAILED: 'FAILED'
13562
+ };
13563
+ })(OptimizationJobItemStatusDTO || (OptimizationJobItemStatusDTO = {}));
13564
+
13565
+ var OptimizationJobStatusResponse;
13566
+ (function (OptimizationJobStatusResponse) {
13567
+ OptimizationJobStatusResponse.StatusEnum = {
13568
+ PENDING: 'PENDING',
13569
+ PROCESSING: 'PROCESSING',
13570
+ COMPLETED: 'COMPLETED',
13571
+ COMPLETEDWITHERRORS: 'COMPLETED_WITH_ERRORS',
13572
+ FAILED: 'FAILED'
13573
+ };
13574
+ })(OptimizationJobStatusResponse || (OptimizationJobStatusResponse = {}));
13575
+
13191
13576
  var OptimizationRuleAuditLogDTO;
13192
13577
  (function (OptimizationRuleAuditLogDTO) {
13193
13578
  OptimizationRuleAuditLogDTO.StateEnum = {
@@ -13636,6 +14021,30 @@ var SchedulerRequest;
13636
14021
  };
13637
14022
  })(SchedulerRequest || (SchedulerRequest = {}));
13638
14023
 
14024
+ /**
14025
+ * Api Documentation
14026
+ * Api Documentation
14027
+ *
14028
+ * OpenAPI spec version: 1.0
14029
+ *
14030
+ *
14031
+ * NOTE: This class is auto generated by the swagger code generator program.
14032
+ * https://github.com/swagger-api/swagger-codegen.git
14033
+ * Do not edit the class manually.
14034
+ */
14035
+ var SelectedTargetDTO;
14036
+ (function (SelectedTargetDTO) {
14037
+ SelectedTargetDTO.BorderTypeEnum = {
14038
+ NONE: 'NONE',
14039
+ BLACK: 'BLACK',
14040
+ BLUR: 'BLUR'
14041
+ };
14042
+ SelectedTargetDTO.MappingTypeEnum = {
14043
+ EXACTFIT: 'EXACT_FIT',
14044
+ BORDER: 'BORDER'
14045
+ };
14046
+ })(SelectedTargetDTO || (SelectedTargetDTO = {}));
14047
+
13639
14048
  /**
13640
14049
  * Api Documentation
13641
14050
  * Api Documentation
@@ -14170,6 +14579,11 @@ var VastCreative;
14170
14579
  */
14171
14580
  var VideoAttributes;
14172
14581
  (function (VideoAttributes) {
14582
+ VideoAttributes.BorderTypeEnum = {
14583
+ NONE: 'NONE',
14584
+ BLACK: 'BLACK',
14585
+ BLUR: 'BLUR'
14586
+ };
14173
14587
  VideoAttributes.CompanionContentTypeEnum = {
14174
14588
  ZIP: 'ZIP',
14175
14589
  JPG: 'JPG',
@@ -14334,6 +14748,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
14334
14748
  ClickDestinationControllerService,
14335
14749
  CreativeControllerService,
14336
14750
  CreativeSetsControllerService,
14751
+ CreativeSetsV2ControllerService,
14337
14752
  CreativeTemplateThemesControllerService,
14338
14753
  CreativeTemplateVariablesControllerService,
14339
14754
  CreativeTemplatesControllerService,
@@ -14374,6 +14789,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14374
14789
  ClickDestinationControllerService,
14375
14790
  CreativeControllerService,
14376
14791
  CreativeSetsControllerService,
14792
+ CreativeSetsV2ControllerService,
14377
14793
  CreativeTemplateThemesControllerService,
14378
14794
  CreativeTemplateVariablesControllerService,
14379
14795
  CreativeTemplatesControllerService,
@@ -14406,5 +14822,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14406
14822
  * Generated bundle index. Do not edit.
14407
14823
  */
14408
14824
 
14409
- 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 };
14825
+ 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 };
14410
14826
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map