@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
@@ -3669,6 +3669,214 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3669
3669
  }] }];
3670
3670
  } });
3671
3671
 
3672
+ /**
3673
+ * Api Documentation
3674
+ * Api Documentation
3675
+ *
3676
+ * OpenAPI spec version: 1.0
3677
+ *
3678
+ *
3679
+ * NOTE: This class is auto generated by the swagger code generator program.
3680
+ * https://github.com/swagger-api/swagger-codegen.git
3681
+ * Do not edit the class manually.
3682
+ */
3683
+ /* tslint:disable:no-unused-variable member-ordering */
3684
+ class CreativeAssetOptimizationControllerService {
3685
+ constructor(httpClient, basePath, configuration) {
3686
+ this.httpClient = httpClient;
3687
+ this.basePath = 'https://apiv2stage7.atomex.net';
3688
+ this.defaultHeaders = new HttpHeaders();
3689
+ this.configuration = new Configuration();
3690
+ if (basePath) {
3691
+ this.basePath = basePath;
3692
+ }
3693
+ if (configuration) {
3694
+ this.configuration = configuration;
3695
+ this.basePath = basePath || configuration.basePath || this.basePath;
3696
+ }
3697
+ }
3698
+ /**
3699
+ * @param consumes string[] mime-types
3700
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
3701
+ */
3702
+ canConsumeForm(consumes) {
3703
+ const form = 'multipart/form-data';
3704
+ for (const consume of consumes) {
3705
+ if (form === consume) {
3706
+ return true;
3707
+ }
3708
+ }
3709
+ return false;
3710
+ }
3711
+ getJobStatusUsingGET(jobId, reqId, token, observe = 'body', reportProgress = false) {
3712
+ if (jobId === null || jobId === undefined) {
3713
+ throw new Error('Required parameter jobId was null or undefined when calling getJobStatusUsingGET.');
3714
+ }
3715
+ let headers = this.defaultHeaders;
3716
+ if (reqId !== undefined && reqId !== null) {
3717
+ headers = headers.set('reqId', String(reqId));
3718
+ }
3719
+ if (token !== undefined && token !== null) {
3720
+ headers = headers.set('token', String(token));
3721
+ }
3722
+ // to determine the Accept header
3723
+ let httpHeaderAccepts = [
3724
+ 'application/json'
3725
+ ];
3726
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3727
+ if (httpHeaderAcceptSelected != undefined) {
3728
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3729
+ }
3730
+ // to determine the Content-Type header
3731
+ const consumes = [];
3732
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/jobs/${encodeURIComponent(String(jobId))}`, {
3733
+ withCredentials: this.configuration.withCredentials,
3734
+ headers: headers,
3735
+ observe: observe,
3736
+ reportProgress: reportProgress
3737
+ });
3738
+ }
3739
+ getSizeMappingConfigUsingGET(creativeType, reqId, token, observe = 'body', reportProgress = false) {
3740
+ if (creativeType === null || creativeType === undefined) {
3741
+ throw new Error('Required parameter creativeType was null or undefined when calling getSizeMappingConfigUsingGET.');
3742
+ }
3743
+ let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3744
+ if (creativeType !== undefined && creativeType !== null) {
3745
+ queryParameters = queryParameters.set('creativeType', creativeType);
3746
+ }
3747
+ let headers = this.defaultHeaders;
3748
+ if (reqId !== undefined && reqId !== null) {
3749
+ headers = headers.set('reqId', String(reqId));
3750
+ }
3751
+ if (token !== undefined && token !== null) {
3752
+ headers = headers.set('token', String(token));
3753
+ }
3754
+ // to determine the Accept header
3755
+ let httpHeaderAccepts = [
3756
+ 'application/json'
3757
+ ];
3758
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3759
+ if (httpHeaderAcceptSelected != undefined) {
3760
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3761
+ }
3762
+ // to determine the Content-Type header
3763
+ const consumes = [];
3764
+ return this.httpClient.get(`${this.basePath}/v2/api/creativesets/v2/size-mapping-config`, {
3765
+ params: queryParameters,
3766
+ withCredentials: this.configuration.withCredentials,
3767
+ headers: headers,
3768
+ observe: observe,
3769
+ reportProgress: reportProgress
3770
+ });
3771
+ }
3772
+ saveUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
3773
+ if (request === null || request === undefined) {
3774
+ throw new Error('Required parameter request was null or undefined when calling saveUsingPOST.');
3775
+ }
3776
+ let headers = this.defaultHeaders;
3777
+ if (reqId !== undefined && reqId !== null) {
3778
+ headers = headers.set('reqId', String(reqId));
3779
+ }
3780
+ if (token !== undefined && token !== null) {
3781
+ headers = headers.set('token', String(token));
3782
+ }
3783
+ // to determine the Accept header
3784
+ let httpHeaderAccepts = [
3785
+ 'application/json'
3786
+ ];
3787
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3788
+ if (httpHeaderAcceptSelected != undefined) {
3789
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3790
+ }
3791
+ // to determine the Content-Type header
3792
+ const consumes = [
3793
+ 'application/json'
3794
+ ];
3795
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
3796
+ if (httpContentTypeSelected != undefined) {
3797
+ headers = headers.set('Content-Type', httpContentTypeSelected);
3798
+ }
3799
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/save`, request, {
3800
+ withCredentials: this.configuration.withCredentials,
3801
+ headers: headers,
3802
+ observe: observe,
3803
+ reportProgress: reportProgress
3804
+ });
3805
+ }
3806
+ uploadUsingPOST(advertiserId, creativeSetType, file, reqId, token, observe = 'body', reportProgress = false) {
3807
+ if (advertiserId === null || advertiserId === undefined) {
3808
+ throw new Error('Required parameter advertiserId was null or undefined when calling uploadUsingPOST.');
3809
+ }
3810
+ if (creativeSetType === null || creativeSetType === undefined) {
3811
+ throw new Error('Required parameter creativeSetType was null or undefined when calling uploadUsingPOST.');
3812
+ }
3813
+ if (file === null || file === undefined) {
3814
+ throw new Error('Required parameter file was null or undefined when calling uploadUsingPOST.');
3815
+ }
3816
+ let headers = this.defaultHeaders;
3817
+ if (reqId !== undefined && reqId !== null) {
3818
+ headers = headers.set('reqId', String(reqId));
3819
+ }
3820
+ if (token !== undefined && token !== null) {
3821
+ headers = headers.set('token', String(token));
3822
+ }
3823
+ // to determine the Accept header
3824
+ let httpHeaderAccepts = [
3825
+ 'application/json'
3826
+ ];
3827
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3828
+ if (httpHeaderAcceptSelected != undefined) {
3829
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3830
+ }
3831
+ // to determine the Content-Type header
3832
+ const consumes = [
3833
+ 'multipart/form-data'
3834
+ ];
3835
+ const canConsumeForm = this.canConsumeForm(consumes);
3836
+ let formParams;
3837
+ let useForm = false;
3838
+ let convertFormParamsToString = false;
3839
+ // use FormData to transmit files using content-type "multipart/form-data"
3840
+ // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
3841
+ useForm = canConsumeForm;
3842
+ if (useForm) {
3843
+ formParams = new FormData();
3844
+ }
3845
+ else {
3846
+ formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3847
+ }
3848
+ if (advertiserId !== undefined) {
3849
+ formParams = formParams.append('advertiserId', advertiserId) || formParams;
3850
+ }
3851
+ if (creativeSetType !== undefined) {
3852
+ formParams = formParams.append('creativeSetType', creativeSetType) || formParams;
3853
+ }
3854
+ if (file !== undefined) {
3855
+ formParams = formParams.append('file', file) || formParams;
3856
+ }
3857
+ return this.httpClient.post(`${this.basePath}/v2/api/creativesets/v2/upload`, convertFormParamsToString ? formParams.toString() : formParams, {
3858
+ withCredentials: this.configuration.withCredentials,
3859
+ headers: headers,
3860
+ observe: observe,
3861
+ reportProgress: reportProgress
3862
+ });
3863
+ }
3864
+ }
3865
+ 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 });
3866
+ CreativeAssetOptimizationControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService });
3867
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService, decorators: [{
3868
+ type: Injectable
3869
+ }], ctorParameters: function () {
3870
+ return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3871
+ type: Optional
3872
+ }, {
3873
+ type: Inject,
3874
+ args: [BASE_PATH]
3875
+ }] }, { type: Configuration, decorators: [{
3876
+ type: Optional
3877
+ }] }];
3878
+ } });
3879
+
3672
3880
  /**
3673
3881
  * Api Documentation
3674
3882
  * Api Documentation
@@ -11130,7 +11338,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11130
11338
  }] }];
11131
11339
  } });
11132
11340
 
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];
11341
+ 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];
11134
11342
 
11135
11343
  var ABTestingDTO;
11136
11344
  (function (ABTestingDTO) {
@@ -11233,7 +11441,8 @@ var AdvertiserAppSettingsDTO;
11233
11441
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11234
11442
  CLICKSIGNING: 'CLICK_SIGNING',
11235
11443
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11236
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11444
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11445
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11237
11446
  };
11238
11447
  AdvertiserAppSettingsDTO.TypeEnum = {
11239
11448
  BOOLEAN: 'BOOLEAN',
@@ -11274,6 +11483,15 @@ var AdvertiserCohortResponse;
11274
11483
  };
11275
11484
  })(AdvertiserCohortResponse || (AdvertiserCohortResponse = {}));
11276
11485
 
11486
+ var AdvertiserSettings;
11487
+ (function (AdvertiserSettings) {
11488
+ AdvertiserSettings.CreativeBorderTypeEnum = {
11489
+ NONE: 'NONE',
11490
+ BLACK: 'BLACK',
11491
+ BLUR: 'BLUR'
11492
+ };
11493
+ })(AdvertiserSettings || (AdvertiserSettings = {}));
11494
+
11277
11495
  var AppSettingsDTO;
11278
11496
  (function (AppSettingsDTO) {
11279
11497
  AppSettingsDTO.SettingsKeyEnum = {
@@ -11284,7 +11502,8 @@ var AppSettingsDTO;
11284
11502
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11285
11503
  CLICKSIGNING: 'CLICK_SIGNING',
11286
11504
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11287
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11505
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11506
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11288
11507
  };
11289
11508
  AppSettingsDTO.SettingsTypeEnum = {
11290
11509
  BOOLEAN: 'BOOLEAN',
@@ -11514,6 +11733,49 @@ var CohortCampaignStrategyDO;
11514
11733
  };
11515
11734
  })(CohortCampaignStrategyDO || (CohortCampaignStrategyDO = {}));
11516
11735
 
11736
+ var CreativeAssetOptimizationRequest;
11737
+ (function (CreativeAssetOptimizationRequest) {
11738
+ CreativeAssetOptimizationRequest.CreativeSetTypeEnum = {
11739
+ IMAGE: 'IMAGE',
11740
+ VIDEO: 'VIDEO',
11741
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
11742
+ ZIPPEDHTML: 'ZIPPED_HTML',
11743
+ NATIVEIMAGE: 'NATIVE_IMAGE',
11744
+ NATIVEVIDEO: 'NATIVE_VIDEO',
11745
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
11746
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
11747
+ DYNAMICHTML: 'DYNAMIC_HTML',
11748
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
11749
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
11750
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
11751
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
11752
+ NATIVEICON: 'NATIVE_ICON',
11753
+ ICON: 'ICON',
11754
+ CTVVIDEO: 'CTV_VIDEO',
11755
+ PLAYABLE: 'PLAYABLE'
11756
+ };
11757
+ })(CreativeAssetOptimizationRequest || (CreativeAssetOptimizationRequest = {}));
11758
+
11759
+ /**
11760
+ * Api Documentation
11761
+ * Api Documentation
11762
+ *
11763
+ * OpenAPI spec version: 1.0
11764
+ *
11765
+ *
11766
+ * NOTE: This class is auto generated by the swagger code generator program.
11767
+ * https://github.com/swagger-api/swagger-codegen.git
11768
+ * Do not edit the class manually.
11769
+ */
11770
+ var CreativeAssetUploadResponse;
11771
+ (function (CreativeAssetUploadResponse) {
11772
+ CreativeAssetUploadResponse.WarningCodeEnum = {
11773
+ INVALIDSIZE: 'INVALID_SIZE',
11774
+ ASPECTRATIOMISMATCH: 'ASPECT_RATIO_MISMATCH',
11775
+ LOWRESOLUTIONUPLOAD: 'LOW_RESOLUTION_UPLOAD'
11776
+ };
11777
+ })(CreativeAssetUploadResponse || (CreativeAssetUploadResponse = {}));
11778
+
11517
11779
  var CreativeCompactDTO;
11518
11780
  (function (CreativeCompactDTO) {
11519
11781
  CreativeCompactDTO.TypeEnum = {
@@ -11538,6 +11800,11 @@ var CreativeCompactDTO;
11538
11800
 
11539
11801
  var CreativeDTO;
11540
11802
  (function (CreativeDTO) {
11803
+ CreativeDTO.BorderTypeEnum = {
11804
+ NONE: 'NONE',
11805
+ BLACK: 'BLACK',
11806
+ BLUR: 'BLUR'
11807
+ };
11541
11808
  CreativeDTO.ContentTypeEnum = {
11542
11809
  ZIP: 'ZIP',
11543
11810
  JPG: 'JPG',
@@ -11606,6 +11873,11 @@ var CreativeDetails;
11606
11873
 
11607
11874
  var CreativeEntity;
11608
11875
  (function (CreativeEntity) {
11876
+ CreativeEntity.BorderTypeEnum = {
11877
+ NONE: 'NONE',
11878
+ BLACK: 'BLACK',
11879
+ BLUR: 'BLUR'
11880
+ };
11609
11881
  CreativeEntity.HybridAdTypeEnum = {
11610
11882
  STATIC: 'STATIC',
11611
11883
  DYNAMIC: 'DYNAMIC'
@@ -11847,6 +12119,44 @@ var CreativeSetResponse;
11847
12119
  };
11848
12120
  })(CreativeSetResponse || (CreativeSetResponse = {}));
11849
12121
 
12122
+ /**
12123
+ * Api Documentation
12124
+ * Api Documentation
12125
+ *
12126
+ * OpenAPI spec version: 1.0
12127
+ *
12128
+ *
12129
+ * NOTE: This class is auto generated by the swagger code generator program.
12130
+ * https://github.com/swagger-api/swagger-codegen.git
12131
+ * Do not edit the class manually.
12132
+ */
12133
+ var CreativeSizeMappingDTO;
12134
+ (function (CreativeSizeMappingDTO) {
12135
+ CreativeSizeMappingDTO.CreativeTypeEnum = {
12136
+ IMAGE: 'IMAGE',
12137
+ VIDEO: 'VIDEO',
12138
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12139
+ ZIPPEDHTML: 'ZIPPED_HTML',
12140
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12141
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12142
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12143
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12144
+ DYNAMICHTML: 'DYNAMIC_HTML',
12145
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12146
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12147
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12148
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12149
+ NATIVEICON: 'NATIVE_ICON',
12150
+ ICON: 'ICON',
12151
+ CTVVIDEO: 'CTV_VIDEO',
12152
+ PLAYABLE: 'PLAYABLE'
12153
+ };
12154
+ CreativeSizeMappingDTO.MappingTypeEnum = {
12155
+ EXACTFIT: 'EXACT_FIT',
12156
+ BORDER: 'BORDER'
12157
+ };
12158
+ })(CreativeSizeMappingDTO || (CreativeSizeMappingDTO = {}));
12159
+
11850
12160
  /**
11851
12161
  * Api Documentation
11852
12162
  * Api Documentation
@@ -12220,6 +12530,38 @@ var NotificationResponse;
12220
12530
  };
12221
12531
  })(NotificationResponse || (NotificationResponse = {}));
12222
12532
 
12533
+ /**
12534
+ * Api Documentation
12535
+ * Api Documentation
12536
+ *
12537
+ * OpenAPI spec version: 1.0
12538
+ *
12539
+ *
12540
+ * NOTE: This class is auto generated by the swagger code generator program.
12541
+ * https://github.com/swagger-api/swagger-codegen.git
12542
+ * Do not edit the class manually.
12543
+ */
12544
+ var OptimizationJobItemStatusDTO;
12545
+ (function (OptimizationJobItemStatusDTO) {
12546
+ OptimizationJobItemStatusDTO.StatusEnum = {
12547
+ PENDING: 'PENDING',
12548
+ PROCESSING: 'PROCESSING',
12549
+ COMPLETED: 'COMPLETED',
12550
+ FAILED: 'FAILED'
12551
+ };
12552
+ })(OptimizationJobItemStatusDTO || (OptimizationJobItemStatusDTO = {}));
12553
+
12554
+ var OptimizationJobStatusResponse;
12555
+ (function (OptimizationJobStatusResponse) {
12556
+ OptimizationJobStatusResponse.StatusEnum = {
12557
+ PENDING: 'PENDING',
12558
+ PROCESSING: 'PROCESSING',
12559
+ COMPLETED: 'COMPLETED',
12560
+ COMPLETEDWITHERRORS: 'COMPLETED_WITH_ERRORS',
12561
+ FAILED: 'FAILED'
12562
+ };
12563
+ })(OptimizationJobStatusResponse || (OptimizationJobStatusResponse = {}));
12564
+
12223
12565
  var OptimizationRuleAuditLogDTO;
12224
12566
  (function (OptimizationRuleAuditLogDTO) {
12225
12567
  OptimizationRuleAuditLogDTO.StateEnum = {
@@ -12560,6 +12902,30 @@ var SchedulerRequest;
12560
12902
  };
12561
12903
  })(SchedulerRequest || (SchedulerRequest = {}));
12562
12904
 
12905
+ /**
12906
+ * Api Documentation
12907
+ * Api Documentation
12908
+ *
12909
+ * OpenAPI spec version: 1.0
12910
+ *
12911
+ *
12912
+ * NOTE: This class is auto generated by the swagger code generator program.
12913
+ * https://github.com/swagger-api/swagger-codegen.git
12914
+ * Do not edit the class manually.
12915
+ */
12916
+ var SelectedTargetDTO;
12917
+ (function (SelectedTargetDTO) {
12918
+ SelectedTargetDTO.BorderTypeEnum = {
12919
+ NONE: 'NONE',
12920
+ BLACK: 'BLACK',
12921
+ BLUR: 'BLUR'
12922
+ };
12923
+ SelectedTargetDTO.MappingTypeEnum = {
12924
+ EXACTFIT: 'EXACT_FIT',
12925
+ BORDER: 'BORDER'
12926
+ };
12927
+ })(SelectedTargetDTO || (SelectedTargetDTO = {}));
12928
+
12563
12929
  var StrategyDTO;
12564
12930
  (function (StrategyDTO) {
12565
12931
  StrategyDTO.AuctionTypeTargetingEnum = {
@@ -12746,6 +13112,11 @@ var VastCreative;
12746
13112
  */
12747
13113
  var VideoAttributes;
12748
13114
  (function (VideoAttributes) {
13115
+ VideoAttributes.BorderTypeEnum = {
13116
+ NONE: 'NONE',
13117
+ BLACK: 'BLACK',
13118
+ BLUR: 'BLUR'
13119
+ };
12749
13120
  VideoAttributes.CompanionContentTypeEnum = {
12750
13121
  ZIP: 'ZIP',
12751
13122
  JPG: 'JPG',
@@ -12860,6 +13231,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
12860
13231
  CampaignControllerService,
12861
13232
  CatalogControllerService,
12862
13233
  ClickDestinationControllerService,
13234
+ CreativeAssetOptimizationControllerService,
12863
13235
  CreativeControllerService,
12864
13236
  CreativeSetsControllerService,
12865
13237
  CreativeTemplateThemesControllerService,
@@ -12900,6 +13272,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12900
13272
  CampaignControllerService,
12901
13273
  CatalogControllerService,
12902
13274
  ClickDestinationControllerService,
13275
+ CreativeAssetOptimizationControllerService,
12903
13276
  CreativeControllerService,
12904
13277
  CreativeSetsControllerService,
12905
13278
  CreativeTemplateThemesControllerService,
@@ -12936,5 +13309,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
12936
13309
  * Generated bundle index. Do not edit.
12937
13310
  */
12938
13311
 
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 };
13312
+ 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 };
12940
13313
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map