@revxui/api-clients-ts 0.10.364 → 0.10.366
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/audienceController.service.d.ts +0 -27
- package/api/creativeController.service.d.ts +14 -0
- package/api/dashboardController.service.d.ts +24 -24
- package/api/strategyController.service.d.ts +46 -3
- package/bundles/revxui-api-clients-ts.umd.js +196 -102
- 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 -70
- 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 +36 -2
- 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 +101 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
- package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +2 -0
- package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.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 +9 -5
- package/esm2015/model/searchRequest.js +1 -1
- package/esm2015/model/sizeWithPreview.js +13 -0
- package/esm2015/model/strategyOptBlockTargetingReq.js +13 -0
- package/esm2015/model/strategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/strategyTargettingPerformanceData.js +13 -0
- package/esm2015/model/{audienceAnalysisRequest.js → videoAdTagVerifyRequest.js} +1 -1
- package/fesm2015/revxui-api-clients-ts.js +237 -135
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/{combinedAudienceAnalysisResponse.d.ts → apiListResponseSizeWithPreview.d.ts} +4 -7
- package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +16 -0
- package/model/{apiResponseObjectArrayListCombinedAudienceAnalysisResponse.d.ts → apiResponseObjectStrategyOptimizationDataResponse.d.ts} +3 -3
- package/model/baseModelWithCreativeSetType.d.ts +2 -1
- package/model/creativeDetails.d.ts +22 -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 +8 -4
- package/model/searchRequest.d.ts +0 -1
- package/model/{totalUniqueUserRequest.d.ts → sizeWithPreview.d.ts} +4 -3
- package/model/{audienceAnalysisRequest.d.ts → strategyOptBlockTargetingReq.d.ts} +3 -5
- package/model/strategyOptimizationDataResponse.d.ts +17 -0
- package/model/strategyTargettingPerformanceData.d.ts +24 -0
- package/model/videoAdTagVerifyRequest.d.ts +14 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/apiResponseObjectArrayListCombinedAudienceAnalysisResponse.js +0 -2
- package/esm2015/model/combinedAudienceAnalysisResponse.js +0 -13
- package/esm2015/model/totalUniqueUserRequest.js +0 -13
|
@@ -9,11 +9,8 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
convUU?: number;
|
|
17
|
-
targetedAudience?: Array<number>;
|
|
18
|
-
totalUU?: number;
|
|
12
|
+
import { SizeWithPreview } from './sizeWithPreview';
|
|
13
|
+
export interface ApiListResponseSizeWithPreview {
|
|
14
|
+
data?: Array<SizeWithPreview>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
19
16
|
}
|
|
@@ -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 { StrategyTargettingPerformanceData } from './strategyTargettingPerformanceData';
|
|
13
|
+
export interface ApiListResponseStrategyTargettingPerformanceData {
|
|
14
|
+
data?: Array<StrategyTargettingPerformanceData>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
16
|
+
}
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
13
|
-
export interface
|
|
12
|
+
import { StrategyOptimizationDataResponse } from './strategyOptimizationDataResponse';
|
|
13
|
+
export interface ApiResponseObjectStrategyOptimizationDataResponse {
|
|
14
14
|
error?: Error;
|
|
15
15
|
respId?: string;
|
|
16
|
-
respObject?:
|
|
16
|
+
respObject?: StrategyOptimizationDataResponse;
|
|
17
17
|
}
|
|
@@ -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
|
}
|
|
@@ -10,9 +10,31 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { ClickDestination } from './clickDestination';
|
|
13
|
+
import { CreativeThirdPartyAdTag } from './creativeThirdPartyAdTag';
|
|
13
14
|
export interface CreativeDetails {
|
|
15
|
+
adTag?: CreativeThirdPartyAdTag;
|
|
14
16
|
advertiserId?: number;
|
|
15
17
|
clickDestination?: ClickDestination;
|
|
18
|
+
creativeSetType?: CreativeDetails.CreativeSetTypeEnum;
|
|
19
|
+
dco?: boolean;
|
|
16
20
|
isDCO?: boolean;
|
|
17
21
|
name?: string;
|
|
18
22
|
}
|
|
23
|
+
export declare namespace CreativeDetails {
|
|
24
|
+
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';
|
|
25
|
+
const CreativeSetTypeEnum: {
|
|
26
|
+
IMAGE: CreativeSetTypeEnum;
|
|
27
|
+
VIDEO: CreativeSetTypeEnum;
|
|
28
|
+
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
29
|
+
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
30
|
+
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
31
|
+
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
32
|
+
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
33
|
+
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
34
|
+
DYNAMICHTML: CreativeSetTypeEnum;
|
|
35
|
+
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
36
|
+
HYBRIDSTATICAD: CreativeSetTypeEnum;
|
|
37
|
+
HYBRIDDYNAMICAD: CreativeSetTypeEnum;
|
|
38
|
+
THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -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,8 @@ export * from './apiListResponseCreativeSetDashboardMetric';
|
|
|
22
22
|
export * from './apiListResponseCreativeTemplateDTO';
|
|
23
23
|
export * from './apiListResponseMacro';
|
|
24
24
|
export * from './apiListResponsePixel';
|
|
25
|
+
export * from './apiListResponseSizeWithPreview';
|
|
26
|
+
export * from './apiListResponseStrategyTargettingPerformanceData';
|
|
25
27
|
export * from './apiListResponseVariablesMappingDTO';
|
|
26
28
|
export * from './apiResponseObjectABTestDTO';
|
|
27
29
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
@@ -39,7 +41,6 @@ export * from './apiResponseObjectApiListResponseCreativeSetDashboardMetric';
|
|
|
39
41
|
export * from './apiResponseObjectApiListResponseCreativeTemplateDTO';
|
|
40
42
|
export * from './apiResponseObjectApiListResponsePixel';
|
|
41
43
|
export * from './apiResponseObjectApiListResponseVariablesMappingDTO';
|
|
42
|
-
export * from './apiResponseObjectArrayListCombinedAudienceAnalysisResponse';
|
|
43
44
|
export * from './apiResponseObjectAudienceAccessDTO';
|
|
44
45
|
export * from './apiResponseObjectAudienceDTO';
|
|
45
46
|
export * from './apiResponseObjectBaseModel';
|
|
@@ -93,6 +94,7 @@ export * from './apiResponseObjectSlicexChartResponse';
|
|
|
93
94
|
export * from './apiResponseObjectSlicexListResponse';
|
|
94
95
|
export * from './apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
95
96
|
export * from './apiResponseObjectStrategyDTO';
|
|
97
|
+
export * from './apiResponseObjectStrategyOptimizationDataResponse';
|
|
96
98
|
export * from './apiResponseObjectStrategyQuickEditDTO';
|
|
97
99
|
export * from './apiResponseObjectTag';
|
|
98
100
|
export * from './apiResponseObjectTemplateThemeDTO';
|
|
@@ -105,7 +107,6 @@ export * from './appSettingsDTO';
|
|
|
105
107
|
export * from './appSettingsPropertyDTO';
|
|
106
108
|
export * from './auctionTypeEditField';
|
|
107
109
|
export * from './audienceAccessDTO';
|
|
108
|
-
export * from './audienceAnalysisRequest';
|
|
109
110
|
export * from './audienceBackFilledStats';
|
|
110
111
|
export * from './audienceBackfillQueryTemplateRequest';
|
|
111
112
|
export * from './audienceBackfillRequest';
|
|
@@ -142,7 +143,6 @@ export * from './catalogFeed';
|
|
|
142
143
|
export * from './chartDashboardResponse';
|
|
143
144
|
export * from './clickDestination';
|
|
144
145
|
export * from './clickDestinationAutomationUrls';
|
|
145
|
-
export * from './combinedAudienceAnalysisResponse';
|
|
146
146
|
export * from './creative';
|
|
147
147
|
export * from './creativeCompactDTO';
|
|
148
148
|
export * from './creativeDTO';
|
|
@@ -245,6 +245,7 @@ export * from './searchRequest';
|
|
|
245
245
|
export * from './siteListDTO';
|
|
246
246
|
export * from './siteListRequest';
|
|
247
247
|
export * from './size';
|
|
248
|
+
export * from './sizeWithPreview';
|
|
248
249
|
export * from './skadTargetPrivileges';
|
|
249
250
|
export * from './slicexChartResponse';
|
|
250
251
|
export * from './slicexData';
|
|
@@ -260,7 +261,10 @@ export * from './strategyCreativeAssociationResponseDTO';
|
|
|
260
261
|
export * from './strategyDTO';
|
|
261
262
|
export * from './strategyInlineDTO';
|
|
262
263
|
export * from './strategyListEditField';
|
|
264
|
+
export * from './strategyOptBlockTargetingReq';
|
|
265
|
+
export * from './strategyOptimizationDataResponse';
|
|
263
266
|
export * from './strategyQuickEditDTO';
|
|
267
|
+
export * from './strategyTargettingPerformanceData';
|
|
264
268
|
export * from './strategyUpdateResponse';
|
|
265
269
|
export * from './stringEditField';
|
|
266
270
|
export * from './tag';
|
|
@@ -278,11 +282,11 @@ export * from './targetingObject';
|
|
|
278
282
|
export * from './templateThemeDTO';
|
|
279
283
|
export * from './templateVariablesDTO';
|
|
280
284
|
export * from './timeZoneDTO';
|
|
281
|
-
export * from './totalUniqueUserRequest';
|
|
282
285
|
export * from './userPreferenceCategory';
|
|
283
286
|
export * from './userPreferenceDTO';
|
|
284
287
|
export * from './variablesMappingDTO';
|
|
285
288
|
export * from './vastCreative';
|
|
289
|
+
export * from './videoAdTagVerifyRequest';
|
|
286
290
|
export * from './videoAttributes';
|
|
287
291
|
export * from './videoProperties';
|
|
288
292
|
export * from './videoTargeting';
|
package/model/searchRequest.d.ts
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
export interface
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
export interface SizeWithPreview {
|
|
13
|
+
height?: number;
|
|
14
|
+
preview?: string;
|
|
15
|
+
width?: number;
|
|
15
16
|
}
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
export interface
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
blockedAudience?: Array<number>;
|
|
16
|
-
targetedAudience?: Array<number>;
|
|
12
|
+
export interface StrategyOptBlockTargetingReq {
|
|
13
|
+
aggregatorIds?: Array<number>;
|
|
14
|
+
siteIds?: Array<number>;
|
|
17
15
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { RTBAggregators } from './rTBAggregators';
|
|
13
|
+
import { RTBSites } from './rTBSites';
|
|
14
|
+
export interface StrategyOptimizationDataResponse {
|
|
15
|
+
rtbAggregators?: RTBAggregators;
|
|
16
|
+
rtbSites?: RTBSites;
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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 StrategyTargettingPerformanceData {
|
|
13
|
+
cost?: number;
|
|
14
|
+
ctc?: number;
|
|
15
|
+
ctr?: number;
|
|
16
|
+
ecpa?: number;
|
|
17
|
+
ecpc?: number;
|
|
18
|
+
ecpi?: number;
|
|
19
|
+
ecpm?: number;
|
|
20
|
+
id?: number;
|
|
21
|
+
iti?: number;
|
|
22
|
+
name?: string;
|
|
23
|
+
revenue?: number;
|
|
24
|
+
}
|
|
@@ -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
|
+
}
|