@revxui/api-clients-ts 1.1.479 → 1.1.481

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 (35) 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 +64 -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 +177 -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/creativeDTO.mjs +6 -1
  14. package/esm2020/model/creativeEntity.mjs +6 -1
  15. package/esm2020/model/creativeSizeMappingDTO.mjs +43 -0
  16. package/esm2020/model/models.mjs +5 -1
  17. package/esm2020/model/optimizationJobItemStatusDTO.mjs +21 -0
  18. package/esm2020/model/optimizationJobStatusResponse.mjs +11 -0
  19. package/esm2020/model/videoAttributes.mjs +6 -1
  20. package/fesm2015/revxui-api-clients-ts.mjs +278 -4
  21. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  22. package/fesm2020/revxui-api-clients-ts.mjs +276 -4
  23. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  24. package/model/advertiserAppSettingsDTO.d.ts +2 -1
  25. package/model/advertiserSettings.d.ts +9 -0
  26. package/model/apiListResponseCreativeSizeMappingDTO.d.ts +16 -0
  27. package/model/appSettingsDTO.d.ts +2 -1
  28. package/model/creativeDTO.d.ts +7 -0
  29. package/model/creativeEntity.d.ts +7 -0
  30. package/model/creativeSizeMappingDTO.d.ts +59 -0
  31. package/model/models.d.ts +4 -0
  32. package/model/optimizationJobItemStatusDTO.d.ts +27 -0
  33. package/model/optimizationJobStatusResponse.d.ts +31 -0
  34. package/model/videoAttributes.d.ts +7 -0
  35. package/package.json +1 -1
@@ -3645,6 +3645,175 @@ 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/creatives/asset-optimization/jobs/${encodeURIComponent(String(jobId))}`, {
3709
+ withCredentials: this.configuration.withCredentials,
3710
+ headers: headers,
3711
+ observe: observe,
3712
+ reportProgress: reportProgress
3713
+ });
3714
+ }
3715
+ getSizeMappingConfigUsingGET(creativeType, licenseeId, 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
+ if (licenseeId !== undefined && licenseeId !== null) {
3724
+ queryParameters = queryParameters.set('licenseeId', licenseeId);
3725
+ }
3726
+ let headers = this.defaultHeaders;
3727
+ if (reqId !== undefined && reqId !== null) {
3728
+ headers = headers.set('reqId', String(reqId));
3729
+ }
3730
+ if (token !== undefined && token !== null) {
3731
+ headers = headers.set('token', String(token));
3732
+ }
3733
+ // to determine the Accept header
3734
+ let httpHeaderAccepts = [
3735
+ 'application/json'
3736
+ ];
3737
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3738
+ if (httpHeaderAcceptSelected != undefined) {
3739
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3740
+ }
3741
+ // to determine the Content-Type header
3742
+ const consumes = [];
3743
+ return this.httpClient.get(`${this.basePath}/v2/api/creatives/asset-optimization/size-mapping-config`, {
3744
+ params: queryParameters,
3745
+ withCredentials: this.configuration.withCredentials,
3746
+ headers: headers,
3747
+ observe: observe,
3748
+ reportProgress: reportProgress
3749
+ });
3750
+ }
3751
+ saveUsingPOST(originalFile, request, reqId, token, observe = 'body', reportProgress = false) {
3752
+ if (originalFile === null || originalFile === undefined) {
3753
+ throw new Error('Required parameter originalFile was null or undefined when calling saveUsingPOST.');
3754
+ }
3755
+ if (request === null || request === undefined) {
3756
+ throw new Error('Required parameter request was null or undefined when calling saveUsingPOST.');
3757
+ }
3758
+ let headers = this.defaultHeaders;
3759
+ if (reqId !== undefined && reqId !== null) {
3760
+ headers = headers.set('reqId', String(reqId));
3761
+ }
3762
+ if (token !== undefined && token !== null) {
3763
+ headers = headers.set('token', String(token));
3764
+ }
3765
+ // to determine the Accept header
3766
+ let httpHeaderAccepts = [
3767
+ 'application/json'
3768
+ ];
3769
+ const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
3770
+ if (httpHeaderAcceptSelected != undefined) {
3771
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
3772
+ }
3773
+ // to determine the Content-Type header
3774
+ const consumes = [
3775
+ 'multipart/form-data'
3776
+ ];
3777
+ const canConsumeForm = this.canConsumeForm(consumes);
3778
+ let formParams;
3779
+ let useForm = false;
3780
+ let convertFormParamsToString = false;
3781
+ // use FormData to transmit files using content-type "multipart/form-data"
3782
+ // see https://stackoverflow.com/questions/4007969/application-x-www-form-urlencoded-or-multipart-form-data
3783
+ useForm = canConsumeForm;
3784
+ if (useForm) {
3785
+ formParams = new FormData();
3786
+ }
3787
+ else {
3788
+ formParams = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
3789
+ }
3790
+ if (originalFile !== undefined) {
3791
+ formParams = formParams.append('originalFile', originalFile) || formParams;
3792
+ }
3793
+ if (request !== undefined) {
3794
+ formParams = formParams.append('request', request) || formParams;
3795
+ }
3796
+ return this.httpClient.post(`${this.basePath}/v2/api/creatives/asset-optimization/save`, convertFormParamsToString ? formParams.toString() : formParams, {
3797
+ withCredentials: this.configuration.withCredentials,
3798
+ headers: headers,
3799
+ observe: observe,
3800
+ reportProgress: reportProgress
3801
+ });
3802
+ }
3803
+ }
3804
+ 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 });
3805
+ CreativeAssetOptimizationControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService });
3806
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CreativeAssetOptimizationControllerService, decorators: [{
3807
+ type: Injectable
3808
+ }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
3809
+ type: Optional
3810
+ }, {
3811
+ type: Inject,
3812
+ args: [BASE_PATH]
3813
+ }] }, { type: Configuration, decorators: [{
3814
+ type: Optional
3815
+ }] }]; } });
3816
+
3648
3817
  /**
3649
3818
  * Api Documentation
3650
3819
  * Api Documentation
@@ -11066,7 +11235,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
11066
11235
  type: Optional
11067
11236
  }] }]; } });
11068
11237
 
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];
11238
+ 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
11239
 
11071
11240
  var ABTestingDTO;
11072
11241
  (function (ABTestingDTO) {
@@ -11193,7 +11362,8 @@ var AdvertiserAppSettingsDTO;
11193
11362
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11194
11363
  CLICKSIGNING: 'CLICK_SIGNING',
11195
11364
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11196
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11365
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11366
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11197
11367
  };
11198
11368
  AdvertiserAppSettingsDTO.TypeEnum = {
11199
11369
  BOOLEAN: 'BOOLEAN',
@@ -11258,6 +11428,15 @@ var AdvertiserCohortResponse;
11258
11428
  * Do not edit the class manually.
11259
11429
  */
11260
11430
 
11431
+ var AdvertiserSettings;
11432
+ (function (AdvertiserSettings) {
11433
+ AdvertiserSettings.CreativeBorderTypeEnum = {
11434
+ NONE: 'NONE',
11435
+ BLACK: 'BLACK',
11436
+ BLUR: 'BLUR'
11437
+ };
11438
+ })(AdvertiserSettings || (AdvertiserSettings = {}));
11439
+
11261
11440
  /**
11262
11441
  * Api Documentation
11263
11442
  * Api Documentation
@@ -11364,7 +11543,8 @@ var AppSettingsDTO;
11364
11543
  CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT',
11365
11544
  CLICKSIGNING: 'CLICK_SIGNING',
11366
11545
  SLACKCHANNELID: 'SLACK_CHANNEL_ID',
11367
- ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT'
11546
+ ENABLEAUDITLOGSREPORT: 'ENABLE_AUDIT_LOGS_REPORT',
11547
+ CREATIVEBORDERTYPE: 'CREATIVE_BORDER_TYPE'
11368
11548
  };
11369
11549
  AppSettingsDTO.SettingsTypeEnum = {
11370
11550
  BOOLEAN: 'BOOLEAN',
@@ -11906,6 +12086,11 @@ var CreativeCompactDTO;
11906
12086
 
11907
12087
  var CreativeDTO;
11908
12088
  (function (CreativeDTO) {
12089
+ CreativeDTO.BorderTypeEnum = {
12090
+ NONE: 'NONE',
12091
+ BLACK: 'BLACK',
12092
+ BLUR: 'BLUR'
12093
+ };
11909
12094
  CreativeDTO.ContentTypeEnum = {
11910
12095
  ZIP: 'ZIP',
11911
12096
  JPG: 'JPG',
@@ -11974,6 +12159,11 @@ var CreativeDetails;
11974
12159
 
11975
12160
  var CreativeEntity;
11976
12161
  (function (CreativeEntity) {
12162
+ CreativeEntity.BorderTypeEnum = {
12163
+ NONE: 'NONE',
12164
+ BLACK: 'BLACK',
12165
+ BLUR: 'BLUR'
12166
+ };
11977
12167
  CreativeEntity.HybridAdTypeEnum = {
11978
12168
  STATIC: 'STATIC',
11979
12169
  DYNAMIC: 'DYNAMIC'
@@ -12239,6 +12429,49 @@ var CreativeSetResponse;
12239
12429
  };
12240
12430
  })(CreativeSetResponse || (CreativeSetResponse = {}));
12241
12431
 
12432
+ /**
12433
+ * Api Documentation
12434
+ * Api Documentation
12435
+ *
12436
+ * OpenAPI spec version: 1.0
12437
+ *
12438
+ *
12439
+ * NOTE: This class is auto generated by the swagger code generator program.
12440
+ * https://github.com/swagger-api/swagger-codegen.git
12441
+ * Do not edit the class manually.
12442
+ */
12443
+ var CreativeSizeMappingDTO;
12444
+ (function (CreativeSizeMappingDTO) {
12445
+ CreativeSizeMappingDTO.BorderOrientationEnum = {
12446
+ NONE: 'NONE',
12447
+ TOPBOTTOM: 'TOP_BOTTOM',
12448
+ LEFTRIGHT: 'LEFT_RIGHT'
12449
+ };
12450
+ CreativeSizeMappingDTO.CreativeTypeEnum = {
12451
+ IMAGE: 'IMAGE',
12452
+ VIDEO: 'VIDEO',
12453
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
12454
+ ZIPPEDHTML: 'ZIPPED_HTML',
12455
+ NATIVEIMAGE: 'NATIVE_IMAGE',
12456
+ NATIVEVIDEO: 'NATIVE_VIDEO',
12457
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
12458
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
12459
+ DYNAMICHTML: 'DYNAMIC_HTML',
12460
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
12461
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
12462
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
12463
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS',
12464
+ NATIVEICON: 'NATIVE_ICON',
12465
+ ICON: 'ICON',
12466
+ CTVVIDEO: 'CTV_VIDEO',
12467
+ PLAYABLE: 'PLAYABLE'
12468
+ };
12469
+ CreativeSizeMappingDTO.MappingTypeEnum = {
12470
+ EXACTFIT: 'EXACT_FIT',
12471
+ BORDER: 'BORDER'
12472
+ };
12473
+ })(CreativeSizeMappingDTO || (CreativeSizeMappingDTO = {}));
12474
+
12242
12475
  /**
12243
12476
  * Api Documentation
12244
12477
  * Api Documentation
@@ -13188,6 +13421,38 @@ var NotificationResponse;
13188
13421
  * Do not edit the class manually.
13189
13422
  */
13190
13423
 
13424
+ /**
13425
+ * Api Documentation
13426
+ * Api Documentation
13427
+ *
13428
+ * OpenAPI spec version: 1.0
13429
+ *
13430
+ *
13431
+ * NOTE: This class is auto generated by the swagger code generator program.
13432
+ * https://github.com/swagger-api/swagger-codegen.git
13433
+ * Do not edit the class manually.
13434
+ */
13435
+ var OptimizationJobItemStatusDTO;
13436
+ (function (OptimizationJobItemStatusDTO) {
13437
+ OptimizationJobItemStatusDTO.StatusEnum = {
13438
+ PENDING: 'PENDING',
13439
+ PROCESSING: 'PROCESSING',
13440
+ COMPLETED: 'COMPLETED',
13441
+ FAILED: 'FAILED'
13442
+ };
13443
+ })(OptimizationJobItemStatusDTO || (OptimizationJobItemStatusDTO = {}));
13444
+
13445
+ var OptimizationJobStatusResponse;
13446
+ (function (OptimizationJobStatusResponse) {
13447
+ OptimizationJobStatusResponse.StatusEnum = {
13448
+ PENDING: 'PENDING',
13449
+ PROCESSING: 'PROCESSING',
13450
+ COMPLETED: 'COMPLETED',
13451
+ COMPLETEDWITHERRORS: 'COMPLETED_WITH_ERRORS',
13452
+ FAILED: 'FAILED'
13453
+ };
13454
+ })(OptimizationJobStatusResponse || (OptimizationJobStatusResponse = {}));
13455
+
13191
13456
  var OptimizationRuleAuditLogDTO;
13192
13457
  (function (OptimizationRuleAuditLogDTO) {
13193
13458
  OptimizationRuleAuditLogDTO.StateEnum = {
@@ -14170,6 +14435,11 @@ var VastCreative;
14170
14435
  */
14171
14436
  var VideoAttributes;
14172
14437
  (function (VideoAttributes) {
14438
+ VideoAttributes.BorderTypeEnum = {
14439
+ NONE: 'NONE',
14440
+ BLACK: 'BLACK',
14441
+ BLUR: 'BLUR'
14442
+ };
14173
14443
  VideoAttributes.CompanionContentTypeEnum = {
14174
14444
  ZIP: 'ZIP',
14175
14445
  JPG: 'JPG',
@@ -14332,6 +14602,7 @@ ApiModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.
14332
14602
  CampaignControllerService,
14333
14603
  CatalogControllerService,
14334
14604
  ClickDestinationControllerService,
14605
+ CreativeAssetOptimizationControllerService,
14335
14606
  CreativeControllerService,
14336
14607
  CreativeSetsControllerService,
14337
14608
  CreativeTemplateThemesControllerService,
@@ -14372,6 +14643,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14372
14643
  CampaignControllerService,
14373
14644
  CatalogControllerService,
14374
14645
  ClickDestinationControllerService,
14646
+ CreativeAssetOptimizationControllerService,
14375
14647
  CreativeControllerService,
14376
14648
  CreativeSetsControllerService,
14377
14649
  CreativeTemplateThemesControllerService,
@@ -14406,5 +14678,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
14406
14678
  * Generated bundle index. Do not edit.
14407
14679
  */
14408
14680
 
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 };
14681
+ 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, 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, SliceXControllerService, StrategyControllerService, StrategyDTO, StrategyInlineDTO, StrategyQuickEditDTO, StrategyRuleResponse, StrategyTemplateControllerService, StrategyTemplateDTO, StrategyTemplateResponse, TemplateVariablesDTO, UILoggerControllerService, UserPreferenceControllerService, VastCreative, VideoAttributes, VideoProperties, WhitelabelingEntity };
14410
14682
  //# sourceMappingURL=revxui-api-clients-ts.mjs.map