@revxui/api-clients-ts 0.10.353 → 0.10.355
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/creativeController.service.d.ts +14 -0
- package/api/strategyController.service.d.ts +13 -0
- package/bundles/revxui-api-clients-ts.umd.js +106 -6
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/creativeController.service.js +35 -1
- package/esm2015/api/strategyController.service.js +38 -1
- package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
- package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
- package/esm2015/model/creativeDetails.js +19 -2
- package/esm2015/model/creativeSetDashboardMetric.js +3 -2
- package/esm2015/model/creativeSetDetails.js +3 -2
- package/esm2015/model/creativeSetRequest.js +3 -2
- package/esm2015/model/creativeSetResponse.js +3 -2
- package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
- package/esm2015/model/models.js +4 -1
- package/esm2015/model/sizeWithPreview.js +13 -0
- package/esm2015/model/videoAdTagVerifyRequest.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +127 -7
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiListResponseSizeWithPreview.d.ts +16 -0
- package/model/baseModelWithCreativeSetType.d.ts +2 -1
- package/model/creativeDetails.d.ts +20 -0
- package/model/creativeSetDashboardMetric.d.ts +2 -1
- package/model/creativeSetDetails.d.ts +2 -1
- package/model/creativeSetRequest.d.ts +2 -1
- package/model/creativeSetResponse.d.ts +2 -1
- package/model/duplicateCreativeSetResponse.d.ts +2 -1
- package/model/models.d.ts +3 -0
- package/model/sizeWithPreview.d.ts +16 -0
- package/model/videoAdTagVerifyRequest.d.ts +14 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -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 { SizeWithPreview } from './sizeWithPreview';
|
|
13
|
+
export interface ApiListResponseSizeWithPreview {
|
|
14
|
+
data?: Array<SizeWithPreview>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
16
|
+
}
|
|
@@ -15,7 +15,7 @@ export interface BaseModelWithCreativeSetType {
|
|
|
15
15
|
name?: string;
|
|
16
16
|
}
|
|
17
17
|
export declare namespace BaseModelWithCreativeSetType {
|
|
18
|
-
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';
|
|
18
|
+
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';
|
|
19
19
|
const CreativeSetTypeEnum: {
|
|
20
20
|
IMAGE: CreativeSetTypeEnum;
|
|
21
21
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -29,5 +29,6 @@ export declare namespace BaseModelWithCreativeSetType {
|
|
|
29
29
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
30
30
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
31
31
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
32
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
32
33
|
};
|
|
33
34
|
}
|
|
@@ -13,6 +13,26 @@ import { ClickDestination } from './clickDestination';
|
|
|
13
13
|
export interface CreativeDetails {
|
|
14
14
|
advertiserId?: number;
|
|
15
15
|
clickDestination?: ClickDestination;
|
|
16
|
+
creativeSetType?: CreativeDetails.CreativeSetTypeEnum;
|
|
17
|
+
dco?: boolean;
|
|
16
18
|
isDCO?: boolean;
|
|
17
19
|
name?: string;
|
|
18
20
|
}
|
|
21
|
+
export declare namespace CreativeDetails {
|
|
22
|
+
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';
|
|
23
|
+
const CreativeSetTypeEnum: {
|
|
24
|
+
IMAGE: CreativeSetTypeEnum;
|
|
25
|
+
VIDEO: CreativeSetTypeEnum;
|
|
26
|
+
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
27
|
+
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
28
|
+
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
29
|
+
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
30
|
+
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
31
|
+
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
32
|
+
DYNAMICHTML: CreativeSetTypeEnum;
|
|
33
|
+
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
34
|
+
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
35
|
+
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
36
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -65,7 +65,7 @@ export interface CreativeSetDashboardMetric {
|
|
|
65
65
|
viewappopen?: number;
|
|
66
66
|
}
|
|
67
67
|
export declare namespace CreativeSetDashboardMetric {
|
|
68
|
-
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';
|
|
68
|
+
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';
|
|
69
69
|
const CreativeSetTypeEnum: {
|
|
70
70
|
IMAGE: CreativeSetTypeEnum;
|
|
71
71
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -79,5 +79,6 @@ export declare namespace CreativeSetDashboardMetric {
|
|
|
79
79
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
80
80
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
81
81
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
82
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
82
83
|
};
|
|
83
84
|
}
|
|
@@ -41,7 +41,7 @@ export interface CreativeSetDetails {
|
|
|
41
41
|
type?: CreativeSetDetails.TypeEnum;
|
|
42
42
|
}
|
|
43
43
|
export declare namespace CreativeSetDetails {
|
|
44
|
-
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';
|
|
44
|
+
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';
|
|
45
45
|
const TypeEnum: {
|
|
46
46
|
IMAGE: TypeEnum;
|
|
47
47
|
VIDEO: TypeEnum;
|
|
@@ -55,5 +55,6 @@ export declare namespace CreativeSetDetails {
|
|
|
55
55
|
DYNAMICVIDEO: TypeEnum;
|
|
56
56
|
HYBRIDSTATICAD: TypeEnum;
|
|
57
57
|
HYBRIDDYNAMICAD: TypeEnum;
|
|
58
|
+
THIRDPARTYVIDEOADTAGS: TypeEnum;
|
|
58
59
|
};
|
|
59
60
|
}
|
|
@@ -45,7 +45,7 @@ export interface CreativeSetRequest {
|
|
|
45
45
|
urlPath?: string;
|
|
46
46
|
}
|
|
47
47
|
export declare namespace CreativeSetRequest {
|
|
48
|
-
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';
|
|
48
|
+
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';
|
|
49
49
|
const CreativeSetTypeEnum: {
|
|
50
50
|
IMAGE: CreativeSetTypeEnum;
|
|
51
51
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -59,5 +59,6 @@ export declare namespace CreativeSetRequest {
|
|
|
59
59
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
60
60
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
61
61
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
62
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
62
63
|
};
|
|
63
64
|
}
|
|
@@ -16,7 +16,7 @@ export interface CreativeSetResponse {
|
|
|
16
16
|
otherCreativeSetType?: CreativeSetResponse.OtherCreativeSetTypeEnum;
|
|
17
17
|
}
|
|
18
18
|
export declare namespace CreativeSetResponse {
|
|
19
|
-
type OtherCreativeSetTypeEnum = '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';
|
|
19
|
+
type OtherCreativeSetTypeEnum = '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';
|
|
20
20
|
const OtherCreativeSetTypeEnum: {
|
|
21
21
|
IMAGE: OtherCreativeSetTypeEnum;
|
|
22
22
|
VIDEO: OtherCreativeSetTypeEnum;
|
|
@@ -30,5 +30,6 @@ export declare namespace CreativeSetResponse {
|
|
|
30
30
|
DYNAMICVIDEO: OtherCreativeSetTypeEnum;
|
|
31
31
|
HYBRIDSTATICAD: OtherCreativeSetTypeEnum;
|
|
32
32
|
HYBRIDDYNAMICAD: OtherCreativeSetTypeEnum;
|
|
33
|
+
THIRDPARTYVIDEOADTAGS: OtherCreativeSetTypeEnum;
|
|
33
34
|
};
|
|
34
35
|
}
|
|
@@ -17,7 +17,7 @@ export interface DuplicateCreativeSetResponse {
|
|
|
17
17
|
otherCreativeSetType?: DuplicateCreativeSetResponse.OtherCreativeSetTypeEnum;
|
|
18
18
|
}
|
|
19
19
|
export declare namespace DuplicateCreativeSetResponse {
|
|
20
|
-
type OtherCreativeSetTypeEnum = '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';
|
|
20
|
+
type OtherCreativeSetTypeEnum = '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';
|
|
21
21
|
const OtherCreativeSetTypeEnum: {
|
|
22
22
|
IMAGE: OtherCreativeSetTypeEnum;
|
|
23
23
|
VIDEO: OtherCreativeSetTypeEnum;
|
|
@@ -31,5 +31,6 @@ export declare namespace DuplicateCreativeSetResponse {
|
|
|
31
31
|
DYNAMICVIDEO: OtherCreativeSetTypeEnum;
|
|
32
32
|
HYBRIDSTATICAD: OtherCreativeSetTypeEnum;
|
|
33
33
|
HYBRIDDYNAMICAD: OtherCreativeSetTypeEnum;
|
|
34
|
+
THIRDPARTYVIDEOADTAGS: OtherCreativeSetTypeEnum;
|
|
34
35
|
};
|
|
35
36
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './apiListResponseCreativeSetDashboardMetric';
|
|
|
22
22
|
export * from './apiListResponseCreativeTemplateDTO';
|
|
23
23
|
export * from './apiListResponseMacro';
|
|
24
24
|
export * from './apiListResponsePixel';
|
|
25
|
+
export * from './apiListResponseSizeWithPreview';
|
|
25
26
|
export * from './apiListResponseVariablesMappingDTO';
|
|
26
27
|
export * from './apiResponseObjectABTestDTO';
|
|
27
28
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
@@ -242,6 +243,7 @@ export * from './searchRequest';
|
|
|
242
243
|
export * from './siteListDTO';
|
|
243
244
|
export * from './siteListRequest';
|
|
244
245
|
export * from './size';
|
|
246
|
+
export * from './sizeWithPreview';
|
|
245
247
|
export * from './skadTargetPrivileges';
|
|
246
248
|
export * from './slicexChartResponse';
|
|
247
249
|
export * from './slicexData';
|
|
@@ -278,6 +280,7 @@ export * from './userPreferenceCategory';
|
|
|
278
280
|
export * from './userPreferenceDTO';
|
|
279
281
|
export * from './variablesMappingDTO';
|
|
280
282
|
export * from './vastCreative';
|
|
283
|
+
export * from './videoAdTagVerifyRequest';
|
|
281
284
|
export * from './videoAttributes';
|
|
282
285
|
export * from './videoProperties';
|
|
283
286
|
export * from './videoTargeting';
|
|
@@ -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
|
+
export interface SizeWithPreview {
|
|
13
|
+
height?: number;
|
|
14
|
+
preview?: string;
|
|
15
|
+
width?: number;
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 VideoAdTagVerifyRequest {
|
|
13
|
+
xmlUrl?: string;
|
|
14
|
+
}
|