@revxui/api-clients-ts 1.1.479 → 1.1.482

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 (41) 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/creativeAssetOptimizationController.service.d.ts +78 -0
  5. package/esm2020/api/api.mjs +4 -2
  6. package/esm2020/api/appSettingsController.service.mjs +1 -1
  7. package/esm2020/api/creativeAssetOptimizationController.service.mjs +214 -0
  8. package/esm2020/api.module.mjs +4 -1
  9. package/esm2020/model/advertiserAppSettingsDTO.mjs +3 -2
  10. package/esm2020/model/advertiserSettings.mjs +9 -2
  11. package/esm2020/model/apiListResponseCreativeSizeMappingDTO.mjs +2 -0
  12. package/esm2020/model/appSettingsDTO.mjs +3 -2
  13. package/esm2020/model/creativeAssetOptimizationRequest.mjs +23 -0
  14. package/esm2020/model/creativeAssetUploadResponse.mjs +20 -0
  15. package/esm2020/model/creativeDTO.mjs +6 -1
  16. package/esm2020/model/creativeEntity.mjs +6 -1
  17. package/esm2020/model/creativeSizeMappingDTO.mjs +38 -0
  18. package/esm2020/model/models.mjs +8 -1
  19. package/esm2020/model/optimizationJobItemStatusDTO.mjs +21 -0
  20. package/esm2020/model/optimizationJobStatusResponse.mjs +11 -0
  21. package/esm2020/model/selectedTargetDTO.mjs +24 -0
  22. package/esm2020/model/videoAttributes.mjs +6 -1
  23. package/fesm2015/revxui-api-clients-ts.mjs +377 -4
  24. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  25. package/fesm2020/revxui-api-clients-ts.mjs +375 -4
  26. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  27. package/model/advertiserAppSettingsDTO.d.ts +2 -1
  28. package/model/advertiserSettings.d.ts +9 -0
  29. package/model/apiListResponseCreativeSizeMappingDTO.d.ts +16 -0
  30. package/model/appSettingsDTO.d.ts +2 -1
  31. package/model/creativeAssetOptimizationRequest.d.ts +42 -0
  32. package/model/creativeAssetUploadResponse.d.ts +26 -0
  33. package/model/creativeDTO.d.ts +7 -0
  34. package/model/creativeEntity.d.ts +7 -0
  35. package/model/creativeSizeMappingDTO.d.ts +47 -0
  36. package/model/models.d.ts +7 -0
  37. package/model/optimizationJobItemStatusDTO.d.ts +27 -0
  38. package/model/optimizationJobStatusResponse.d.ts +31 -0
  39. package/model/selectedTargetDTO.d.ts +30 -0
  40. package/model/videoAttributes.d.ts +7 -0
  41. package/package.json +1 -1
@@ -3645,6 +3645,212 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3645
3645
  type: Optional
3646
3646
  }] }]; } });
3647
3647
 
3648
+ /**
3649
+ * Api Documentation
3650
+ * Api Documentation
3651
+ *
3652
+ * OpenAPI spec version: 1.0
3653
+ *
3654
+ *
3655
+ * NOTE: This class is auto generated by the swagger code generator program.
3656
+ * https://github.com/swagger-api/swagger-codegen.git
3657
+ * Do not edit the class manually.
3658
+ */
3659
+ /* tslint:disable:no-unused-variable member-ordering */
3660
+ class CreativeAssetOptimizationControllerService {
3661
+ constructor(httpClient, basePath, configuration) {
3662
+ this.httpClient = httpClient;
3663
+ this.basePath = 'https://apiv2stage7.atomex.net';
3664
+ this.defaultHeaders = new HttpHeaders();
3665
+ this.configuration = new Configuration();
3666
+ if (basePath) {
3667
+ this.basePath = basePath;
3668
+ }
3669
+ if (configuration) {
3670
+ this.configuration = configuration;
3671
+ this.basePath = basePath || configuration.basePath || this.basePath;
3672
+ }
3673
+ }
3674
+ /**
3675
+ * @param consumes string[] mime-types
3676
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
3677
+ */
3678
+ canConsumeForm(consumes) {
3679
+ const form = 'multipart/form-data';
3680
+ for (const consume of consumes) {
3681
+ if (form === consume) {
3682
+ return true;
3683
+ }
3684
+ }
3685
+ return false;
3686
+ }
3687
+ getJobStatusUsingGET(jobId, reqId, token, observe = 'body', reportProgress = false) {
3688
+ if (jobId === null || jobId === undefined) {
3689
+ throw new Error('Required parameter jobId was null or undefined when calling getJobStatusUsingGET.');
3690
+ }
3691
+ let headers = this.defaultHeaders;
3692
+ if (reqId !== undefined && reqId !== null) {
3693
+ headers = headers.set('reqId', String(reqId));
3694
+ }
3695
+ if (token !== undefined && token !== null) {
3696
+ headers = headers.set('token', String(token));
3697
+ }
3698
+ // to determine the Accept header
3699
+ let httpHeaderAccepts = [
3700
+ 'application/json'
3701
+ ];
3702
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3703
+ if (httpHeaderAcceptSelected != undefined) {
3704
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3705
+ }
3706
+ // to determine the Content-Type header
3707
+ const consumes = [];
3708
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/jobs/${encodeURIComponent(String(jobId))}`, {
3709
+ withCredentials: this.configuration.withCredentials,
3710
+ headers: headers,
3711
+ observe: observe,
3712
+ reportProgress: reportProgress
3713
+ });
3714
+ }
3715
+ getSizeMappingConfigUsingGET(creativeType, reqId, token, observe = 'body', reportProgress = false) {
3716
+ if (creativeType === null || creativeType === undefined) {
3717
+ throw new Error('Required parameter creativeType was null or undefined when calling getSizeMappingConfigUsingGET.');
3718
+ }
3719
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3720
+ if (creativeType !== undefined && creativeType !== null) {
3721
+ queryParameters = queryParameters.set('creativeType', creativeType);
3722
+ }
3723
+ let headers = this.defaultHeaders;
3724
+ if (reqId !== undefined && reqId !== null) {
3725
+ headers = headers.set('reqId', String(reqId));
3726
+ }
3727
+ if (token !== undefined && token !== null) {
3728
+ headers = headers.set('token', String(token));
3729
+ }
3730
+ // to determine the Accept header
3731
+ let httpHeaderAccepts = [
3732
+ 'application/json'
3733
+ ];
3734
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3735
+ if (httpHeaderAcceptSelected != undefined) {
3736
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3737
+ }
3738
+ // to determine the Content-Type header
3739
+ const consumes = [];
3740
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/size-mapping-config`, {
3741
+ params: queryParameters,
3742
+ withCredentials: this.configuration.withCredentials,
3743
+ headers: headers,
3744
+ observe: observe,
3745
+ reportProgress: reportProgress
3746
+ });
3747
+ }
3748
+ saveUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
3749
+ if (request === null || request === undefined) {
3750
+ throw new Error('Required parameter request was null or undefined when calling saveUsingPOST.');
3751
+ }
3752
+ let headers = this.defaultHeaders;
3753
+ if (reqId !== undefined && reqId !== null) {
3754
+ headers = headers.set('reqId', String(reqId));
3755
+ }
3756
+ if (token !== undefined && token !== null) {
3757
+ headers = headers.set('token', String(token));
3758
+ }
3759
+ // to determine the Accept header
3760
+ let httpHeaderAccepts = [
3761
+ 'application/json'
3762
+ ];
3763
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3764
+ if (httpHeaderAcceptSelected != undefined) {
3765
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3766
+ }
3767
+ // to determine the Content-Type header
3768
+ const consumes = [
3769
+ 'application/json'
3770
+ ];
3771
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3772
+ if (httpContentTypeSelected != undefined) {
3773
+ headers = headers.set('Content-Type', httpContentTypeSelected);
3774
+ }
3775
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save`, request, {
3776
+ withCredentials: this.configuration.withCredentials,
3777
+ headers: headers,
3778
+ observe: observe,
3779
+ reportProgress: reportProgress
3780
+ });
3781
+ }
3782
+ uploadUsingPOST(advertiserId, creativeSetType, file, reqId, token, observe = 'body', reportProgress = false) {
3783
+ if (advertiserId === null || advertiserId === undefined) {
3784
+ throw new Error('Required parameter advertiserId was null or undefined when calling uploadUsingPOST.');
3785
+ }
3786
+ if (creativeSetType === null || creativeSetType === undefined) {
3787
+ throw new Error('Required parameter creativeSetType was null or undefined when calling uploadUsingPOST.');
3788
+ }
3789
+ if (file === null || file === undefined) {
3790
+ throw new Error('Required parameter file was null or undefined when calling uploadUsingPOST.');
3791
+ }
3792
+ let headers = this.defaultHeaders;
3793
+ if (reqId !== undefined && reqId !== null) {
3794
+ headers = headers.set('reqId', String(reqId));
3795
+ }
3796
+ if (token !== undefined && token !== null) {
3797
+ headers = headers.set('token', String(token));
3798
+ }
3799
+ // to determine the Accept header
3800
+ let httpHeaderAccepts = [
3801
+ 'application/json'
3802
+ ];
3803
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3804
+ if (httpHeaderAcceptSelected != undefined) {
3805
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3806
+ }
3807
+ // to determine the Content-Type header
3808
+ const consumes = [
3809
+ 'multipart/form-data'
3810
+ ];
3811
+ const canConsumeForm = this.canConsumeForm(consumes);
3812
+ let formParams;
3813
+ let useForm = false;
3814
+ let convertFormParamsToString = false;
3815
+ // use FormData to transmit files using content-type "multipart/form-data"
3816
+ // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
3817
+ useForm = canConsumeForm;
3818
+ if (useForm) {
3819
+ formParams = new FormData();
3820
+ }
3821
+ else {
3822
+ formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3823
+ }
3824
+ if (advertiserId !== undefined) {
3825
+ formParams = formParams.append('advertiserId', advertiserId) || formParams;
3826
+ }
3827
+ if (creativeSetType !== undefined) {
3828
+ formParams = formParams.append('creativeSetType', creativeSetType) || formParams;
3829
+ }
3830
+ if (file !== undefined) {
3831
+ formParams = formParams.append('file', file) || formParams;
3832
+ }
3833
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/upload`, convertFormParamsToString ? formParams.toString() : formParams, {
3834
+ withCredentials: this.configuration.withCredentials,
3835
+ headers: headers,
3836
+ observe: observe,
3837
+ reportProgress: reportProgress
3838
+ });
3839
+ }
3840
+ }
3841
+ CreativeAssetOptimizationControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
3842
+ CreativeAssetOptimizationControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService });
3843
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService, decorators: [{
3844
+ type: Injectable
3845
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3846
+ type: Optional
3847
+ }, {
3848
+ type: Inject,
3849
+ args: [BASE_PATH]
3850
+ }] }, { type: Configuration, decorators: [{
3851
+ type: Optional
3852
+ }] }]; } });
3853
+
3648
3854
  /**
3649
3855
  * Api Documentation
3650
3856
  * Api Documentation
@@ -11066,7 +11272,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11066
11272
  type: Optional
11067
11273
  }] }]; } });
11068
11274
 
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];
11275
+ const APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AppsFlyerControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeAssetOptimizationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DCOVideoSettingsControllerService, DashboardControllerService, ExperimentsControllerService, NotificationsControllerService, PixelControllerService, ReportControllerService, ReportingControllerService, ReportingSchedulerControllerService, SafeguardControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
11070
11276
 
11071
11277
  var ABTestingDTO;
11072
11278
  (function (ABTestingDTO) {
@@ -11193,7 +11399,8 @@ var AdvertiserAppSettingsDTO;
11193
11399
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11194
11400
  CLICKSIGNING: 'CLICK_SIGNING',
11195
11401
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11196
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11402
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11403
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11197
11404
  };
11198
11405
  AdvertiserAppSettingsDTO.TypeEnum = {
11199
11406
  BOOLEAN: 'BOOLEAN',
@@ -11258,6 +11465,15 @@ var AdvertiserCohortResponse;
11258
11465
  * Do not edit the class manually.
11259
11466
  */
11260
11467
 
11468
+ var AdvertiserSettings;
11469
+ (function (AdvertiserSettings) {
11470
+ AdvertiserSettings.CreativeBorderTypeEnum = {
11471
+ NONE: 'NONE',
11472
+ BLACK: 'BLACK',
11473
+ BLUR: 'BLUR'
11474
+ };
11475
+ })(AdvertiserSettings || (AdvertiserSettings = {}));
11476
+
11261
11477
  /**
11262
11478
  * Api Documentation
11263
11479
  * Api Documentation
@@ -11364,7 +11580,8 @@ var AppSettingsDTO;
11364
11580
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11365
11581
  CLICKSIGNING: 'CLICK_SIGNING',
11366
11582
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11367
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11583
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11584
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11368
11585
  };
11369
11586
  AppSettingsDTO.SettingsTypeEnum = {
11370
11587
  BOOLEAN: 'BOOLEAN',
@@ -11882,6 +12099,49 @@ var CohortCampaignStrategyDO;
11882
12099
  * Do not edit the class manually.
11883
12100
  */
11884
12101
 
12102
+ var CreativeAssetOptimizationRequest;
12103
+ (function (CreativeAssetOptimizationRequest) {
12104
+ CreativeAssetOptimizationRequest.CreativeSetTypeEnum = {
12105
+ IMAGE: 'IMAGE',
12106
+ VIDEO: 'VIDEO',
12107
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12108
+ ZIPPEDHTML: 'ZIPPED_HTML',
12109
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12110
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12111
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12112
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12113
+ DYNAMICHTML: 'DYNAMIC_HTML',
12114
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12115
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12116
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12117
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12118
+ NATIVEICON: 'NATIVE_ICON',
12119
+ ICON: 'ICON',
12120
+ CTVVIDEO: 'CTV_VIDEO',
12121
+ PLAYABLE: 'PLAYABLE'
12122
+ };
12123
+ })(CreativeAssetOptimizationRequest || (CreativeAssetOptimizationRequest = {}));
12124
+
12125
+ /**
12126
+ * Api Documentation
12127
+ * Api Documentation
12128
+ *
12129
+ * OpenAPI spec version: 1.0
12130
+ *
12131
+ *
12132
+ * NOTE: This class is auto generated by the swagger code generator program.
12133
+ * https://github.com/swagger-api/swagger-codegen.git
12134
+ * Do not edit the class manually.
12135
+ */
12136
+ var CreativeAssetUploadResponse;
12137
+ (function (CreativeAssetUploadResponse) {
12138
+ CreativeAssetUploadResponse.WarningCodeEnum = {
12139
+ INVALIDSIZE: 'INVALID_SIZE',
12140
+ ASPECTRATIOMISMATCH: 'ASPECT_RATIO_MISMATCH',
12141
+ LOWRESOLUTIONUPLOAD: 'LOW_RESOLUTION_UPLOAD'
12142
+ };
12143
+ })(CreativeAssetUploadResponse || (CreativeAssetUploadResponse = {}));
12144
+
11885
12145
  var CreativeCompactDTO;
11886
12146
  (function (CreativeCompactDTO) {
11887
12147
  CreativeCompactDTO.TypeEnum = {
@@ -11906,6 +12166,11 @@ var CreativeCompactDTO;
11906
12166
 
11907
12167
  var CreativeDTO;
11908
12168
  (function (CreativeDTO) {
12169
+ CreativeDTO.BorderTypeEnum = {
12170
+ NONE: 'NONE',
12171
+ BLACK: 'BLACK',
12172
+ BLUR: 'BLUR'
12173
+ };
11909
12174
  CreativeDTO.ContentTypeEnum = {
11910
12175
  ZIP: 'ZIP',
11911
12176
  JPG: 'JPG',
@@ -11974,6 +12239,11 @@ var CreativeDetails;
11974
12239
 
11975
12240
  var CreativeEntity;
11976
12241
  (function (CreativeEntity) {
12242
+ CreativeEntity.BorderTypeEnum = {
12243
+ NONE: 'NONE',
12244
+ BLACK: 'BLACK',
12245
+ BLUR: 'BLUR'
12246
+ };
11977
12247
  CreativeEntity.HybridAdTypeEnum = {
11978
12248
  STATIC: 'STATIC',
11979
12249
  DYNAMIC: 'DYNAMIC'
@@ -12239,6 +12509,44 @@ var CreativeSetResponse;
12239
12509
  };
12240
12510
  })(CreativeSetResponse || (CreativeSetResponse = {}));
12241
12511
 
12512
+ /**
12513
+ * Api Documentation
12514
+ * Api Documentation
12515
+ *
12516
+ * OpenAPI spec version: 1.0
12517
+ *
12518
+ *
12519
+ * NOTE: This class is auto generated by the swagger code generator program.
12520
+ * https://github.com/swagger-api/swagger-codegen.git
12521
+ * Do not edit the class manually.
12522
+ */
12523
+ var CreativeSizeMappingDTO;
12524
+ (function (CreativeSizeMappingDTO) {
12525
+ CreativeSizeMappingDTO.CreativeTypeEnum = {
12526
+ IMAGE: 'IMAGE',
12527
+ VIDEO: 'VIDEO',
12528
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12529
+ ZIPPEDHTML: 'ZIPPED_HTML',
12530
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12531
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12532
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12533
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12534
+ DYNAMICHTML: 'DYNAMIC_HTML',
12535
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12536
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12537
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12538
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12539
+ NATIVEICON: 'NATIVE_ICON',
12540
+ ICON: 'ICON',
12541
+ CTVVIDEO: 'CTV_VIDEO',
12542
+ PLAYABLE: 'PLAYABLE'
12543
+ };
12544
+ CreativeSizeMappingDTO.MappingTypeEnum = {
12545
+ EXACTFIT: 'EXACT_FIT',
12546
+ BORDER: 'BORDER'
12547
+ };
12548
+ })(CreativeSizeMappingDTO || (CreativeSizeMappingDTO = {}));
12549
+
12242
12550
  /**
12243
12551
  * Api Documentation
12244
12552
  * Api Documentation
@@ -13188,6 +13496,38 @@ var NotificationResponse;
13188
13496
  * Do not edit the class manually.
13189
13497
  */
13190
13498
 
13499
+ /**
13500
+ * Api Documentation
13501
+ * Api Documentation
13502
+ *
13503
+ * OpenAPI spec version: 1.0
13504
+ *
13505
+ *
13506
+ * NOTE: This class is auto generated by the swagger code generator program.
13507
+ * https://github.com/swagger-api/swagger-codegen.git
13508
+ * Do not edit the class manually.
13509
+ */
13510
+ var OptimizationJobItemStatusDTO;
13511
+ (function (OptimizationJobItemStatusDTO) {
13512
+ OptimizationJobItemStatusDTO.StatusEnum = {
13513
+ PENDING: 'PENDING',
13514
+ PROCESSING: 'PROCESSING',
13515
+ COMPLETED: 'COMPLETED',
13516
+ FAILED: 'FAILED'
13517
+ };
13518
+ })(OptimizationJobItemStatusDTO || (OptimizationJobItemStatusDTO = {}));
13519
+
13520
+ var OptimizationJobStatusResponse;
13521
+ (function (OptimizationJobStatusResponse) {
13522
+ OptimizationJobStatusResponse.StatusEnum = {
13523
+ PENDING: 'PENDING',
13524
+ PROCESSING: 'PROCESSING',
13525
+ COMPLETED: 'COMPLETED',
13526
+ COMPLETEDWITHERRORS: 'COMPLETED_WITH_ERRORS',
13527
+ FAILED: 'FAILED'
13528
+ };
13529
+ })(OptimizationJobStatusResponse || (OptimizationJobStatusResponse = {}));
13530
+
13191
13531
  var OptimizationRuleAuditLogDTO;
13192
13532
  (function (OptimizationRuleAuditLogDTO) {
13193
13533
  OptimizationRuleAuditLogDTO.StateEnum = {
@@ -13636,6 +13976,30 @@ var SchedulerRequest;
13636
13976
  };
13637
13977
  })(SchedulerRequest || (SchedulerRequest = {}));
13638
13978
 
13979
+ /**
13980
+ * Api Documentation
13981
+ * Api Documentation
13982
+ *
13983
+ * OpenAPI spec version: 1.0
13984
+ *
13985
+ *
13986
+ * NOTE: This class is auto generated by the swagger code generator program.
13987
+ * https://github.com/swagger-api/swagger-codegen.git
13988
+ * Do not edit the class manually.
13989
+ */
13990
+ var SelectedTargetDTO;
13991
+ (function (SelectedTargetDTO) {
13992
+ SelectedTargetDTO.BorderTypeEnum = {
13993
+ NONE: 'NONE',
13994
+ BLACK: 'BLACK',
13995
+ BLUR: 'BLUR'
13996
+ };
13997
+ SelectedTargetDTO.MappingTypeEnum = {
13998
+ EXACTFIT: 'EXACT_FIT',
13999
+ BORDER: 'BORDER'
14000
+ };
14001
+ })(SelectedTargetDTO || (SelectedTargetDTO = {}));
14002
+
13639
14003
  /**
13640
14004
  * Api Documentation
13641
14005
  * Api Documentation
@@ -14170,6 +14534,11 @@ var VastCreative;
14170
14534
  */
14171
14535
  var VideoAttributes;
14172
14536
  (function (VideoAttributes) {
14537
+ VideoAttributes.BorderTypeEnum = {
14538
+ NONE: 'NONE',
14539
+ BLACK: 'BLACK',
14540
+ BLUR: 'BLUR'
14541
+ };
14173
14542
  VideoAttributes.CompanionContentTypeEnum = {
14174
14543
  ZIP: 'ZIP',
14175
14544
  JPG: 'JPG',
@@ -14332,6 +14701,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
14332
14701
  CampaignControllerService,
14333
14702
  CatalogControllerService,
14334
14703
  ClickDestinationControllerService,
14704
+ CreativeAssetOptimizationControllerService,
14335
14705
  CreativeControllerService,
14336
14706
  CreativeSetsControllerService,
14337
14707
  CreativeTemplateThemesControllerService,
@@ -14372,6 +14742,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14372
14742
  CampaignControllerService,
14373
14743
  CatalogControllerService,
14374
14744
  ClickDestinationControllerService,
14745
+ CreativeAssetOptimizationControllerService,
14375
14746
  CreativeControllerService,
14376
14747
  CreativeSetsControllerService,
14377
14748
  CreativeTemplateThemesControllerService,
@@ -14406,5 +14777,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14406
14777
  * Generated bundle index. Do not edit.
14407
14778
  */
14408
14779
 
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 };
14780
+ export { ABTestingDTO, ABTestingResponseDetails, ABTestingVariantDTO, APIS, ActivityLogsCreativeSetsBulkUpdateDTO, ActivityLogsStrategyBulkUpdateDTO, AdminControllerService, AdvertiserAppSettingsDTO, AdvertiserCohortDTO, AdvertiserCohortResponse, AdvertiserControllerService, AdvertiserSettings, 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, CreativeAssetOptimizationControllerService, CreativeAssetOptimizationRequest, CreativeAssetUploadResponse, CreativeCompactDTO, CreativeControllerService, CreativeDTO, CreativeDetails, CreativeEntity, CreativeFileForSet, CreativeFiles, CreativeHtmlFileForSet, CreativeSetDashboardMetric, CreativeSetDetails, CreativeSetPerformanceList, CreativeSetRequest, CreativeSetResponse, CreativeSetsControllerService, 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
14781
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map