@revxui/api-clients-ts 0.10.207 → 0.10.210
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/auditController.service.d.ts +6 -6
- package/api/dashboardController.service.d.ts +9 -9
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/auditController.service.js +1 -1
- package/esm2015/api/dashboardController.service.js +1 -1
- package/esm2015/model/bulkEditStrategiesDTO.js +1 -1
- package/esm2015/model/dashboardData.js +1 -1
- package/esm2015/model/integerEditField.js +12 -0
- package/esm2015/model/models.js +1 -1
- package/esm5/api/auditController.service.js +1 -1
- package/esm5/api/dashboardController.service.js +1 -1
- package/esm5/model/bulkEditStrategiesDTO.js +1 -1
- package/esm5/model/dashboardData.js +1 -1
- package/esm5/model/integerEditField.js +12 -0
- package/esm5/model/models.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/bulkEditStrategiesDTO.d.ts +2 -0
- package/model/dashboardData.d.ts +2 -0
- package/model/integerEditField.d.ts +15 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -20,6 +20,7 @@ import { CreativeSetListEditField } from './creativeSetListEditField';
|
|
|
20
20
|
import { DayPartEditField } from './dayPartEditField';
|
|
21
21
|
import { DealCategoryEditField } from './dealCategoryEditField';
|
|
22
22
|
import { FcapEditField } from './fcapEditField';
|
|
23
|
+
import { IntegerEditField } from './integerEditField';
|
|
23
24
|
import { RTBAggregatorsEditField } from './rTBAggregatorsEditField';
|
|
24
25
|
import { RTBSitesEditField } from './rTBSitesEditField';
|
|
25
26
|
import { StringEditField } from './stringEditField';
|
|
@@ -31,6 +32,7 @@ export interface BulkEditStrategiesDTO {
|
|
|
31
32
|
auctionTargeting?: AuctionTypeEditField;
|
|
32
33
|
bidCapMax?: BigDecimalEditField;
|
|
33
34
|
bidCapMin?: BigDecimalEditField;
|
|
35
|
+
boostBidPrice?: IntegerEditField;
|
|
34
36
|
budgetValue?: BigDecimalEditField;
|
|
35
37
|
creativeSets?: CreativeSetListEditField;
|
|
36
38
|
creatives?: CreativeListEditField;
|
package/model/dashboardData.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { Advertiser } from './advertiser';
|
|
13
|
+
import { BaseModel } from './baseModel';
|
|
13
14
|
import { CampaignESDTO } from './campaignESDTO';
|
|
14
15
|
import { Creative } from './creative';
|
|
15
16
|
import { Strategy } from './strategy';
|
|
@@ -19,6 +20,7 @@ export interface DashboardData {
|
|
|
19
20
|
advertiser?: Advertiser;
|
|
20
21
|
bidsPlaced?: number;
|
|
21
22
|
campaign?: CampaignESDTO;
|
|
23
|
+
category?: BaseModel;
|
|
22
24
|
clickConversions?: number;
|
|
23
25
|
clickInstalls?: number;
|
|
24
26
|
clicks?: number;
|
|
@@ -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 IntegerEditField {
|
|
13
|
+
action?: string;
|
|
14
|
+
value?: number;
|
|
15
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from './fileDownloadResponse';
|
|
|
166
166
|
export * from './filterModel';
|
|
167
167
|
export * from './geoListDTO';
|
|
168
168
|
export * from './geoListRequest';
|
|
169
|
+
export * from './integerEditField';
|
|
169
170
|
export * from './macro';
|
|
170
171
|
export * from './mapintResponseMessage';
|
|
171
172
|
export * from './maplongResponseMessage';
|