@revxui/api-clients-ts 1.1.0 → 1.1.2
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 +129 -24
- 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 -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/apiListResponseStrategyTargettingPerformanceData.js +2 -0
- package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/models.js +6 -1
- package/esm2015/model/strategyOptBlockTargetingReq.js +13 -0
- package/esm2015/model/strategyOptimizationDataResponse.js +2 -0
- package/esm2015/model/strategyTargettingPerformanceData.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +147 -24
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +16 -0
- package/model/apiResponseObjectStrategyOptimizationDataResponse.d.ts +17 -0
- package/model/models.d.ts +5 -0
- package/model/strategyOptBlockTargetingReq.d.ts +15 -0
- package/model/strategyOptimizationDataResponse.d.ts +17 -0
- package/model/strategyTargettingPerformanceData.d.ts +24 -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 { 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/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 './apiListResponseVariablesMappingDTO';
|
|
27
28
|
export * from './apiResponseObjectABTestDTO';
|
|
28
29
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
@@ -94,6 +95,7 @@ export * from './apiResponseObjectSlicexChartResponse';
|
|
|
94
95
|
export * from './apiResponseObjectSlicexListResponse';
|
|
95
96
|
export * from './apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
96
97
|
export * from './apiResponseObjectStrategyDTO';
|
|
98
|
+
export * from './apiResponseObjectStrategyOptimizationDataResponse';
|
|
97
99
|
export * from './apiResponseObjectStrategyQuickEditDTO';
|
|
98
100
|
export * from './apiResponseObjectTag';
|
|
99
101
|
export * from './apiResponseObjectTemplateThemeDTO';
|
|
@@ -262,7 +264,10 @@ export * from './strategyCreativeAssociationResponseDTO';
|
|
|
262
264
|
export * from './strategyDTO';
|
|
263
265
|
export * from './strategyInlineDTO';
|
|
264
266
|
export * from './strategyListEditField';
|
|
267
|
+
export * from './strategyOptBlockTargetingReq';
|
|
268
|
+
export * from './strategyOptimizationDataResponse';
|
|
265
269
|
export * from './strategyQuickEditDTO';
|
|
270
|
+
export * from './strategyTargettingPerformanceData';
|
|
266
271
|
export * from './strategyUpdateResponse';
|
|
267
272
|
export * from './stringEditField';
|
|
268
273
|
export * from './tag';
|
|
@@ -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
|
+
}
|