@revxui/api-clients-ts 1.1.76 → 1.1.78
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/dashboardController.service.d.ts +24 -24
- package/api/strategyController.service.d.ts +10 -10
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/dashboardController.service.js +1 -1
- package/esm2015/api/strategyController.service.js +1 -1
- package/esm2015/model/apiResponseObjectStrategyOptRecommendationResponse.js +2 -0
- package/esm2015/model/models.js +3 -2
- package/esm2015/model/strategyDTO.js +1 -1
- package/esm2015/model/strategyOptRecommendationResponse.js +2 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiResponseObjectStrategyOptRecommendationResponse.d.ts +17 -0
- package/model/models.d.ts +2 -1
- package/model/strategyDTO.d.ts +1 -0
- package/model/{apiListResponseStrategyTargettingPerformanceData.d.ts → strategyOptRecommendationResponse.d.ts} +3 -3
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +0 -2
|
@@ -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 { StrategyOptRecommendationResponse } from './strategyOptRecommendationResponse';
|
|
13
|
+
export interface ApiResponseObjectStrategyOptRecommendationResponse {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: StrategyOptRecommendationResponse;
|
|
17
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export * from './apiListResponseCreativeTemplateDTO';
|
|
|
23
23
|
export * from './apiListResponseMacro';
|
|
24
24
|
export * from './apiListResponsePixel';
|
|
25
25
|
export * from './apiListResponseSizeWithPreview';
|
|
26
|
-
export * from './apiListResponseStrategyTargettingPerformanceData';
|
|
27
26
|
export * from './apiListResponseStrategyTemplateResponse';
|
|
28
27
|
export * from './apiListResponseVariablesMappingDTO';
|
|
29
28
|
export * from './apiResponseObjectABTestDTO';
|
|
@@ -98,6 +97,7 @@ export * from './apiResponseObjectSlicexChartResponse';
|
|
|
98
97
|
export * from './apiResponseObjectSlicexListResponse';
|
|
99
98
|
export * from './apiResponseObjectStrategyCreativeAssociationResponseDTO';
|
|
100
99
|
export * from './apiResponseObjectStrategyDTO';
|
|
100
|
+
export * from './apiResponseObjectStrategyOptRecommendationResponse';
|
|
101
101
|
export * from './apiResponseObjectStrategyOptimizationDataResponse';
|
|
102
102
|
export * from './apiResponseObjectStrategyQuickEditDTO';
|
|
103
103
|
export * from './apiResponseObjectTag';
|
|
@@ -271,6 +271,7 @@ export * from './strategyDTO';
|
|
|
271
271
|
export * from './strategyInlineDTO';
|
|
272
272
|
export * from './strategyListEditField';
|
|
273
273
|
export * from './strategyOptBlockTargetingReq';
|
|
274
|
+
export * from './strategyOptRecommendationResponse';
|
|
274
275
|
export * from './strategyOptimizationDataResponse';
|
|
275
276
|
export * from './strategyQuickEditDTO';
|
|
276
277
|
export * from './strategyTargettingPerformanceData';
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ export interface StrategyDTO {
|
|
|
80
80
|
pricingType?: BaseModel;
|
|
81
81
|
pricingTypeId?: number;
|
|
82
82
|
pricingValue?: number;
|
|
83
|
+
productFeedTargeting?: Array<BaseModel>;
|
|
83
84
|
productSelectionPolicy?: StrategyDTO.ProductSelectionPolicyEnum;
|
|
84
85
|
publisherTypes?: Array<StrategyDTO.PublisherTypesEnum>;
|
|
85
86
|
roiTargetType?: BaseModel;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { StrategyTargettingPerformanceData } from './strategyTargettingPerformanceData';
|
|
13
|
-
export interface
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
export interface StrategyOptRecommendationResponse {
|
|
14
|
+
currencyCode?: string;
|
|
15
|
+
recommendationList?: Array<StrategyTargettingPerformanceData>;
|
|
16
16
|
}
|