@revxui/api-clients-ts 1.1.489 → 1.1.490
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/creativeSetsV2Controller.service.d.ts +9 -9
- package/esm2020/api/creativeSetsV2Controller.service.mjs +1 -1
- package/esm2020/model/assetSelectionDTO.mjs +1 -1
- package/esm2020/model/creativeAssetUploadResponse.mjs +1 -1
- package/esm2020/model/creativeDTO.mjs +1 -6
- package/esm2020/model/creativeEntity.mjs +1 -6
- package/esm2020/model/optimizationJobStatusResponse.mjs +1 -1
- package/esm2020/model/videoAttributes.mjs +1 -6
- package/fesm2015/revxui-api-clients-ts.mjs +0 -15
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +0 -15
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/assetSelectionDTO.d.ts +1 -1
- package/model/creativeAssetUploadResponse.d.ts +1 -1
- package/model/creativeDTO.d.ts +0 -7
- package/model/creativeEntity.d.ts +0 -7
- package/model/optimizationJobStatusResponse.d.ts +1 -1
- package/model/videoAttributes.d.ts +0 -7
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export interface AssetSelectionDTO {
|
|
|
14
14
|
endCardType?: AssetSelectionDTO.EndCardTypeEnum;
|
|
15
15
|
isEndCard?: boolean;
|
|
16
16
|
selectedTargets?: Array<SelectedTargetDTO>;
|
|
17
|
-
uploadId?:
|
|
17
|
+
uploadId?: string;
|
|
18
18
|
}
|
|
19
19
|
export declare namespace AssetSelectionDTO {
|
|
20
20
|
type EndCardTypeEnum = 'IMAGE' | 'HTML';
|
package/model/creativeDTO.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export interface CreativeDTO {
|
|
|
23
23
|
advertiserId?: number;
|
|
24
24
|
archived?: boolean;
|
|
25
25
|
assetPreviewId?: number;
|
|
26
|
-
borderType?: CreativeDTO.BorderTypeEnum;
|
|
27
26
|
clickDestination?: ClickDestination;
|
|
28
27
|
content?: string;
|
|
29
28
|
contentType?: CreativeDTO.ContentTypeEnum;
|
|
@@ -73,12 +72,6 @@ export interface CreativeDTO {
|
|
|
73
72
|
videoUploadType?: CreativeDTO.VideoUploadTypeEnum;
|
|
74
73
|
}
|
|
75
74
|
export declare namespace CreativeDTO {
|
|
76
|
-
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
77
|
-
const BorderTypeEnum: {
|
|
78
|
-
NONE: BorderTypeEnum;
|
|
79
|
-
BLACK: BorderTypeEnum;
|
|
80
|
-
BLUR: BorderTypeEnum;
|
|
81
|
-
};
|
|
82
75
|
type ContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
|
|
83
76
|
const ContentTypeEnum: {
|
|
84
77
|
ZIP: ContentTypeEnum;
|
|
@@ -16,7 +16,6 @@ export interface CreativeEntity {
|
|
|
16
16
|
assetPreviewId?: number;
|
|
17
17
|
attributesId?: number;
|
|
18
18
|
bidResponseTestEnabled?: boolean;
|
|
19
|
-
borderType?: CreativeEntity.BorderTypeEnum;
|
|
20
19
|
cdnId?: number;
|
|
21
20
|
clickDestination?: number;
|
|
22
21
|
content?: string;
|
|
@@ -57,12 +56,6 @@ export interface CreativeEntity {
|
|
|
57
56
|
width?: number;
|
|
58
57
|
}
|
|
59
58
|
export declare namespace CreativeEntity {
|
|
60
|
-
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
61
|
-
const BorderTypeEnum: {
|
|
62
|
-
NONE: BorderTypeEnum;
|
|
63
|
-
BLACK: BorderTypeEnum;
|
|
64
|
-
BLUR: BorderTypeEnum;
|
|
65
|
-
};
|
|
66
59
|
type HybridAdTypeEnum = 'STATIC' | 'DYNAMIC';
|
|
67
60
|
const HybridAdTypeEnum: {
|
|
68
61
|
STATIC: HybridAdTypeEnum;
|
|
@@ -15,7 +15,7 @@ export interface OptimizationJobStatusResponse {
|
|
|
15
15
|
errorMessage?: string;
|
|
16
16
|
failedTargets?: number;
|
|
17
17
|
items?: Array<OptimizationJobItemStatusDTO>;
|
|
18
|
-
jobId?:
|
|
18
|
+
jobId?: string;
|
|
19
19
|
percentComplete?: number;
|
|
20
20
|
status?: OptimizationJobStatusResponse.StatusEnum;
|
|
21
21
|
totalTargets?: number;
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export interface VideoAttributes {
|
|
13
13
|
bitRate?: string;
|
|
14
|
-
borderType?: VideoAttributes.BorderTypeEnum;
|
|
15
14
|
companionContentType?: VideoAttributes.CompanionContentTypeEnum;
|
|
16
15
|
companionCreativeId?: number;
|
|
17
16
|
companionHeight?: number;
|
|
@@ -31,12 +30,6 @@ export interface VideoAttributes {
|
|
|
31
30
|
videoWidth?: number;
|
|
32
31
|
}
|
|
33
32
|
export declare namespace VideoAttributes {
|
|
34
|
-
type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
|
|
35
|
-
const BorderTypeEnum: {
|
|
36
|
-
NONE: BorderTypeEnum;
|
|
37
|
-
BLACK: BorderTypeEnum;
|
|
38
|
-
BLUR: BorderTypeEnum;
|
|
39
|
-
};
|
|
40
33
|
type CompanionContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
|
|
41
34
|
const CompanionContentTypeEnum: {
|
|
42
35
|
ZIP: CompanionContentTypeEnum;
|