@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.
- package/README.md +2 -2
- package/api/api.d.ts +3 -1
- package/api/appSettingsController.service.d.ts +3 -3
- package/api/creativeSetsController.service.d.ts +3 -3
- package/api/creativeSetsV2Controller.service.d.ts +97 -0
- package/api/pixelController.service.d.ts +3 -3
- package/esm2020/api/adminController.service.mjs +2 -2
- package/esm2020/api/advertiserController.service.mjs +2 -2
- package/esm2020/api/api.mjs +4 -2
- package/esm2020/api/appSettingsController.service.mjs +2 -2
- package/esm2020/api/appsFlyerController.service.mjs +2 -2
- package/esm2020/api/audienceController.service.mjs +2 -2
- package/esm2020/api/auditController.service.mjs +2 -2
- package/esm2020/api/bidFunnelController.service.mjs +2 -2
- package/esm2020/api/bulkStrategyController.service.mjs +2 -2
- package/esm2020/api/cSSThemeController_.service.mjs +2 -2
- package/esm2020/api/campaignController.service.mjs +2 -2
- package/esm2020/api/catalogController.service.mjs +2 -2
- package/esm2020/api/clickDestinationController.service.mjs +2 -2
- package/esm2020/api/creativeController.service.mjs +2 -2
- package/esm2020/api/creativeSetsController.service.mjs +5 -5
- package/esm2020/api/creativeSetsV2Controller.service.mjs +251 -0
- package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
- package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
- package/esm2020/api/customerReportingController.service.mjs +2 -2
- package/esm2020/api/dCOVideoSettingsController.service.mjs +2 -2
- package/esm2020/api/dashboardController.service.mjs +2 -2
- package/esm2020/api/experimentsController.service.mjs +2 -2
- package/esm2020/api/notificationsController.service.mjs +2 -2
- package/esm2020/api/pixelController.service.mjs +5 -5
- package/esm2020/api/reportController.service.mjs +2 -2
- package/esm2020/api/reportingController.service.mjs +2 -2
- package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
- package/esm2020/api/safeguardController.service.mjs +2 -2
- package/esm2020/api/sliceXController.service.mjs +2 -2
- package/esm2020/api/strategyController.service.mjs +2 -2
- package/esm2020/api/strategyTemplateController.service.mjs +2 -2
- package/esm2020/api/uILoggerController.service.mjs +2 -2
- package/esm2020/api/userPreferenceController.service.mjs +2 -2
- package/esm2020/api.module.mjs +4 -1
- package/esm2020/model/advertiserAppSettingsDTO.mjs +3 -2
- package/esm2020/model/advertiserSettings.mjs +9 -2
- package/esm2020/model/apiListResponseCreativeSizeMappingDTO.mjs +2 -0
- package/esm2020/model/appSettingsDTO.mjs +3 -2
- package/esm2020/model/assetSelectionDTO.mjs +8 -0
- package/esm2020/model/creativeAssetOptimizationRequest.mjs +23 -0
- package/esm2020/model/creativeAssetUploadResponse.mjs +20 -0
- package/esm2020/model/creativeDTO.mjs +6 -1
- package/esm2020/model/creativeEntity.mjs +6 -1
- package/esm2020/model/creativeSetDetails.mjs +1 -1
- package/esm2020/model/creativeSetPerformanceList.mjs +1 -1
- package/esm2020/model/creativeSizeMappingDTO.mjs +38 -0
- package/esm2020/model/models.mjs +9 -1
- package/esm2020/model/optimizationJobItemStatusDTO.mjs +21 -0
- package/esm2020/model/optimizationJobStatusResponse.mjs +11 -0
- package/esm2020/model/selectedTargetDTO.mjs +24 -0
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/esm2020/model/videoAttributes.mjs +6 -1
- package/fesm2015/revxui-api-clients-ts.mjs +460 -42
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +458 -42
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/advertiserAppSettingsDTO.d.ts +2 -1
- package/model/advertiserSettings.d.ts +9 -0
- package/model/apiListResponseCreativeSizeMappingDTO.d.ts +16 -0
- package/model/appSettingsDTO.d.ts +2 -1
- package/model/assetSelectionDTO.d.ts +25 -0
- package/model/creativeAssetOptimizationRequest.d.ts +41 -0
- package/model/creativeAssetUploadResponse.d.ts +26 -0
- package/model/creativeDTO.d.ts +7 -0
- package/model/creativeEntity.d.ts +7 -0
- package/model/creativeSetDetails.d.ts +1 -0
- package/model/creativeSetPerformanceList.d.ts +1 -0
- package/model/creativeSizeMappingDTO.d.ts +47 -0
- package/model/models.d.ts +8 -0
- package/model/optimizationJobItemStatusDTO.d.ts +27 -0
- package/model/optimizationJobStatusResponse.d.ts +32 -0
- package/model/selectedTargetDTO.d.ts +30 -0
- package/model/strategyDTO.d.ts +0 -1
- package/model/videoAttributes.d.ts +7 -0
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ export interface AdvertiserAppSettingsDTO {
|
|
|
15
15
|
value?: string;
|
|
16
16
|
}
|
|
17
17
|
export declare namespace AdvertiserAppSettingsDTO {
|
|
18
|
-
type KeyEnum = 'FEED_KEY' | 'LIFT_TEST_ACTIVE' | 'EVENT_FILTER_ALLOWED' | 'SKU_ALLOWED_CHARS' | 'TRANSACTION_CURRENCY' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT';
|
|
18
|
+
type KeyEnum = 'FEED_KEY' | 'LIFT_TEST_ACTIVE' | 'EVENT_FILTER_ALLOWED' | 'SKU_ALLOWED_CHARS' | 'TRANSACTION_CURRENCY' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT' | 'CREATIVE_BORDER_TYPE';
|
|
19
19
|
const KeyEnum: {
|
|
20
20
|
FEEDKEY: KeyEnum;
|
|
21
21
|
LIFTTESTACTIVE: KeyEnum;
|
|
@@ -26,6 +26,7 @@ export declare namespace AdvertiserAppSettingsDTO {
|
|
|
26
26
|
CLICKSIGNING: KeyEnum;
|
|
27
27
|
SLACKCHANNELID: KeyEnum;
|
|
28
28
|
ENABLEAUDITLOGSREPORT: KeyEnum;
|
|
29
|
+
CREATIVEBORDERTYPE: KeyEnum;
|
|
29
30
|
};
|
|
30
31
|
type TypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT';
|
|
31
32
|
const TypeEnum: {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { BaseModel } from './baseModel';
|
|
13
13
|
export interface AdvertiserSettings {
|
|
14
14
|
advertiserId?: number;
|
|
15
|
+
creativeBorderType?: AdvertiserSettings.CreativeBorderTypeEnum;
|
|
15
16
|
creativeNameFormat?: string;
|
|
16
17
|
dateFormat?: string;
|
|
17
18
|
eventFilterAllowed?: boolean;
|
|
@@ -25,3 +26,11 @@ export interface AdvertiserSettings {
|
|
|
25
26
|
slackChannelId?: string;
|
|
26
27
|
transactionCurrency?: BaseModel;
|
|
27
28
|
}
|
|
29
|
+
export declare namespace AdvertiserSettings {
|
|
30
|
+
type CreativeBorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
31
|
+
const CreativeBorderTypeEnum: {
|
|
32
|
+
NONE: CreativeBorderTypeEnum;
|
|
33
|
+
BLACK: CreativeBorderTypeEnum;
|
|
34
|
+
BLUR: CreativeBorderTypeEnum;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CreativeSizeMappingDTO } from './creativeSizeMappingDTO';
|
|
13
|
+
export interface ApiListResponseCreativeSizeMappingDTO {
|
|
14
|
+
data?: Array<CreativeSizeMappingDTO>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
16
|
+
}
|
|
@@ -21,7 +21,7 @@ export interface AppSettingsDTO {
|
|
|
21
21
|
settingsValue?: string;
|
|
22
22
|
}
|
|
23
23
|
export declare namespace AppSettingsDTO {
|
|
24
|
-
type SettingsKeyEnum = 'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT';
|
|
24
|
+
type SettingsKeyEnum = 'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT' | 'CREATIVE_BORDER_TYPE';
|
|
25
25
|
const SettingsKeyEnum: {
|
|
26
26
|
LOGOLINK: SettingsKeyEnum;
|
|
27
27
|
FALLBACKIMGLINK: SettingsKeyEnum;
|
|
@@ -31,6 +31,7 @@ export declare namespace AppSettingsDTO {
|
|
|
31
31
|
CLICKSIGNING: SettingsKeyEnum;
|
|
32
32
|
SLACKCHANNELID: SettingsKeyEnum;
|
|
33
33
|
ENABLEAUDITLOGSREPORT: SettingsKeyEnum;
|
|
34
|
+
CREATIVEBORDERTYPE: SettingsKeyEnum;
|
|
34
35
|
};
|
|
35
36
|
type SettingsTypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT';
|
|
36
37
|
const SettingsTypeEnum: {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { SelectedTargetDTO } from './selectedTargetDTO';
|
|
13
|
+
export interface AssetSelectionDTO {
|
|
14
|
+
endCardType?: AssetSelectionDTO.EndCardTypeEnum;
|
|
15
|
+
isEndCard?: boolean;
|
|
16
|
+
selectedTargets?: Array<SelectedTargetDTO>;
|
|
17
|
+
uploadId?: number;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace AssetSelectionDTO {
|
|
20
|
+
type EndCardTypeEnum = 'IMAGE' | 'HTML';
|
|
21
|
+
const EndCardTypeEnum: {
|
|
22
|
+
IMAGE: EndCardTypeEnum;
|
|
23
|
+
HTML: EndCardTypeEnum;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AssetSelectionDTO } from './assetSelectionDTO';
|
|
13
|
+
import { CreativeSetRequest } from './creativeSetRequest';
|
|
14
|
+
export interface CreativeAssetOptimizationRequest {
|
|
15
|
+
advertiserId?: number;
|
|
16
|
+
assets?: Array<AssetSelectionDTO>;
|
|
17
|
+
creativeSetRequest?: CreativeSetRequest;
|
|
18
|
+
creativeSetType?: CreativeAssetOptimizationRequest.CreativeSetTypeEnum;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace CreativeAssetOptimizationRequest {
|
|
21
|
+
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
|
|
22
|
+
const CreativeSetTypeEnum: {
|
|
23
|
+
IMAGE: CreativeSetTypeEnum;
|
|
24
|
+
VIDEO: CreativeSetTypeEnum;
|
|
25
|
+
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
26
|
+
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
27
|
+
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
28
|
+
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
29
|
+
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
30
|
+
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
31
|
+
DYNAMICHTML: CreativeSetTypeEnum;
|
|
32
|
+
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
33
|
+
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
34
|
+
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
35
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
36
|
+
NATIVEICON: CreativeSetTypeEnum;
|
|
37
|
+
ICON: CreativeSetTypeEnum;
|
|
38
|
+
CTVVIDEO: CreativeSetTypeEnum;
|
|
39
|
+
PLAYABLE: CreativeSetTypeEnum;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreativeAssetUploadResponse {
|
|
13
|
+
sourceHeight?: number;
|
|
14
|
+
sourceWidth?: number;
|
|
15
|
+
uploadId?: number;
|
|
16
|
+
warningCode?: CreativeAssetUploadResponse.WarningCodeEnum;
|
|
17
|
+
warningMessage?: string;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace CreativeAssetUploadResponse {
|
|
20
|
+
type WarningCodeEnum = 'INVALID_SIZE' | 'ASPECT_RATIO_MISMATCH' | 'LOW_RESOLUTION_UPLOAD';
|
|
21
|
+
const WarningCodeEnum: {
|
|
22
|
+
INVALIDSIZE: WarningCodeEnum;
|
|
23
|
+
ASPECTRATIOMISMATCH: WarningCodeEnum;
|
|
24
|
+
LOWRESOLUTIONUPLOAD: WarningCodeEnum;
|
|
25
|
+
};
|
|
26
|
+
}
|
package/model/creativeDTO.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface CreativeDTO {
|
|
|
23
23
|
advertiserId?: number;
|
|
24
24
|
archived?: boolean;
|
|
25
25
|
assetPreviewId?: number;
|
|
26
|
+
borderType?: CreativeDTO.BorderTypeEnum;
|
|
26
27
|
clickDestination?: ClickDestination;
|
|
27
28
|
content?: string;
|
|
28
29
|
contentType?: CreativeDTO.ContentTypeEnum;
|
|
@@ -72,6 +73,12 @@ export interface CreativeDTO {
|
|
|
72
73
|
videoUploadType?: CreativeDTO.VideoUploadTypeEnum;
|
|
73
74
|
}
|
|
74
75
|
export declare namespace CreativeDTO {
|
|
76
|
+
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
77
|
+
const BorderTypeEnum: {
|
|
78
|
+
NONE: BorderTypeEnum;
|
|
79
|
+
BLACK: BorderTypeEnum;
|
|
80
|
+
BLUR: BorderTypeEnum;
|
|
81
|
+
};
|
|
75
82
|
type ContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
|
|
76
83
|
const ContentTypeEnum: {
|
|
77
84
|
ZIP: ContentTypeEnum;
|
|
@@ -16,6 +16,7 @@ export interface CreativeEntity {
|
|
|
16
16
|
assetPreviewId?: number;
|
|
17
17
|
attributesId?: number;
|
|
18
18
|
bidResponseTestEnabled?: boolean;
|
|
19
|
+
borderType?: CreativeEntity.BorderTypeEnum;
|
|
19
20
|
cdnId?: number;
|
|
20
21
|
clickDestination?: number;
|
|
21
22
|
content?: string;
|
|
@@ -56,6 +57,12 @@ export interface CreativeEntity {
|
|
|
56
57
|
width?: number;
|
|
57
58
|
}
|
|
58
59
|
export declare namespace CreativeEntity {
|
|
60
|
+
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
61
|
+
const BorderTypeEnum: {
|
|
62
|
+
NONE: BorderTypeEnum;
|
|
63
|
+
BLACK: BorderTypeEnum;
|
|
64
|
+
BLUR: BorderTypeEnum;
|
|
65
|
+
};
|
|
59
66
|
type HybridAdTypeEnum = 'STATIC' | 'DYNAMIC';
|
|
60
67
|
const HybridAdTypeEnum: {
|
|
61
68
|
STATIC: HybridAdTypeEnum;
|
|
@@ -46,6 +46,7 @@ export interface CreativeSetDetails {
|
|
|
46
46
|
strategyList?: Array<BaseModel>;
|
|
47
47
|
theme?: BaseModel;
|
|
48
48
|
type?: CreativeSetDetails.TypeEnum;
|
|
49
|
+
version?: number;
|
|
49
50
|
}
|
|
50
51
|
export declare namespace CreativeSetDetails {
|
|
51
52
|
type TypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface CreativeSizeMappingDTO {
|
|
13
|
+
creativeType?: CreativeSizeMappingDTO.CreativeTypeEnum;
|
|
14
|
+
id?: number;
|
|
15
|
+
mappingType?: CreativeSizeMappingDTO.MappingTypeEnum;
|
|
16
|
+
sourceHeight?: number;
|
|
17
|
+
sourceWidth?: number;
|
|
18
|
+
targetHeight?: number;
|
|
19
|
+
targetWidth?: number;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace CreativeSizeMappingDTO {
|
|
22
|
+
type CreativeTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
|
|
23
|
+
const CreativeTypeEnum: {
|
|
24
|
+
IMAGE: CreativeTypeEnum;
|
|
25
|
+
VIDEO: CreativeTypeEnum;
|
|
26
|
+
THIRDPARTYADTAGS: CreativeTypeEnum;
|
|
27
|
+
ZIPPEDHTML: CreativeTypeEnum;
|
|
28
|
+
NATIVEIMAGE: CreativeTypeEnum;
|
|
29
|
+
NATIVEVIDEO: CreativeTypeEnum;
|
|
30
|
+
DYNAMICIMAGE: CreativeTypeEnum;
|
|
31
|
+
DYNAMICMACRO: CreativeTypeEnum;
|
|
32
|
+
DYNAMICHTML: CreativeTypeEnum;
|
|
33
|
+
DYNAMICVIDEO: CreativeTypeEnum;
|
|
34
|
+
HYBRIDSTATICAD: CreativeTypeEnum;
|
|
35
|
+
HYBRIDDYNAMICAD: CreativeTypeEnum;
|
|
36
|
+
THIRDPARTYVIDEOADTAGS: CreativeTypeEnum;
|
|
37
|
+
NATIVEICON: CreativeTypeEnum;
|
|
38
|
+
ICON: CreativeTypeEnum;
|
|
39
|
+
CTVVIDEO: CreativeTypeEnum;
|
|
40
|
+
PLAYABLE: CreativeTypeEnum;
|
|
41
|
+
};
|
|
42
|
+
type MappingTypeEnum = 'EXACT_FIT' | 'BORDER';
|
|
43
|
+
const MappingTypeEnum: {
|
|
44
|
+
EXACTFIT: MappingTypeEnum;
|
|
45
|
+
BORDER: MappingTypeEnum;
|
|
46
|
+
};
|
|
47
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export * from './apiListResponseCreativeDTO';
|
|
|
35
35
|
export * from './apiListResponseCreativePerformanceList';
|
|
36
36
|
export * from './apiListResponseCreativeSetDashboardMetric';
|
|
37
37
|
export * from './apiListResponseCreativeSetPerformanceList';
|
|
38
|
+
export * from './apiListResponseCreativeSizeMappingDTO';
|
|
38
39
|
export * from './apiListResponseCreativeTemplateDTO';
|
|
39
40
|
export * from './apiListResponseHotstarNativeFileRequest';
|
|
40
41
|
export * from './apiListResponseMacro';
|
|
@@ -186,6 +187,7 @@ export * from './apiResponseObjectlong';
|
|
|
186
187
|
export * from './apiResponseObjectstring';
|
|
187
188
|
export * from './appSettingsDTO';
|
|
188
189
|
export * from './appSettingsPropertyDTO';
|
|
190
|
+
export * from './assetSelectionDTO';
|
|
189
191
|
export * from './auctionTypeEditField';
|
|
190
192
|
export * from './audienceAccessDTO';
|
|
191
193
|
export * from './audienceAnalysisRequest';
|
|
@@ -242,6 +244,8 @@ export * from './contentGenre';
|
|
|
242
244
|
export * from './contentLanguage';
|
|
243
245
|
export * from './creative';
|
|
244
246
|
export * from './creativeAssetEntity';
|
|
247
|
+
export * from './creativeAssetOptimizationRequest';
|
|
248
|
+
export * from './creativeAssetUploadResponse';
|
|
245
249
|
export * from './creativeCompactDTO';
|
|
246
250
|
export * from './creativeDTO';
|
|
247
251
|
export * from './creativeDetails';
|
|
@@ -263,6 +267,7 @@ export * from './creativeSetPerformanceList';
|
|
|
263
267
|
export * from './creativeSetRequest';
|
|
264
268
|
export * from './creativeSetRescheduleRequest';
|
|
265
269
|
export * from './creativeSetResponse';
|
|
270
|
+
export * from './creativeSizeMappingDTO';
|
|
266
271
|
export * from './creativeStrategyAssociationStatus';
|
|
267
272
|
export * from './creativeTemplateDTO';
|
|
268
273
|
export * from './creativeTemplatesMetadataDTO';
|
|
@@ -374,6 +379,8 @@ export * from './nativeAssetPojo';
|
|
|
374
379
|
export * from './notificationListResponseNotificationResponse';
|
|
375
380
|
export * from './notificationResponse';
|
|
376
381
|
export * from './onDayCohortData';
|
|
382
|
+
export * from './optimizationJobItemStatusDTO';
|
|
383
|
+
export * from './optimizationJobStatusResponse';
|
|
377
384
|
export * from './optimizationRuleAuditLogDTO';
|
|
378
385
|
export * from './optimizationRuleAuditLogDTOList';
|
|
379
386
|
export * from './optimizationRuleDTO';
|
|
@@ -414,6 +421,7 @@ export * from './safeguardResponseDTO';
|
|
|
414
421
|
export * from './safeguardRuleMasterEntity';
|
|
415
422
|
export * from './schedulerRequest';
|
|
416
423
|
export * from './searchRequest';
|
|
424
|
+
export * from './selectedTargetDTO';
|
|
417
425
|
export * from './siteListDTO';
|
|
418
426
|
export * from './siteListRequest';
|
|
419
427
|
export * from './siteModel';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface OptimizationJobItemStatusDTO {
|
|
13
|
+
errorMessage?: string;
|
|
14
|
+
generatedUrl?: string;
|
|
15
|
+
status?: OptimizationJobItemStatusDTO.StatusEnum;
|
|
16
|
+
targetHeight?: number;
|
|
17
|
+
targetWidth?: number;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace OptimizationJobItemStatusDTO {
|
|
20
|
+
type StatusEnum = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED';
|
|
21
|
+
const StatusEnum: {
|
|
22
|
+
PENDING: StatusEnum;
|
|
23
|
+
PROCESSING: StatusEnum;
|
|
24
|
+
COMPLETED: StatusEnum;
|
|
25
|
+
FAILED: StatusEnum;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { OptimizationJobItemStatusDTO } from './optimizationJobItemStatusDTO';
|
|
13
|
+
export interface OptimizationJobStatusResponse {
|
|
14
|
+
completedTargets?: number;
|
|
15
|
+
errorMessage?: string;
|
|
16
|
+
failedTargets?: number;
|
|
17
|
+
items?: Array<OptimizationJobItemStatusDTO>;
|
|
18
|
+
jobId?: number;
|
|
19
|
+
percentComplete?: number;
|
|
20
|
+
status?: OptimizationJobStatusResponse.StatusEnum;
|
|
21
|
+
totalTargets?: number;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace OptimizationJobStatusResponse {
|
|
24
|
+
type StatusEnum = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'COMPLETED_WITH_ERRORS' | 'FAILED';
|
|
25
|
+
const StatusEnum: {
|
|
26
|
+
PENDING: StatusEnum;
|
|
27
|
+
PROCESSING: StatusEnum;
|
|
28
|
+
COMPLETED: StatusEnum;
|
|
29
|
+
COMPLETEDWITHERRORS: StatusEnum;
|
|
30
|
+
FAILED: StatusEnum;
|
|
31
|
+
};
|
|
32
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface SelectedTargetDTO {
|
|
13
|
+
borderType?: SelectedTargetDTO.BorderTypeEnum;
|
|
14
|
+
height?: number;
|
|
15
|
+
mappingType?: SelectedTargetDTO.MappingTypeEnum;
|
|
16
|
+
width?: number;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace SelectedTargetDTO {
|
|
19
|
+
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
20
|
+
const BorderTypeEnum: {
|
|
21
|
+
NONE: BorderTypeEnum;
|
|
22
|
+
BLACK: BorderTypeEnum;
|
|
23
|
+
BLUR: BorderTypeEnum;
|
|
24
|
+
};
|
|
25
|
+
type MappingTypeEnum = 'EXACT_FIT' | 'BORDER';
|
|
26
|
+
const MappingTypeEnum: {
|
|
27
|
+
EXACTFIT: MappingTypeEnum;
|
|
28
|
+
BORDER: MappingTypeEnum;
|
|
29
|
+
};
|
|
30
|
+
}
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export interface VideoAttributes {
|
|
13
13
|
bitRate?: string;
|
|
14
|
+
borderType?: VideoAttributes.BorderTypeEnum;
|
|
14
15
|
companionContentType?: VideoAttributes.CompanionContentTypeEnum;
|
|
15
16
|
companionCreativeId?: number;
|
|
16
17
|
companionHeight?: number;
|
|
@@ -30,6 +31,12 @@ export interface VideoAttributes {
|
|
|
30
31
|
videoWidth?: number;
|
|
31
32
|
}
|
|
32
33
|
export declare namespace VideoAttributes {
|
|
34
|
+
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
35
|
+
const BorderTypeEnum: {
|
|
36
|
+
NONE: BorderTypeEnum;
|
|
37
|
+
BLACK: BorderTypeEnum;
|
|
38
|
+
BLUR: BorderTypeEnum;
|
|
39
|
+
};
|
|
33
40
|
type CompanionContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
|
|
34
41
|
const CompanionContentTypeEnum: {
|
|
35
42
|
ZIP: CompanionContentTypeEnum;
|