@revxui/api-clients-ts 0.10.208 → 0.10.211
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 +67 -0
- package/bundles/revxui-api-clients-ts.umd.js +173 -27
- 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/api/strategyController.service.js +164 -1
- package/esm2015/model/aBTestDTO.js +1 -0
- package/esm2015/model/{creativeSetListEditField.js → apiListResponseABTestDTO.js} +1 -1
- package/esm2015/model/apiResponseObjectABTestDTO.js +1 -0
- package/esm2015/model/apiResponseObjectlong.js +12 -0
- package/esm2015/model/bulkEditStrategiesDTO.js +1 -1
- package/esm2015/model/models.js +1 -2
- package/esm2015/model/strategyDTO.js +1 -1
- package/esm5/api/strategyController.service.js +174 -1
- package/esm5/model/aBTestDTO.js +1 -0
- package/esm5/model/{creativeSetListEditField.js → apiListResponseABTestDTO.js} +1 -1
- package/esm5/model/apiResponseObjectABTestDTO.js +1 -0
- package/esm5/model/apiResponseObjectlong.js +12 -0
- package/esm5/model/bulkEditStrategiesDTO.js +1 -1
- package/esm5/model/models.js +1 -2
- package/esm5/model/strategyDTO.js +1 -1
- package/fesm2015/revxui-api-clients-ts.js +164 -28
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +174 -28
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/aBTestDTO.d.ts +32 -0
- package/model/{creativeSetListEditField.d.ts → apiListResponseABTestDTO.d.ts} +4 -4
- package/model/apiResponseObjectABTestDTO.d.ts +17 -0
- package/model/apiResponseObjectlong.d.ts +16 -0
- package/model/bulkEditStrategiesDTO.d.ts +0 -2
- package/model/creativeSetDashboardMetric.d.ts +10 -10
- package/model/creativeSetDetails.d.ts +10 -10
- package/model/creativeSetRequest.d.ts +10 -10
- package/model/creativeSetResponse.d.ts +10 -10
- package/model/models.d.ts +4 -2
- package/model/strategyDTO.d.ts +0 -2
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/baseModelWithCreativeSetType.js +0 -27
- package/esm5/model/baseModelWithCreativeSetType.js +0 -27
- package/model/baseModelWithCreativeSetType.d.ts +0 -31
|
@@ -0,0 +1,32 @@
|
|
|
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 { BaseModel } from './baseModel';
|
|
13
|
+
import { CreativeSetDetails } from './creativeSetDetails';
|
|
14
|
+
export interface ABTestDTO {
|
|
15
|
+
active?: boolean;
|
|
16
|
+
canEdit?: boolean;
|
|
17
|
+
completed?: boolean;
|
|
18
|
+
createdBy?: number;
|
|
19
|
+
creationTime?: number;
|
|
20
|
+
creativeSets?: Array<CreativeSetDetails>;
|
|
21
|
+
endTime?: string;
|
|
22
|
+
endTimeUtc?: number;
|
|
23
|
+
id?: number;
|
|
24
|
+
isArchived?: boolean;
|
|
25
|
+
modifiedBy?: number;
|
|
26
|
+
modifiedTime?: number;
|
|
27
|
+
name?: string;
|
|
28
|
+
startTime?: string;
|
|
29
|
+
startTimeUtc?: number;
|
|
30
|
+
strategyId?: number;
|
|
31
|
+
timezone?: BaseModel;
|
|
32
|
+
}
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
13
|
-
export interface
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
import { ABTestDTO } from './aBTestDTO';
|
|
13
|
+
export interface ApiListResponseABTestDTO {
|
|
14
|
+
data?: Array<ABTestDTO>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
16
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 { ABTestDTO } from './aBTestDTO';
|
|
13
|
+
export interface ApiResponseObjectABTestDTO {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: ABTestDTO;
|
|
17
|
+
}
|
|
@@ -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
|
+
export interface ApiResponseObjectlong {
|
|
13
|
+
error?: Error;
|
|
14
|
+
respId?: string;
|
|
15
|
+
respObject?: number;
|
|
16
|
+
}
|
|
@@ -16,7 +16,6 @@ import { BaseModel } from './baseModel';
|
|
|
16
16
|
import { BaseModelEditField } from './baseModelEditField';
|
|
17
17
|
import { BigDecimalEditField } from './bigDecimalEditField';
|
|
18
18
|
import { CreativeListEditField } from './creativeListEditField';
|
|
19
|
-
import { CreativeSetListEditField } from './creativeSetListEditField';
|
|
20
19
|
import { DayPartEditField } from './dayPartEditField';
|
|
21
20
|
import { DealCategoryEditField } from './dealCategoryEditField';
|
|
22
21
|
import { FcapEditField } from './fcapEditField';
|
|
@@ -34,7 +33,6 @@ export interface BulkEditStrategiesDTO {
|
|
|
34
33
|
bidCapMin?: BigDecimalEditField;
|
|
35
34
|
boostBidPrice?: IntegerEditField;
|
|
36
35
|
budgetValue?: BigDecimalEditField;
|
|
37
|
-
creativeSets?: CreativeSetListEditField;
|
|
38
36
|
creatives?: CreativeListEditField;
|
|
39
37
|
daysTargeting?: DayPartEditField;
|
|
40
38
|
dealAudienceTargeting?: DealCategoryEditField;
|
|
@@ -62,15 +62,15 @@ export interface CreativeSetDashboardMetric {
|
|
|
62
62
|
export declare namespace CreativeSetDashboardMetric {
|
|
63
63
|
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
64
64
|
const CreativeSetTypeEnum: {
|
|
65
|
-
IMAGE:
|
|
66
|
-
VIDEO:
|
|
67
|
-
THIRDPARTYADTAGS:
|
|
68
|
-
ZIPPEDHTML:
|
|
69
|
-
NATIVEIMAGE:
|
|
70
|
-
NATIVEVIDEO:
|
|
71
|
-
DYNAMICIMAGE:
|
|
72
|
-
DYNAMICMACRO:
|
|
73
|
-
DYNAMICHTML:
|
|
74
|
-
DYNAMICVIDEO:
|
|
65
|
+
IMAGE: CreativeSetTypeEnum;
|
|
66
|
+
VIDEO: CreativeSetTypeEnum;
|
|
67
|
+
THIRDPARTYADTAGS: CreativeSetTypeEnum;
|
|
68
|
+
ZIPPEDHTML: CreativeSetTypeEnum;
|
|
69
|
+
NATIVEIMAGE: CreativeSetTypeEnum;
|
|
70
|
+
NATIVEVIDEO: CreativeSetTypeEnum;
|
|
71
|
+
DYNAMICIMAGE: CreativeSetTypeEnum;
|
|
72
|
+
DYNAMICMACRO: CreativeSetTypeEnum;
|
|
73
|
+
DYNAMICHTML: CreativeSetTypeEnum;
|
|
74
|
+
DYNAMICVIDEO: CreativeSetTypeEnum;
|
|
75
75
|
};
|
|
76
76
|
}
|
|
@@ -40,15 +40,15 @@ export interface CreativeSetDetails {
|
|
|
40
40
|
export declare namespace CreativeSetDetails {
|
|
41
41
|
type TypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
42
42
|
const TypeEnum: {
|
|
43
|
-
IMAGE: import("./
|
|
44
|
-
VIDEO: import("./
|
|
45
|
-
THIRDPARTYADTAGS: import("./
|
|
46
|
-
ZIPPEDHTML: import("./
|
|
47
|
-
NATIVEIMAGE: import("./
|
|
48
|
-
NATIVEVIDEO: import("./
|
|
49
|
-
DYNAMICIMAGE: import("./
|
|
50
|
-
DYNAMICMACRO: import("./
|
|
51
|
-
DYNAMICHTML: import("./
|
|
52
|
-
DYNAMICVIDEO: import("./
|
|
43
|
+
IMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
44
|
+
VIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
45
|
+
THIRDPARTYADTAGS: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
46
|
+
ZIPPEDHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
47
|
+
NATIVEIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
48
|
+
NATIVEVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
49
|
+
DYNAMICIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
50
|
+
DYNAMICMACRO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
51
|
+
DYNAMICHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
52
|
+
DYNAMICVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -40,15 +40,15 @@ export interface CreativeSetRequest {
|
|
|
40
40
|
export declare namespace CreativeSetRequest {
|
|
41
41
|
type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
42
42
|
const CreativeSetTypeEnum: {
|
|
43
|
-
IMAGE: import("./
|
|
44
|
-
VIDEO: import("./
|
|
45
|
-
THIRDPARTYADTAGS: import("./
|
|
46
|
-
ZIPPEDHTML: import("./
|
|
47
|
-
NATIVEIMAGE: import("./
|
|
48
|
-
NATIVEVIDEO: import("./
|
|
49
|
-
DYNAMICIMAGE: import("./
|
|
50
|
-
DYNAMICMACRO: import("./
|
|
51
|
-
DYNAMICHTML: import("./
|
|
52
|
-
DYNAMICVIDEO: import("./
|
|
43
|
+
IMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
44
|
+
VIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
45
|
+
THIRDPARTYADTAGS: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
46
|
+
ZIPPEDHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
47
|
+
NATIVEIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
48
|
+
NATIVEVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
49
|
+
DYNAMICIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
50
|
+
DYNAMICMACRO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
51
|
+
DYNAMICHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
52
|
+
DYNAMICVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -18,15 +18,15 @@ export interface CreativeSetResponse {
|
|
|
18
18
|
export declare namespace CreativeSetResponse {
|
|
19
19
|
type OtherCreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO';
|
|
20
20
|
const OtherCreativeSetTypeEnum: {
|
|
21
|
-
IMAGE: import("./
|
|
22
|
-
VIDEO: import("./
|
|
23
|
-
THIRDPARTYADTAGS: import("./
|
|
24
|
-
ZIPPEDHTML: import("./
|
|
25
|
-
NATIVEIMAGE: import("./
|
|
26
|
-
NATIVEVIDEO: import("./
|
|
27
|
-
DYNAMICIMAGE: import("./
|
|
28
|
-
DYNAMICMACRO: import("./
|
|
29
|
-
DYNAMICHTML: import("./
|
|
30
|
-
DYNAMICVIDEO: import("./
|
|
21
|
+
IMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
22
|
+
VIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
23
|
+
THIRDPARTYADTAGS: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
24
|
+
ZIPPEDHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
25
|
+
NATIVEIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
26
|
+
NATIVEVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
27
|
+
DYNAMICIMAGE: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
28
|
+
DYNAMICMACRO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
29
|
+
DYNAMICHTML: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
30
|
+
DYNAMICVIDEO: import("./creativeSetDashboardMetric").CreativeSetDashboardMetric.CreativeSetTypeEnum;
|
|
31
31
|
};
|
|
32
32
|
}
|
package/model/models.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './aBTestDTO';
|
|
1
2
|
export * from './activityLog';
|
|
2
3
|
export * from './activityLogsStrategyBulkUpdateDTO';
|
|
3
4
|
export * from './advertiser';
|
|
@@ -5,6 +6,7 @@ export * from './advertiserDynamicDetails';
|
|
|
5
6
|
export * from './advertiserLayoutVariables';
|
|
6
7
|
export * from './advertiserPojo';
|
|
7
8
|
export * from './advertiserSettings';
|
|
9
|
+
export * from './apiListResponseABTestDTO';
|
|
8
10
|
export * from './apiListResponseActivityLog';
|
|
9
11
|
export * from './apiListResponseActivityLogsStrategyBulkUpdateDTO';
|
|
10
12
|
export * from './apiListResponseAudienceESDTO';
|
|
@@ -17,6 +19,7 @@ export * from './apiListResponseCreativeTemplateDTO';
|
|
|
17
19
|
export * from './apiListResponseMacro';
|
|
18
20
|
export * from './apiListResponsePixel';
|
|
19
21
|
export * from './apiListResponseVariablesMappingDTO';
|
|
22
|
+
export * from './apiResponseObjectABTestDTO';
|
|
20
23
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
21
24
|
export * from './apiResponseObjectAdvertiserPojo';
|
|
22
25
|
export * from './apiResponseObjectAdvertiserSettings';
|
|
@@ -85,6 +88,7 @@ export * from './apiResponseObjectTemplateThemeDTO';
|
|
|
85
88
|
export * from './apiResponseObjectVoid';
|
|
86
89
|
export * from './apiResponseObjectWhitelabelingEntity';
|
|
87
90
|
export * from './apiResponseObjectboolean';
|
|
91
|
+
export * from './apiResponseObjectlong';
|
|
88
92
|
export * from './apiResponseObjectstring';
|
|
89
93
|
export * from './appSettingsDTO';
|
|
90
94
|
export * from './appSettingsPropertyDTO';
|
|
@@ -101,7 +105,6 @@ export * from './auditMarker';
|
|
|
101
105
|
export * from './bIgIntegerEditFiled';
|
|
102
106
|
export * from './baseModel';
|
|
103
107
|
export * from './baseModelEditField';
|
|
104
|
-
export * from './baseModelWithCreativeSetType';
|
|
105
108
|
export * from './bigDecimalEditField';
|
|
106
109
|
export * from './bulkEditStrategiesDTO';
|
|
107
110
|
export * from './bulkEditStrategiesResponse';
|
|
@@ -130,7 +133,6 @@ export * from './creativeMockUpsDTO';
|
|
|
130
133
|
export * from './creativePerformanceData';
|
|
131
134
|
export * from './creativeSetDashboardMetric';
|
|
132
135
|
export * from './creativeSetDetails';
|
|
133
|
-
export * from './creativeSetListEditField';
|
|
134
136
|
export * from './creativeSetRequest';
|
|
135
137
|
export * from './creativeSetResponse';
|
|
136
138
|
export * from './creativeStrategyAssociationStatus';
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { AudienceStrDTO } from './audienceStrDTO';
|
|
13
13
|
import { BaseModel } from './baseModel';
|
|
14
|
-
import { BaseModelWithCreativeSetType } from './baseModelWithCreativeSetType';
|
|
15
14
|
import { DayPart } from './dayPart';
|
|
16
15
|
import { DealCategoryDTO } from './dealCategoryDTO';
|
|
17
16
|
import { RTBAggregators } from './rTBAggregators';
|
|
@@ -44,7 +43,6 @@ export interface StrategyDTO {
|
|
|
44
43
|
cpaTargetValue?: number;
|
|
45
44
|
createdBy?: number;
|
|
46
45
|
creationTime?: number;
|
|
47
|
-
creativeSets?: Array<BaseModelWithCreativeSetType>;
|
|
48
46
|
creatives?: Array<BaseModel>;
|
|
49
47
|
currency?: BaseModel;
|
|
50
48
|
currencyCode?: string;
|