@revxui/api-clients-ts 0.10.211 → 0.10.212
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/bundles/revxui-api-clients-ts.umd.js +27 -0
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/model/baseModelWithCreativeSetType.js +27 -0
- package/esm2015/model/bulkEditStrategiesDTO.js +1 -1
- package/esm2015/model/creativeSetListEditField.js +1 -0
- package/esm2015/model/models.js +2 -1
- package/esm2015/model/strategyDTO.js +1 -1
- package/esm5/model/baseModelWithCreativeSetType.js +27 -0
- package/esm5/model/bulkEditStrategiesDTO.js +1 -1
- package/esm5/model/creativeSetListEditField.js +1 -0
- package/esm5/model/models.js +2 -1
- package/esm5/model/strategyDTO.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +28 -1
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +28 -1
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/baseModelWithCreativeSetType.d.ts +31 -0
- package/model/bulkEditStrategiesDTO.d.ts +2 -0
- package/model/creativeSetDashboardMetric.d.ts +10 -10
- package/model/creativeSetDetails.d.ts +10 -10
- package/model/creativeSetListEditField.d.ts +16 -0
- package/model/creativeSetRequest.d.ts +10 -10
- package/model/creativeSetResponse.d.ts +10 -10
- package/model/models.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
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 BaseModelWithCreativeSetType {
|
|
13
|
+
creativeSetType?: BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
14
|
+
id?: number;
|
|
15
|
+
name?: string;
|
|
16
|
+
}
|
|
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';
|
|
19
|
+
const CreativeSetTypeEnum: {
|
|
20
|
+
IMAGE: CreativeSetTypeEnum;
|
|
21
|
+
VIDEO: CreativeSetTypeEnum;
|
|
22
|
+
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
23
|
+
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
24
|
+
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
25
|
+
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
26
|
+
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
27
|
+
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
28
|
+
DYNAMICHTML: CreativeSetTypeEnum;
|
|
29
|
+
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
@@ -16,6 +16,7 @@ import { BaseModel } from './baseModel';
|
|
|
16
16
|
import { BaseModelEditField } from './baseModelEditField';
|
|
17
17
|
import { BigDecimalEditField } from './bigDecimalEditField';
|
|
18
18
|
import { CreativeListEditField } from './creativeListEditField';
|
|
19
|
+
import { CreativeSetListEditField } from './creativeSetListEditField';
|
|
19
20
|
import { DayPartEditField } from './dayPartEditField';
|
|
20
21
|
import { DealCategoryEditField } from './dealCategoryEditField';
|
|
21
22
|
import { FcapEditField } from './fcapEditField';
|
|
@@ -33,6 +34,7 @@ export interface BulkEditStrategiesDTO {
|
|
|
33
34
|
bidCapMin?: BigDecimalEditField;
|
|
34
35
|
boostBidPrice?: IntegerEditField;
|
|
35
36
|
budgetValue?: BigDecimalEditField;
|
|
37
|
+
creativeSets?: CreativeSetListEditField;
|
|
36
38
|
creatives?: CreativeListEditField;
|
|
37
39
|
daysTargeting?: DayPartEditField;
|
|
38
40
|
dealAudienceTargeting?: DealCategoryEditField;
|
|
@@ -62,15 +62,15 @@ export interface CreativeSetDashboardMetric {
|
|
|
62
62
|
export declare namespace CreativeSetDashboardMetric {
|
|
63
63
|
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
64
64
|
const CreativeSetTypeEnum: {
|
|
65
|
-
IMAGE: CreativeSetTypeEnum;
|
|
66
|
-
VIDEO: CreativeSetTypeEnum;
|
|
67
|
-
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
68
|
-
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
69
|
-
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
70
|
-
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
71
|
-
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
72
|
-
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
73
|
-
DYNAMICHTML: CreativeSetTypeEnum;
|
|
74
|
-
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
65
|
+
IMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
66
|
+
VIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
67
|
+
THIRDPARTYADTAGS: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
68
|
+
ZIPPEDHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
69
|
+
NATIVEIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
70
|
+
NATIVEVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
71
|
+
DYNAMICIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
72
|
+
DYNAMICMACRO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
73
|
+
DYNAMICHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
74
|
+
DYNAMICVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
75
75
|
};
|
|
76
76
|
}
|
|
@@ -40,15 +40,15 @@ export interface CreativeSetDetails {
|
|
|
40
40
|
export declare namespace CreativeSetDetails {
|
|
41
41
|
type TypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
42
42
|
const TypeEnum: {
|
|
43
|
-
IMAGE: import("./
|
|
44
|
-
VIDEO: import("./
|
|
45
|
-
THIRDPARTYADTAGS: import("./
|
|
46
|
-
ZIPPEDHTML: import("./
|
|
47
|
-
NATIVEIMAGE: import("./
|
|
48
|
-
NATIVEVIDEO: import("./
|
|
49
|
-
DYNAMICIMAGE: import("./
|
|
50
|
-
DYNAMICMACRO: import("./
|
|
51
|
-
DYNAMICHTML: import("./
|
|
52
|
-
DYNAMICVIDEO: import("./
|
|
43
|
+
IMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
44
|
+
VIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
45
|
+
THIRDPARTYADTAGS: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
46
|
+
ZIPPEDHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
47
|
+
NATIVEIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
48
|
+
NATIVEVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
49
|
+
DYNAMICIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
50
|
+
DYNAMICMACRO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
51
|
+
DYNAMICHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
52
|
+
DYNAMICVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -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 { BaseModelWithCreativeSetType } from './baseModelWithCreativeSetType';
|
|
13
|
+
export interface CreativeSetListEditField {
|
|
14
|
+
action?: string;
|
|
15
|
+
creativeSets?: Array<BaseModelWithCreativeSetType>;
|
|
16
|
+
}
|
|
@@ -40,15 +40,15 @@ export interface CreativeSetRequest {
|
|
|
40
40
|
export declare namespace CreativeSetRequest {
|
|
41
41
|
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
42
42
|
const CreativeSetTypeEnum: {
|
|
43
|
-
IMAGE: import("./
|
|
44
|
-
VIDEO: import("./
|
|
45
|
-
THIRDPARTYADTAGS: import("./
|
|
46
|
-
ZIPPEDHTML: import("./
|
|
47
|
-
NATIVEIMAGE: import("./
|
|
48
|
-
NATIVEVIDEO: import("./
|
|
49
|
-
DYNAMICIMAGE: import("./
|
|
50
|
-
DYNAMICMACRO: import("./
|
|
51
|
-
DYNAMICHTML: import("./
|
|
52
|
-
DYNAMICVIDEO: import("./
|
|
43
|
+
IMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
44
|
+
VIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
45
|
+
THIRDPARTYADTAGS: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
46
|
+
ZIPPEDHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
47
|
+
NATIVEIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
48
|
+
NATIVEVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
49
|
+
DYNAMICIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
50
|
+
DYNAMICMACRO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
51
|
+
DYNAMICHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
52
|
+
DYNAMICVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -18,15 +18,15 @@ export interface CreativeSetResponse {
|
|
|
18
18
|
export declare namespace CreativeSetResponse {
|
|
19
19
|
type OtherCreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
20
20
|
const OtherCreativeSetTypeEnum: {
|
|
21
|
-
IMAGE: import("./
|
|
22
|
-
VIDEO: import("./
|
|
23
|
-
THIRDPARTYADTAGS: import("./
|
|
24
|
-
ZIPPEDHTML: import("./
|
|
25
|
-
NATIVEIMAGE: import("./
|
|
26
|
-
NATIVEVIDEO: import("./
|
|
27
|
-
DYNAMICIMAGE: import("./
|
|
28
|
-
DYNAMICMACRO: import("./
|
|
29
|
-
DYNAMICHTML: import("./
|
|
30
|
-
DYNAMICVIDEO: import("./
|
|
21
|
+
IMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
22
|
+
VIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
23
|
+
THIRDPARTYADTAGS: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
24
|
+
ZIPPEDHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
25
|
+
NATIVEIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
26
|
+
NATIVEVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
27
|
+
DYNAMICIMAGE: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
28
|
+
DYNAMICMACRO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
29
|
+
DYNAMICHTML: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
30
|
+
DYNAMICVIDEO: import("./baseModelWithCreativeSetType").BaseModelWithCreativeSetType.CreativeSetTypeEnum;
|
|
31
31
|
};
|
|
32
32
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ export * from './auditMarker';
|
|
|
105
105
|
export * from './bIgIntegerEditFiled';
|
|
106
106
|
export * from './baseModel';
|
|
107
107
|
export * from './baseModelEditField';
|
|
108
|
+
export * from './baseModelWithCreativeSetType';
|
|
108
109
|
export * from './bigDecimalEditField';
|
|
109
110
|
export * from './bulkEditStrategiesDTO';
|
|
110
111
|
export * from './bulkEditStrategiesResponse';
|
|
@@ -133,6 +134,7 @@ export * from './creativeMockUpsDTO';
|
|
|
133
134
|
export * from './creativePerformanceData';
|
|
134
135
|
export * from './creativeSetDashboardMetric';
|
|
135
136
|
export * from './creativeSetDetails';
|
|
137
|
+
export * from './creativeSetListEditField';
|
|
136
138
|
export * from './creativeSetRequest';
|
|
137
139
|
export * from './creativeSetResponse';
|
|
138
140
|
export * from './creativeStrategyAssociationStatus';
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { AudienceStrDTO } from './audienceStrDTO';
|
|
13
13
|
import { BaseModel } from './baseModel';
|
|
14
|
+
import { BaseModelWithCreativeSetType } from './baseModelWithCreativeSetType';
|
|
14
15
|
import { DayPart } from './dayPart';
|
|
15
16
|
import { DealCategoryDTO } from './dealCategoryDTO';
|
|
16
17
|
import { RTBAggregators } from './rTBAggregators';
|
|
@@ -43,6 +44,7 @@ export interface StrategyDTO {
|
|
|
43
44
|
cpaTargetValue?: number;
|
|
44
45
|
createdBy?: number;
|
|
45
46
|
creationTime?: number;
|
|
47
|
+
creativeSets?: Array<BaseModelWithCreativeSetType>;
|
|
46
48
|
creatives?: Array<BaseModel>;
|
|
47
49
|
currency?: BaseModel;
|
|
48
50
|
currencyCode?: string;
|