@revxui/api-clients-ts 0.10.291 → 0.10.293
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/creativeSetsController.service.d.ts +29 -0
- package/bundles/revxui-api-clients-ts.umd.js +85 -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/api/creativeSetsController.service.js +71 -1
- package/esm2015/model/activityLogsCreativeSetsBulkUpdateDTO.js +11 -0
- package/esm2015/model/apiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +1 -0
- package/esm2015/model/apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +1 -0
- package/esm2015/model/apiResponseObjectBulkEditCreativeSetsResponse.js +1 -0
- package/esm2015/model/booleanEditField.js +12 -0
- package/esm2015/model/bulkEditCreativeSetsDTO.js +1 -0
- package/esm2015/model/bulkEditCreativeSetsListDTO.js +1 -0
- package/esm2015/model/bulkEditCreativeSetsResponse.js +1 -0
- package/esm2015/model/campaignESDTO.js +1 -1
- package/esm2015/model/failedDTO.js +12 -0
- package/esm2015/model/models.js +2 -1
- package/esm2015/model/strategyListEditField.js +1 -0
- package/esm5/api/creativeSetsController.service.js +75 -1
- package/esm5/model/activityLogsCreativeSetsBulkUpdateDTO.js +11 -0
- package/esm5/model/apiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +1 -0
- package/esm5/model/apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO.js +1 -0
- package/esm5/model/apiResponseObjectBulkEditCreativeSetsResponse.js +1 -0
- package/esm5/model/booleanEditField.js +12 -0
- package/esm5/model/bulkEditCreativeSetsDTO.js +1 -0
- package/esm5/model/bulkEditCreativeSetsListDTO.js +1 -0
- package/esm5/model/bulkEditCreativeSetsResponse.js +1 -0
- package/esm5/model/campaignESDTO.js +1 -1
- package/esm5/model/failedDTO.js +12 -0
- package/esm5/model/models.js +2 -1
- package/esm5/model/strategyListEditField.js +1 -0
- package/fesm2015/revxui-api-clients-ts.js +82 -1
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/fesm5/revxui-api-clients-ts.js +86 -1
- package/fesm5/revxui-api-clients-ts.js.map +1 -1
- package/model/activityLogsCreativeSetsBulkUpdateDTO.d.ts +33 -0
- package/model/apiListResponseActivityLogsCreativeSetsBulkUpdateDTO.d.ts +16 -0
- package/model/apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO.d.ts +17 -0
- package/model/apiResponseObjectBulkEditCreativeSetsResponse.d.ts +17 -0
- package/model/booleanEditField.d.ts +15 -0
- package/model/bulkEditCreativeSetsDTO.d.ts +25 -0
- package/model/bulkEditCreativeSetsListDTO.d.ts +17 -0
- package/model/bulkEditCreativeSetsResponse.d.ts +21 -0
- package/model/campaignESDTO.d.ts +2 -2
- package/model/failedDTO.d.ts +16 -0
- package/model/models.d.ts +10 -0
- package/model/strategyListEditField.d.ts +16 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
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 { BulkEditCreativeSetsDTO } from './bulkEditCreativeSetsDTO';
|
|
13
|
+
import { BulkEditCreativeSetsListDTO } from './bulkEditCreativeSetsListDTO';
|
|
14
|
+
export interface ActivityLogsCreativeSetsBulkUpdateDTO {
|
|
15
|
+
createdOn?: number;
|
|
16
|
+
id?: number;
|
|
17
|
+
licenseeId?: number;
|
|
18
|
+
modifiedOn?: number;
|
|
19
|
+
requestObj?: BulkEditCreativeSetsDTO;
|
|
20
|
+
responseObj?: BulkEditCreativeSetsListDTO;
|
|
21
|
+
status?: ActivityLogsCreativeSetsBulkUpdateDTO.StatusEnum;
|
|
22
|
+
userName?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace ActivityLogsCreativeSetsBulkUpdateDTO {
|
|
25
|
+
type StatusEnum = 'PENDING' | 'IN_PROGRESS' | 'FAILED' | 'SUCCESS' | 'PARTIAL_SUCCESS';
|
|
26
|
+
const StatusEnum: {
|
|
27
|
+
PENDING: import("./activityLogsStrategyBulkUpdateDTO").ActivityLogsStrategyBulkUpdateDTO.StatusEnum;
|
|
28
|
+
INPROGRESS: import("./activityLogsStrategyBulkUpdateDTO").ActivityLogsStrategyBulkUpdateDTO.StatusEnum;
|
|
29
|
+
FAILED: import("./activityLogsStrategyBulkUpdateDTO").ActivityLogsStrategyBulkUpdateDTO.StatusEnum;
|
|
30
|
+
SUCCESS: import("./activityLogsStrategyBulkUpdateDTO").ActivityLogsStrategyBulkUpdateDTO.StatusEnum;
|
|
31
|
+
PARTIALSUCCESS: import("./activityLogsStrategyBulkUpdateDTO").ActivityLogsStrategyBulkUpdateDTO.StatusEnum;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -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
|
+
import { ActivityLogsCreativeSetsBulkUpdateDTO } from './activityLogsCreativeSetsBulkUpdateDTO';
|
|
13
|
+
export interface ApiListResponseActivityLogsCreativeSetsBulkUpdateDTO {
|
|
14
|
+
data?: Array<ActivityLogsCreativeSetsBulkUpdateDTO>;
|
|
15
|
+
totalNoOfRecords?: number;
|
|
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 { ApiListResponseActivityLogsCreativeSetsBulkUpdateDTO } from './apiListResponseActivityLogsCreativeSetsBulkUpdateDTO';
|
|
13
|
+
export interface ApiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: ApiListResponseActivityLogsCreativeSetsBulkUpdateDTO;
|
|
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 { BulkEditCreativeSetsResponse } from './bulkEditCreativeSetsResponse';
|
|
13
|
+
export interface ApiResponseObjectBulkEditCreativeSetsResponse {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: BulkEditCreativeSetsResponse;
|
|
17
|
+
}
|
|
@@ -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 BooleanEditField {
|
|
13
|
+
action?: string;
|
|
14
|
+
value?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { BIgIntegerEditFiled } from './bIgIntegerEditFiled';
|
|
13
|
+
import { BaseModel } from './baseModel';
|
|
14
|
+
import { BaseModelEditField } from './baseModelEditField';
|
|
15
|
+
import { BooleanEditField } from './booleanEditField';
|
|
16
|
+
import { StrategyListEditField } from './strategyListEditField';
|
|
17
|
+
export interface BulkEditCreativeSetsDTO {
|
|
18
|
+
clickDestination?: BaseModelEditField;
|
|
19
|
+
creativeSets?: Array<BaseModel>;
|
|
20
|
+
endTime?: BIgIntegerEditFiled;
|
|
21
|
+
startTime?: BIgIntegerEditFiled;
|
|
22
|
+
status?: BooleanEditField;
|
|
23
|
+
strategiesToLink?: StrategyListEditField;
|
|
24
|
+
timezone?: BIgIntegerEditFiled;
|
|
25
|
+
}
|
|
@@ -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 { BaseModel } from './baseModel';
|
|
13
|
+
import { FailedDTO } from './failedDTO';
|
|
14
|
+
export interface BulkEditCreativeSetsListDTO {
|
|
15
|
+
failedCreativeSets?: Array<FailedDTO>;
|
|
16
|
+
updatedCreativeSets?: Array<BaseModel>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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 { FailedDTO } from './failedDTO';
|
|
14
|
+
import { FailedStrategyFieldsDTO } from './failedStrategyFieldsDTO';
|
|
15
|
+
export interface BulkEditCreativeSetsResponse {
|
|
16
|
+
code?: number;
|
|
17
|
+
failedFields?: Array<FailedStrategyFieldsDTO>;
|
|
18
|
+
invalidCreativeSets?: Array<FailedDTO>;
|
|
19
|
+
message?: string;
|
|
20
|
+
validCreativeSets?: Array<BaseModel>;
|
|
21
|
+
}
|
package/model/campaignESDTO.d.ts
CHANGED
|
@@ -26,9 +26,9 @@ export interface CampaignESDTO {
|
|
|
26
26
|
fcap?: number;
|
|
27
27
|
flowRate?: number;
|
|
28
28
|
id?: number;
|
|
29
|
-
incrementalityTest?:
|
|
29
|
+
incrementalityTest?: number;
|
|
30
30
|
isArchived?: boolean;
|
|
31
|
-
isPlacebo?:
|
|
31
|
+
isPlacebo?: number;
|
|
32
32
|
licenseeId?: number;
|
|
33
33
|
lifetimeBudget?: number;
|
|
34
34
|
lifetimeUserFcap?: number;
|
|
@@ -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 FailedDTO {
|
|
13
|
+
id?: number;
|
|
14
|
+
message?: string;
|
|
15
|
+
name?: string;
|
|
16
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './aBTestDTO';
|
|
2
2
|
export * from './activityLog';
|
|
3
|
+
export * from './activityLogsCreativeSetsBulkUpdateDTO';
|
|
3
4
|
export * from './activityLogsStrategyBulkUpdateDTO';
|
|
4
5
|
export * from './advertiser';
|
|
5
6
|
export * from './advertiserDynamicDetails';
|
|
@@ -9,6 +10,7 @@ export * from './advertiserSettings';
|
|
|
9
10
|
export * from './ageGroup';
|
|
10
11
|
export * from './apiListResponseABTestDTO';
|
|
11
12
|
export * from './apiListResponseActivityLog';
|
|
13
|
+
export * from './apiListResponseActivityLogsCreativeSetsBulkUpdateDTO';
|
|
12
14
|
export * from './apiListResponseActivityLogsStrategyBulkUpdateDTO';
|
|
13
15
|
export * from './apiListResponseAudiencePerformanceDTO';
|
|
14
16
|
export * from './apiListResponseCatalogFeed';
|
|
@@ -24,6 +26,7 @@ export * from './apiResponseObjectABTestDTO';
|
|
|
24
26
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
25
27
|
export * from './apiResponseObjectAdvertiserPojo';
|
|
26
28
|
export * from './apiResponseObjectAdvertiserSettings';
|
|
29
|
+
export * from './apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO';
|
|
27
30
|
export * from './apiResponseObjectApiListResponseActivityLogsStrategyBulkUpdateDTO';
|
|
28
31
|
export * from './apiResponseObjectApiListResponseAudiencePerformanceDTO';
|
|
29
32
|
export * from './apiResponseObjectApiListResponseCatalogFeed';
|
|
@@ -37,6 +40,7 @@ export * from './apiResponseObjectApiListResponseVariablesMappingDTO';
|
|
|
37
40
|
export * from './apiResponseObjectAudienceAccessDTO';
|
|
38
41
|
export * from './apiResponseObjectAudienceDTO';
|
|
39
42
|
export * from './apiResponseObjectBaseModel';
|
|
43
|
+
export * from './apiResponseObjectBulkEditCreativeSetsResponse';
|
|
40
44
|
export * from './apiResponseObjectBulkEditStrategiesResponse';
|
|
41
45
|
export * from './apiResponseObjectBulkstrategiesUpdateResponse';
|
|
42
46
|
export * from './apiResponseObjectCampaignDTO';
|
|
@@ -111,6 +115,10 @@ export * from './baseModel';
|
|
|
111
115
|
export * from './baseModelEditField';
|
|
112
116
|
export * from './baseModelWithCreativeSetType';
|
|
113
117
|
export * from './bigDecimalEditField';
|
|
118
|
+
export * from './booleanEditField';
|
|
119
|
+
export * from './bulkEditCreativeSetsDTO';
|
|
120
|
+
export * from './bulkEditCreativeSetsListDTO';
|
|
121
|
+
export * from './bulkEditCreativeSetsResponse';
|
|
114
122
|
export * from './bulkEditStrategiesDTO';
|
|
115
123
|
export * from './bulkEditStrategiesResponse';
|
|
116
124
|
export * from './bulkEditStrategyListDTO';
|
|
@@ -171,6 +179,7 @@ export * from './eligibleUsersResponse';
|
|
|
171
179
|
export * from './endCards';
|
|
172
180
|
export * from './extendedBaseModel';
|
|
173
181
|
export * from './extendedTargetingObject';
|
|
182
|
+
export * from './failedDTO';
|
|
174
183
|
export * from './failedStrategyDTO';
|
|
175
184
|
export * from './failedStrategyFieldsDTO';
|
|
176
185
|
export * from './fcapDetails';
|
|
@@ -229,6 +238,7 @@ export * from './strategy';
|
|
|
229
238
|
export * from './strategyCreativeAssociationRequestDTO';
|
|
230
239
|
export * from './strategyCreativeAssociationResponseDTO';
|
|
231
240
|
export * from './strategyDTO';
|
|
241
|
+
export * from './strategyListEditField';
|
|
232
242
|
export * from './strategyQuickEditDTO';
|
|
233
243
|
export * from './strategyUpdateResponse';
|
|
234
244
|
export * from './stringEditField';
|
|
@@ -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
|
+
import { BaseModel } from './baseModel';
|
|
13
|
+
export interface StrategyListEditField {
|
|
14
|
+
action?: string;
|
|
15
|
+
strategyList?: Array<BaseModel>;
|
|
16
|
+
}
|