@revxui/api-clients-ts 1.1.321 → 1.1.333
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/campaignController.service.d.ts +14 -0
- package/api/strategyController.service.d.ts +14 -0
- package/esm2020/api/campaignController.service.mjs +40 -1
- package/esm2020/api/strategyController.service.mjs +35 -1
- package/esm2020/model/apiResponseObjectCampaignDTOList.mjs +2 -0
- package/esm2020/model/apiResponseObjectListStrategy.mjs +2 -0
- package/esm2020/model/budgetCapStrategyDTO.mjs +2 -0
- package/esm2020/model/budgetCheckStrategy.mjs +13 -0
- package/esm2020/model/campaignDTO.mjs +1 -1
- package/esm2020/model/campaignDTOList.mjs +2 -0
- package/esm2020/model/campaignESDTO.mjs +1 -1
- package/esm2020/model/models.mjs +6 -1
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +73 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +85 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectCampaignDTOList.d.ts +17 -0
- package/model/apiResponseObjectListStrategy.d.ts +17 -0
- package/model/budgetCapStrategyDTO.d.ts +20 -0
- package/model/budgetCheckStrategy.d.ts +17 -0
- package/model/campaignDTO.d.ts +1 -0
- package/model/campaignDTOList.d.ts +15 -0
- package/model/campaignESDTO.d.ts +1 -0
- package/model/models.d.ts +5 -0
- package/model/strategy.d.ts +1 -0
- package/model/strategyDTO.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 { CampaignDTOList } from './campaignDTOList';
|
|
13
|
+
export interface ApiResponseObjectCampaignDTOList {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: CampaignDTOList;
|
|
17
|
+
}
|
|
@@ -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 { Strategy } from './strategy';
|
|
13
|
+
export interface ApiResponseObjectListStrategy {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: Array<Strategy>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { BudgetCheckStrategy } from './budgetCheckStrategy';
|
|
13
|
+
export interface BudgetCapStrategyDTO {
|
|
14
|
+
campaignDailyAdvSpendBudget?: number;
|
|
15
|
+
campaignDailyMediaBudget?: number;
|
|
16
|
+
flowRate?: number;
|
|
17
|
+
newPricingId?: number;
|
|
18
|
+
oldPricingId?: number;
|
|
19
|
+
strategies?: Array<BudgetCheckStrategy>;
|
|
20
|
+
}
|
|
@@ -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
|
+
export interface BudgetCheckStrategy {
|
|
13
|
+
id?: number;
|
|
14
|
+
updateAdvDailySpendBudget?: boolean;
|
|
15
|
+
updateMediaBudget?: boolean;
|
|
16
|
+
updatePacingType?: boolean;
|
|
17
|
+
}
|
package/model/campaignDTO.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
|
+
import { CampaignDTO } from './campaignDTO';
|
|
13
|
+
export interface CampaignDTOList {
|
|
14
|
+
campaigns?: Array<CampaignDTO>;
|
|
15
|
+
}
|
package/model/campaignESDTO.d.ts
CHANGED
package/model/models.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ export * from './apiResponseObjectBulkEditCreativeSetsResponse';
|
|
|
69
69
|
export * from './apiResponseObjectBulkEditStrategiesResponse';
|
|
70
70
|
export * from './apiResponseObjectBulkstrategiesUpdateResponse';
|
|
71
71
|
export * from './apiResponseObjectCampaignDTO';
|
|
72
|
+
export * from './apiResponseObjectCampaignDTOList';
|
|
72
73
|
export * from './apiResponseObjectCatalogFeed';
|
|
73
74
|
export * from './apiResponseObjectChartDashboardResponse';
|
|
74
75
|
export * from './apiResponseObjectClickDestination';
|
|
@@ -105,6 +106,7 @@ export * from './apiResponseObjectListCreativeFiles';
|
|
|
105
106
|
export * from './apiResponseObjectListDynamicVideoTemplate';
|
|
106
107
|
export * from './apiResponseObjectListIncrementalityTestDetails';
|
|
107
108
|
export * from './apiResponseObjectListMenuCrubResponse';
|
|
109
|
+
export * from './apiResponseObjectListStrategy';
|
|
108
110
|
export * from './apiResponseObjectListStrategyCreativeSetsCloneDataResponse';
|
|
109
111
|
export * from './apiResponseObjectListTemplateThemeDTO';
|
|
110
112
|
export * from './apiResponseObjectListTemplateVariablesDTO';
|
|
@@ -166,6 +168,8 @@ export * from './bidToConversionFilterDTO';
|
|
|
166
168
|
export * from './bidToConversionFilterMap';
|
|
167
169
|
export * from './bigDecimalEditField';
|
|
168
170
|
export * from './booleanEditField';
|
|
171
|
+
export * from './budgetCapStrategyDTO';
|
|
172
|
+
export * from './budgetCheckStrategy';
|
|
169
173
|
export * from './bulkEditCreativeSetsDTO';
|
|
170
174
|
export * from './bulkEditCreativeSetsListDTO';
|
|
171
175
|
export * from './bulkEditCreativeSetsResponse';
|
|
@@ -179,6 +183,7 @@ export * from './bulkstrategiesValidationResponse';
|
|
|
179
183
|
export * from './cSSThemeEntity';
|
|
180
184
|
export * from './cTVTargeting';
|
|
181
185
|
export * from './campaignDTO';
|
|
186
|
+
export * from './campaignDTOList';
|
|
182
187
|
export * from './campaignESDTO';
|
|
183
188
|
export * from './catalogFeed';
|
|
184
189
|
export * from './chartDashboardResponse';
|
package/model/strategy.d.ts
CHANGED
package/model/strategyDTO.d.ts
CHANGED