@revxui/api-clients-ts 0.10.295 → 0.10.296
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/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/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/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
|
+
}
|
|
@@ -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';
|
|
@@ -38,6 +41,7 @@ export * from './apiResponseObjectAspectTemplateMap';
|
|
|
38
41
|
export * from './apiResponseObjectAudienceAccessDTO';
|
|
39
42
|
export * from './apiResponseObjectAudienceDTO';
|
|
40
43
|
export * from './apiResponseObjectBaseModel';
|
|
44
|
+
export * from './apiResponseObjectBulkEditCreativeSetsResponse';
|
|
41
45
|
export * from './apiResponseObjectBulkEditStrategiesResponse';
|
|
42
46
|
export * from './apiResponseObjectBulkstrategiesUpdateResponse';
|
|
43
47
|
export * from './apiResponseObjectCampaignDTO';
|
|
@@ -113,6 +117,10 @@ export * from './baseModel';
|
|
|
113
117
|
export * from './baseModelEditField';
|
|
114
118
|
export * from './baseModelWithCreativeSetType';
|
|
115
119
|
export * from './bigDecimalEditField';
|
|
120
|
+
export * from './booleanEditField';
|
|
121
|
+
export * from './bulkEditCreativeSetsDTO';
|
|
122
|
+
export * from './bulkEditCreativeSetsListDTO';
|
|
123
|
+
export * from './bulkEditCreativeSetsResponse';
|
|
116
124
|
export * from './bulkEditStrategiesDTO';
|
|
117
125
|
export * from './bulkEditStrategiesResponse';
|
|
118
126
|
export * from './bulkEditStrategyListDTO';
|
|
@@ -173,6 +181,7 @@ export * from './eligibleUsersResponse';
|
|
|
173
181
|
export * from './endCards';
|
|
174
182
|
export * from './extendedBaseModel';
|
|
175
183
|
export * from './extendedTargetingObject';
|
|
184
|
+
export * from './failedDTO';
|
|
176
185
|
export * from './failedStrategyDTO';
|
|
177
186
|
export * from './failedStrategyFieldsDTO';
|
|
178
187
|
export * from './fcapDetails';
|
|
@@ -232,6 +241,7 @@ export * from './strategy';
|
|
|
232
241
|
export * from './strategyCreativeAssociationRequestDTO';
|
|
233
242
|
export * from './strategyCreativeAssociationResponseDTO';
|
|
234
243
|
export * from './strategyDTO';
|
|
244
|
+
export * from './strategyListEditField';
|
|
235
245
|
export * from './strategyQuickEditDTO';
|
|
236
246
|
export * from './strategyUpdateResponse';
|
|
237
247
|
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
|
+
}
|