@revxui/api-clients-ts 1.1.25 → 1.1.27
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/strategyController.service.d.ts +43 -0
- package/bundles/revxui-api-clients-ts.umd.js +105 -0
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/strategyController.service.js +100 -1
- package/esm2015/model/advertiser.js +1 -1
- package/esm2015/model/advertiserPojo.js +1 -1
- package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +2 -0
- package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/creativeFileForSet.js +1 -1
- package/esm2015/model/creativeFiles.js +1 -1
- package/esm2015/model/creativeSetDashboardMetric.js +1 -1
- package/esm2015/model/dashboardData.js +1 -1
- package/esm2015/model/dashboardMetrics.js +1 -1
- package/esm2015/model/models.js +6 -1
- package/esm2015/model/slicexData.js +1 -1
- package/esm2015/model/slicexGridData.js +1 -1
- package/esm2015/model/strategyOptBlockTargetingReq.js +13 -0
- package/esm2015/model/strategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/strategyTargettingPerformanceData.js +13 -0
- package/esm2015/model/videoProperties.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +123 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiser.d.ts +2 -0
- package/model/advertiserPojo.d.ts +2 -0
- package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +16 -0
- package/model/apiResponseObjectStrategyOptimizationDataResponse.d.ts +17 -0
- package/model/creativeFileForSet.d.ts +0 -1
- package/model/creativeFiles.d.ts +0 -1
- package/model/creativeSetDashboardMetric.d.ts +1 -0
- package/model/dashboardData.d.ts +1 -0
- package/model/dashboardMetrics.d.ts +1 -0
- package/model/models.d.ts +5 -0
- package/model/slicexData.d.ts +1 -0
- package/model/slicexGridData.d.ts +1 -0
- package/model/strategyOptBlockTargetingReq.d.ts +15 -0
- package/model/strategyOptimizationDataResponse.d.ts +17 -0
- package/model/strategyTargettingPerformanceData.d.ts +24 -0
- package/model/videoProperties.d.ts +0 -4
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
package/model/advertiser.d.ts
CHANGED
|
@@ -16,8 +16,10 @@ export interface Advertiser {
|
|
|
16
16
|
creationTime?: number;
|
|
17
17
|
currency?: BaseModel;
|
|
18
18
|
currencyCode?: string;
|
|
19
|
+
dynamicVideoSupport?: boolean;
|
|
19
20
|
id?: number;
|
|
20
21
|
isArchived?: boolean;
|
|
22
|
+
isDynamicVideoSupport?: boolean;
|
|
21
23
|
isPlatformAudSupport?: boolean;
|
|
22
24
|
licensee?: BaseModel;
|
|
23
25
|
licenseeId?: number;
|
|
@@ -26,6 +26,7 @@ export interface AdvertiserPojo {
|
|
|
26
26
|
currencyCode?: string;
|
|
27
27
|
defaultLogoDetails?: AppSettingsDTO;
|
|
28
28
|
domain?: string;
|
|
29
|
+
dynamicVideoSupport?: boolean;
|
|
29
30
|
email?: string;
|
|
30
31
|
iOSDeeplink?: string;
|
|
31
32
|
id?: number;
|
|
@@ -34,6 +35,7 @@ export interface AdvertiserPojo {
|
|
|
34
35
|
iosTabletBundle?: string;
|
|
35
36
|
isArchived?: boolean;
|
|
36
37
|
isDynamicVideo?: boolean;
|
|
38
|
+
isDynamicVideoSupport?: boolean;
|
|
37
39
|
isPlatformAudSupport?: boolean;
|
|
38
40
|
language?: BaseModel;
|
|
39
41
|
licensee?: BaseModel;
|
|
@@ -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
|
+
}
|
|
@@ -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 { StrategyOptimizationDataResponse } from './strategyOptimizationDataResponse';
|
|
13
|
+
export interface ApiResponseObjectStrategyOptimizationDataResponse {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: StrategyOptimizationDataResponse;
|
|
17
|
+
}
|
package/model/creativeFiles.d.ts
CHANGED
package/model/dashboardData.d.ts
CHANGED
package/model/models.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './apiListResponseCreativeTemplateDTO';
|
|
|
23
23
|
export * from './apiListResponseMacro';
|
|
24
24
|
export * from './apiListResponsePixel';
|
|
25
25
|
export * from './apiListResponseSizeWithPreview';
|
|
26
|
+
export * from './apiListResponseStrategyTargettingPerformanceData';
|
|
26
27
|
export * from './apiListResponseStrategyTemplateResponse';
|
|
27
28
|
export * from './apiListResponseVariablesMappingDTO';
|
|
28
29
|
export * from './apiResponseObjectABTestDTO';
|
|
@@ -95,6 +96,7 @@ export * from './apiResponseObjectSlicexChartResponse';
|
|
|
95
96
|
export * from './apiResponseObjectSlicexListResponse';
|
|
96
97
|
export * from './apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
97
98
|
export * from './apiResponseObjectStrategyDTO';
|
|
99
|
+
export * from './apiResponseObjectStrategyOptimizationDataResponse';
|
|
98
100
|
export * from './apiResponseObjectStrategyQuickEditDTO';
|
|
99
101
|
export * from './apiResponseObjectTag';
|
|
100
102
|
export * from './apiResponseObjectTemplateThemeDTO';
|
|
@@ -263,7 +265,10 @@ export * from './strategyCreativeAssociationResponseDTO';
|
|
|
263
265
|
export * from './strategyDTO';
|
|
264
266
|
export * from './strategyInlineDTO';
|
|
265
267
|
export * from './strategyListEditField';
|
|
268
|
+
export * from './strategyOptBlockTargetingReq';
|
|
269
|
+
export * from './strategyOptimizationDataResponse';
|
|
266
270
|
export * from './strategyQuickEditDTO';
|
|
271
|
+
export * from './strategyTargettingPerformanceData';
|
|
267
272
|
export * from './strategyTemplateDTO';
|
|
268
273
|
export * from './strategyTemplateResponse';
|
|
269
274
|
export * from './strategyUpdateResponse';
|
package/model/slicexData.d.ts
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
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 StrategyOptBlockTargetingReq {
|
|
13
|
+
aggregatorIds?: Array<number>;
|
|
14
|
+
siteIds?: Array<number>;
|
|
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
|
+
}
|
|
@@ -16,10 +16,6 @@ export interface VideoProperties {
|
|
|
16
16
|
companionPath?: number;
|
|
17
17
|
companionWidth?: number;
|
|
18
18
|
durationInSec?: number;
|
|
19
|
-
resizeBitRate?: string;
|
|
20
|
-
resizeHeight?: number;
|
|
21
|
-
resizeSize?: string;
|
|
22
|
-
resizeWidth?: number;
|
|
23
19
|
}
|
|
24
20
|
export declare namespace VideoProperties {
|
|
25
21
|
type CampanionTypeEnum = 'NO_COMPANION' | 'COMPANION_IMAGE' | 'COMPANION_HTML' | 'COMPANION_IFRAME' | 'COMPANION_FLASH';
|