@revxui/api-clients-ts 0.10.201 → 0.10.202
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/bundles/revxui-api-clients-ts.umd.js +7 -0
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/model/audienceDTO.js +8 -1
- package/esm2015/model/bulkEditStrategiesDTO.js +1 -1
- package/esm2015/model/integerEditField.js +12 -0
- package/esm2015/model/models.js +1 -1
- package/esm5/model/audienceDTO.js +8 -1
- package/esm5/model/bulkEditStrategiesDTO.js +1 -1
- package/esm5/model/integerEditField.js +12 -0
- package/esm5/model/models.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +7 -0
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +7 -0
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/audienceDTO.d.ts +10 -1
- package/model/bulkEditStrategiesDTO.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
package/model/audienceDTO.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export interface AudienceDTO {
|
|
|
19
19
|
advertiser?: BaseModel;
|
|
20
20
|
audienceBackFilledStatsList?: Array<AudienceBackFilledStats>;
|
|
21
21
|
audienceType?: AudienceDTO.AudienceTypeEnum;
|
|
22
|
+
backfillDuration?: number;
|
|
23
|
+
backfillDurationUnit?: AudienceDTO.BackfillDurationUnitEnum;
|
|
22
24
|
backfillRuleExpression?: RuleDTO;
|
|
23
25
|
backfilled?: boolean;
|
|
24
26
|
backfilledUU?: number;
|
|
@@ -44,7 +46,6 @@ export interface AudienceDTO {
|
|
|
44
46
|
remoteSegmentId?: string;
|
|
45
47
|
ruleExpression?: RuleDTO;
|
|
46
48
|
segmentType?: number;
|
|
47
|
-
showBackfill?: boolean;
|
|
48
49
|
status?: string;
|
|
49
50
|
totalUU?: number;
|
|
50
51
|
uploadStatus?: string;
|
|
@@ -65,6 +66,14 @@ export declare namespace AudienceDTO {
|
|
|
65
66
|
LOOKALIKEAUDIENCE: import("./audienceESDTO").AudienceESDTO.AudienceTypeEnum;
|
|
66
67
|
FACEBOOKID: import("./audienceESDTO").AudienceESDTO.AudienceTypeEnum;
|
|
67
68
|
};
|
|
69
|
+
type BackfillDurationUnitEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH';
|
|
70
|
+
const BackfillDurationUnitEnum: {
|
|
71
|
+
MINUTE: RuleDTO.DurationUnitEnum;
|
|
72
|
+
HOUR: RuleDTO.DurationUnitEnum;
|
|
73
|
+
DAY: RuleDTO.DurationUnitEnum;
|
|
74
|
+
WEEK: RuleDTO.DurationUnitEnum;
|
|
75
|
+
MONTH: RuleDTO.DurationUnitEnum;
|
|
76
|
+
};
|
|
68
77
|
type DurationUnitEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH';
|
|
69
78
|
const DurationUnitEnum: {
|
|
70
79
|
MINUTE: RuleDTO.DurationUnitEnum;
|
|
@@ -19,6 +19,7 @@ import { CreativeListEditField } from './creativeListEditField';
|
|
|
19
19
|
import { DayPartEditField } from './dayPartEditField';
|
|
20
20
|
import { DealCategoryEditField } from './dealCategoryEditField';
|
|
21
21
|
import { FcapEditField } from './fcapEditField';
|
|
22
|
+
import { IntegerEditField } from './integerEditField';
|
|
22
23
|
import { RTBAggregatorsEditField } from './rTBAggregatorsEditField';
|
|
23
24
|
import { RTBSitesEditField } from './rTBSitesEditField';
|
|
24
25
|
import { StringEditField } from './stringEditField';
|
|
@@ -30,6 +31,7 @@ export interface BulkEditStrategiesDTO {
|
|
|
30
31
|
auctionTargeting?: AuctionTypeEditField;
|
|
31
32
|
bidCapMax?: BigDecimalEditField;
|
|
32
33
|
bidCapMin?: BigDecimalEditField;
|
|
34
|
+
boostBidPrice?: IntegerEditField;
|
|
33
35
|
budgetValue?: BigDecimalEditField;
|
|
34
36
|
creatives?: CreativeListEditField;
|
|
35
37
|
daysTargeting?: DayPartEditField;
|
|
@@ -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
|
@@ -167,6 +167,7 @@ export * from './fileDownloadResponse';
|
|
|
167
167
|
export * from './filterModel';
|
|
168
168
|
export * from './geoListDTO';
|
|
169
169
|
export * from './geoListRequest';
|
|
170
|
+
export * from './integerEditField';
|
|
170
171
|
export * from './macro';
|
|
171
172
|
export * from './mapintResponseMessage';
|
|
172
173
|
export * from './maplongResponseMessage';
|