@revxui/api-clients-ts 0.10.335 → 0.10.337
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/appSettingsController.service.d.ts +39 -0
- package/api/auditController.service.d.ts +6 -6
- package/api/creativeSetsController.service.d.ts +0 -15
- package/api/dashboardController.service.d.ts +9 -9
- package/bundles/revxui-api-clients-ts.umd.js +148 -62
- 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/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +2 -2
- package/esm2015/api/appSettingsController.service.js +91 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +2 -39
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/advertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +2 -0
- package/esm2015/model/dynamicVideoConfigDTO.js +30 -0
- package/esm2015/model/dynamicVideoDTO.js +2 -0
- package/esm2015/model/dynamicVideoTemplate.js +2 -0
- package/esm2015/model/models.js +8 -2
- package/esm2015/model/nameAndTitleModel.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +155 -73
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiserDynamicVideoConfig.d.ts +19 -0
- package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +17 -0
- package/model/apiResponseObjectListDynamicVideoTemplate.d.ts +17 -0
- package/model/dynamicVideoConfigDTO.d.ts +34 -0
- package/model/dynamicVideoDTO.d.ts +16 -0
- package/model/dynamicVideoTemplate.d.ts +18 -0
- package/model/models.d.ts +7 -1
- package/model/{creativeSetRescheduleRequest.d.ts → nameAndTitleModel.d.ts} +3 -3
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/creativeSetRescheduleRequest.js +0 -13
|
@@ -0,0 +1,19 @@
|
|
|
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 { DynamicVideoConfigDTO } from './dynamicVideoConfigDTO';
|
|
13
|
+
import { NameAndTitleModel } from './nameAndTitleModel';
|
|
14
|
+
export interface AdvertiserDynamicVideoConfig {
|
|
15
|
+
configList?: Array<DynamicVideoConfigDTO>;
|
|
16
|
+
feedKeys?: Array<string>;
|
|
17
|
+
isDynamicVideoSettingEnabled?: boolean;
|
|
18
|
+
propList?: Array<NameAndTitleModel>;
|
|
19
|
+
}
|
|
@@ -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 { AdvertiserDynamicVideoConfig } from './advertiserDynamicVideoConfig';
|
|
13
|
+
export interface ApiResponseObjectAdvertiserDynamicVideoConfig {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: AdvertiserDynamicVideoConfig;
|
|
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 { DynamicVideoTemplate } from './dynamicVideoTemplate';
|
|
13
|
+
export interface ApiResponseObjectListDynamicVideoTemplate {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: Array<DynamicVideoTemplate>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 DynamicVideoConfigDTO {
|
|
13
|
+
configKey?: DynamicVideoConfigDTO.ConfigKeyEnum;
|
|
14
|
+
configValue?: string;
|
|
15
|
+
feedKey?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace DynamicVideoConfigDTO {
|
|
18
|
+
type ConfigKeyEnum = 'TEMPLATE_ID' | 'LOGO' | 'SALE_PRICE_PREFIX' | 'ORIGINAL_PRICE_PREFIX' | 'CTA' | 'TITLE_LENGTH' | 'TITLE_ROWS' | 'DISCOUNT_SUFFIX' | 'FONT' | 'ROUND_PRICE' | 'MUSIC_FILE' | 'VIDEO_FILE' | 'USE_RESIZER';
|
|
19
|
+
const ConfigKeyEnum: {
|
|
20
|
+
TEMPLATEID: ConfigKeyEnum;
|
|
21
|
+
LOGO: ConfigKeyEnum;
|
|
22
|
+
SALEPRICEPREFIX: ConfigKeyEnum;
|
|
23
|
+
ORIGINALPRICEPREFIX: ConfigKeyEnum;
|
|
24
|
+
CTA: ConfigKeyEnum;
|
|
25
|
+
TITLELENGTH: ConfigKeyEnum;
|
|
26
|
+
TITLEROWS: ConfigKeyEnum;
|
|
27
|
+
DISCOUNTSUFFIX: ConfigKeyEnum;
|
|
28
|
+
FONT: ConfigKeyEnum;
|
|
29
|
+
ROUNDPRICE: ConfigKeyEnum;
|
|
30
|
+
MUSICFILE: ConfigKeyEnum;
|
|
31
|
+
VIDEOFILE: ConfigKeyEnum;
|
|
32
|
+
USERESIZER: ConfigKeyEnum;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
@@ -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 { DynamicVideoConfigDTO } from './dynamicVideoConfigDTO';
|
|
13
|
+
export interface DynamicVideoDTO {
|
|
14
|
+
advertiserId?: number;
|
|
15
|
+
dynamicVideoConfigDTOList?: Array<DynamicVideoConfigDTO>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { Size } from './size';
|
|
13
|
+
export interface DynamicVideoTemplate {
|
|
14
|
+
dimension?: Size;
|
|
15
|
+
id?: number;
|
|
16
|
+
name?: string;
|
|
17
|
+
template?: string;
|
|
18
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './activityLogsCreativeSetsBulkUpdateDTO';
|
|
|
4
4
|
export * from './activityLogsStrategyBulkUpdateDTO';
|
|
5
5
|
export * from './advertiser';
|
|
6
6
|
export * from './advertiserDynamicDetails';
|
|
7
|
+
export * from './advertiserDynamicVideoConfig';
|
|
7
8
|
export * from './advertiserLayoutVariables';
|
|
8
9
|
export * from './advertiserPojo';
|
|
9
10
|
export * from './advertiserSettings';
|
|
@@ -24,6 +25,7 @@ export * from './apiListResponsePixel';
|
|
|
24
25
|
export * from './apiListResponseVariablesMappingDTO';
|
|
25
26
|
export * from './apiResponseObjectABTestDTO';
|
|
26
27
|
export * from './apiResponseObjectAdvertiserDynamicDetails';
|
|
28
|
+
export * from './apiResponseObjectAdvertiserDynamicVideoConfig';
|
|
27
29
|
export * from './apiResponseObjectAdvertiserPojo';
|
|
28
30
|
export * from './apiResponseObjectAdvertiserSettings';
|
|
29
31
|
export * from './apiResponseObjectApiListResponseActivityLogsCreativeSetsBulkUpdateDTO';
|
|
@@ -71,6 +73,7 @@ export * from './apiResponseObjectListBaseModel';
|
|
|
71
73
|
export * from './apiResponseObjectListBulkstrategiesValidationResponse';
|
|
72
74
|
export * from './apiResponseObjectListCampaignDTO';
|
|
73
75
|
export * from './apiResponseObjectListCreativeFiles';
|
|
76
|
+
export * from './apiResponseObjectListDynamicVideoTemplate';
|
|
74
77
|
export * from './apiResponseObjectListMenuCrubResponse';
|
|
75
78
|
export * from './apiResponseObjectListTemplateThemeDTO';
|
|
76
79
|
export * from './apiResponseObjectListTemplateVariablesDTO';
|
|
@@ -152,7 +155,6 @@ export * from './creativeSetDashboardMetric';
|
|
|
152
155
|
export * from './creativeSetDetails';
|
|
153
156
|
export * from './creativeSetListEditField';
|
|
154
157
|
export * from './creativeSetRequest';
|
|
155
|
-
export * from './creativeSetRescheduleRequest';
|
|
156
158
|
export * from './creativeSetResponse';
|
|
157
159
|
export * from './creativeStrategyAssociationStatus';
|
|
158
160
|
export * from './creativeTemplateDTO';
|
|
@@ -178,6 +180,9 @@ export * from './duplicateCreativeSetsRequestDTO';
|
|
|
178
180
|
export * from './duplicateStrategyRequestDTO';
|
|
179
181
|
export * from './duration';
|
|
180
182
|
export * from './durationModel';
|
|
183
|
+
export * from './dynamicVideoConfigDTO';
|
|
184
|
+
export * from './dynamicVideoDTO';
|
|
185
|
+
export * from './dynamicVideoTemplate';
|
|
181
186
|
export * from './eResponseobject';
|
|
182
187
|
export * from './eligibleUsersRequest';
|
|
183
188
|
export * from './eligibleUsersResponse';
|
|
@@ -205,6 +210,7 @@ export * from './menuCrubResponse';
|
|
|
205
210
|
export * from './metaRuleDto';
|
|
206
211
|
export * from './metaRulesDto';
|
|
207
212
|
export * from './modelError';
|
|
213
|
+
export * from './nameAndTitleModel';
|
|
208
214
|
export * from './nativeAssetPojo';
|
|
209
215
|
export * from './notificationListResponseNotificationResponse';
|
|
210
216
|
export * from './notificationResponse';
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
export interface
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
export interface NameAndTitleModel {
|
|
13
|
+
name?: string;
|
|
14
|
+
title?: string;
|
|
15
15
|
}
|