@revxui/api-clients-ts 0.10.355 → 0.10.356
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 +0 -14
- package/api/strategyController.service.d.ts +14 -0
- package/bundles/revxui-api-clients-ts.umd.js +88 -91
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +2 -2
- package/esm2015/api/appSettingsController.service.js +2 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -36
- package/esm2015/api/creativeSetsController.service.js +2 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/customerReportingController.service.js +2 -2
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +39 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/baseModelWithCreativeSetType.js +2 -3
- package/esm2015/model/creativeDetails.js +2 -19
- package/esm2015/model/creativeSetDashboardMetric.js +2 -3
- package/esm2015/model/creativeSetDetails.js +2 -3
- package/esm2015/model/creativeSetRequest.js +2 -3
- package/esm2015/model/creativeSetResponse.js +2 -3
- package/esm2015/model/duplicateCreativeSetResponse.js +2 -3
- package/esm2015/model/models.js +2 -4
- package/esm2015/model/strategyInlineDTO.js +19 -0
- package/fesm2015/revxui-api-clients-ts.js +87 -114
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/baseModelWithCreativeSetType.d.ts +1 -2
- package/model/creativeDetails.d.ts +0 -20
- package/model/creativeSetDashboardMetric.d.ts +1 -2
- package/model/creativeSetDetails.d.ts +1 -2
- package/model/creativeSetRequest.d.ts +1 -2
- package/model/creativeSetResponse.d.ts +1 -2
- package/model/duplicateCreativeSetResponse.d.ts +1 -2
- package/model/models.d.ts +1 -3
- package/model/strategyInlineDTO.d.ts +35 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/apiListResponseSizeWithPreview.js +0 -2
- package/esm2015/model/sizeWithPreview.js +0 -13
- package/esm2015/model/videoAdTagVerifyRequest.js +0 -13
- package/model/apiListResponseSizeWithPreview.d.ts +0 -16
- package/model/sizeWithPreview.d.ts +0 -16
- package/model/videoAdTagVerifyRequest.d.ts +0 -14
|
@@ -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';
|
|
19
19
|
const CreativeSetTypeEnum: {
|
|
20
20
|
IMAGE: CreativeSetTypeEnum;
|
|
21
21
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -29,6 +29,5 @@ export declare namespace BaseModelWithCreativeSetType {
|
|
|
29
29
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
30
30
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
31
31
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
32
|
-
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
33
32
|
};
|
|
34
33
|
}
|
|
@@ -13,26 +13,6 @@ import { ClickDestination } from './clickDestination';
|
|
|
13
13
|
export interface CreativeDetails {
|
|
14
14
|
advertiserId?: number;
|
|
15
15
|
clickDestination?: ClickDestination;
|
|
16
|
-
creativeSetType?: CreativeDetails.CreativeSetTypeEnum;
|
|
17
|
-
dco?: boolean;
|
|
18
16
|
isDCO?: boolean;
|
|
19
17
|
name?: string;
|
|
20
18
|
}
|
|
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';
|
|
69
69
|
const CreativeSetTypeEnum: {
|
|
70
70
|
IMAGE: CreativeSetTypeEnum;
|
|
71
71
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -79,6 +79,5 @@ export declare namespace CreativeSetDashboardMetric {
|
|
|
79
79
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
80
80
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
81
81
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
82
|
-
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
83
82
|
};
|
|
84
83
|
}
|
|
@@ -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';
|
|
45
45
|
const TypeEnum: {
|
|
46
46
|
IMAGE: TypeEnum;
|
|
47
47
|
VIDEO: TypeEnum;
|
|
@@ -55,6 +55,5 @@ export declare namespace CreativeSetDetails {
|
|
|
55
55
|
DYNAMICVIDEO: TypeEnum;
|
|
56
56
|
HYBRIDSTATICAD: TypeEnum;
|
|
57
57
|
HYBRIDDYNAMICAD: TypeEnum;
|
|
58
|
-
THIRDPARTYVIDEOADTAGS: TypeEnum;
|
|
59
58
|
};
|
|
60
59
|
}
|
|
@@ -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';
|
|
49
49
|
const CreativeSetTypeEnum: {
|
|
50
50
|
IMAGE: CreativeSetTypeEnum;
|
|
51
51
|
VIDEO: CreativeSetTypeEnum;
|
|
@@ -59,6 +59,5 @@ export declare namespace CreativeSetRequest {
|
|
|
59
59
|
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
60
60
|
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
61
61
|
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
62
|
-
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
63
62
|
};
|
|
64
63
|
}
|
|
@@ -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';
|
|
20
20
|
const OtherCreativeSetTypeEnum: {
|
|
21
21
|
IMAGE: OtherCreativeSetTypeEnum;
|
|
22
22
|
VIDEO: OtherCreativeSetTypeEnum;
|
|
@@ -30,6 +30,5 @@ export declare namespace CreativeSetResponse {
|
|
|
30
30
|
DYNAMICVIDEO: OtherCreativeSetTypeEnum;
|
|
31
31
|
HYBRIDSTATICAD: OtherCreativeSetTypeEnum;
|
|
32
32
|
HYBRIDDYNAMICAD: OtherCreativeSetTypeEnum;
|
|
33
|
-
THIRDPARTYVIDEOADTAGS: OtherCreativeSetTypeEnum;
|
|
34
33
|
};
|
|
35
34
|
}
|
|
@@ -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';
|
|
21
21
|
const OtherCreativeSetTypeEnum: {
|
|
22
22
|
IMAGE: OtherCreativeSetTypeEnum;
|
|
23
23
|
VIDEO: OtherCreativeSetTypeEnum;
|
|
@@ -31,6 +31,5 @@ export declare namespace DuplicateCreativeSetResponse {
|
|
|
31
31
|
DYNAMICVIDEO: OtherCreativeSetTypeEnum;
|
|
32
32
|
HYBRIDSTATICAD: OtherCreativeSetTypeEnum;
|
|
33
33
|
HYBRIDDYNAMICAD: OtherCreativeSetTypeEnum;
|
|
34
|
-
THIRDPARTYVIDEOADTAGS: OtherCreativeSetTypeEnum;
|
|
35
34
|
};
|
|
36
35
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export * from './apiListResponseCreativeSetDashboardMetric';
|
|
|
22
22
|
export * from './apiListResponseCreativeTemplateDTO';
|
|
23
23
|
export * from './apiListResponseMacro';
|
|
24
24
|
export * from './apiListResponsePixel';
|
|
25
|
-
export * from './apiListResponseSizeWithPreview';
|
|
26
25
|
export * from './apiListResponseVariablesMappingDTO';
|
|
27
26
|
export * from './apiResponseObjectABTestDTO';
|
|
28
27
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
@@ -243,7 +242,6 @@ export * from './searchRequest';
|
|
|
243
242
|
export * from './siteListDTO';
|
|
244
243
|
export * from './siteListRequest';
|
|
245
244
|
export * from './size';
|
|
246
|
-
export * from './sizeWithPreview';
|
|
247
245
|
export * from './skadTargetPrivileges';
|
|
248
246
|
export * from './slicexChartResponse';
|
|
249
247
|
export * from './slicexData';
|
|
@@ -257,6 +255,7 @@ export * from './strategy';
|
|
|
257
255
|
export * from './strategyCreativeAssociationRequestDTO';
|
|
258
256
|
export * from './strategyCreativeAssociationResponseDTO';
|
|
259
257
|
export * from './strategyDTO';
|
|
258
|
+
export * from './strategyInlineDTO';
|
|
260
259
|
export * from './strategyListEditField';
|
|
261
260
|
export * from './strategyQuickEditDTO';
|
|
262
261
|
export * from './strategyUpdateResponse';
|
|
@@ -280,7 +279,6 @@ export * from './userPreferenceCategory';
|
|
|
280
279
|
export * from './userPreferenceDTO';
|
|
281
280
|
export * from './variablesMappingDTO';
|
|
282
281
|
export * from './vastCreative';
|
|
283
|
-
export * from './videoAdTagVerifyRequest';
|
|
284
282
|
export * from './videoAttributes';
|
|
285
283
|
export * from './videoProperties';
|
|
286
284
|
export * from './videoTargeting';
|
|
@@ -0,0 +1,35 @@
|
|
|
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 StrategyInlineDTO {
|
|
13
|
+
bidCapMax?: number;
|
|
14
|
+
bidCapMin?: number;
|
|
15
|
+
campaignFcap?: boolean;
|
|
16
|
+
campaignId?: number;
|
|
17
|
+
cpaTargetValue?: number;
|
|
18
|
+
fcapFrequency?: number;
|
|
19
|
+
fcapInterval?: number;
|
|
20
|
+
id?: number;
|
|
21
|
+
isBargainerActive?: boolean;
|
|
22
|
+
name?: string;
|
|
23
|
+
pacingBudgetValue?: number;
|
|
24
|
+
pacingType?: number;
|
|
25
|
+
pricingType?: number;
|
|
26
|
+
pricingValue?: number;
|
|
27
|
+
strategyType?: StrategyInlineDTO.StrategyTypeEnum;
|
|
28
|
+
}
|
|
29
|
+
export declare namespace StrategyInlineDTO {
|
|
30
|
+
type StrategyTypeEnum = 'standard' | 'clickTracker';
|
|
31
|
+
const StrategyTypeEnum: {
|
|
32
|
+
Standard: StrategyTypeEnum;
|
|
33
|
+
ClickTracker: StrategyTypeEnum;
|
|
34
|
+
};
|
|
35
|
+
}
|