@revxui/api-clients-ts 0.10.338 → 0.10.339

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.
Files changed (40) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/appSettingsController.service.d.ts +39 -0
  4. package/api/customerReportingController.service.d.ts +40 -0
  5. package/bundles/revxui-api-clients-ts.umd.js +213 -1
  6. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  7. package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
  8. package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
  9. package/esm2015/api/api.js +4 -2
  10. package/esm2015/api/appSettingsController.service.js +90 -1
  11. package/esm2015/api/customerReportingController.service.js +87 -0
  12. package/esm2015/api.module.js +3 -1
  13. package/esm2015/model/advertiserDynamicVideoConfig.js +2 -0
  14. package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +2 -0
  15. package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +2 -0
  16. package/esm2015/model/customerReportingData.js +13 -0
  17. package/esm2015/model/customerReportingDataListResponse.js +2 -0
  18. package/esm2015/model/customerReportingRequest.js +13 -0
  19. package/esm2015/model/customerReportingResponse.js +2 -0
  20. package/esm2015/model/dynamicVideoConfigDTO.js +30 -0
  21. package/esm2015/model/dynamicVideoDTO.js +2 -0
  22. package/esm2015/model/dynamicVideoTemplate.js +2 -0
  23. package/esm2015/model/models.js +12 -1
  24. package/esm2015/model/nameAndTitleModel.js +13 -0
  25. package/fesm2015/revxui-api-clients-ts.js +240 -2
  26. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  27. package/model/advertiserDynamicVideoConfig.d.ts +19 -0
  28. package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +17 -0
  29. package/model/apiResponseObjectListDynamicVideoTemplate.d.ts +17 -0
  30. package/model/customerReportingData.d.ts +20 -0
  31. package/model/customerReportingDataListResponse.d.ts +15 -0
  32. package/model/customerReportingRequest.d.ts +18 -0
  33. package/model/customerReportingResponse.d.ts +17 -0
  34. package/model/dynamicVideoConfigDTO.d.ts +34 -0
  35. package/model/dynamicVideoDTO.d.ts +16 -0
  36. package/model/dynamicVideoTemplate.d.ts +18 -0
  37. package/model/models.d.ts +11 -0
  38. package/model/nameAndTitleModel.d.ts +15 -0
  39. package/package.json +1 -1
  40. package/revxui-api-clients-ts.metadata.json +1 -1
@@ -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,20 @@
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 CustomerReportingData {
13
+ campaign_id?: string;
14
+ clicks?: number;
15
+ cost?: number;
16
+ cpc?: number;
17
+ cpm?: number;
18
+ ctr?: number;
19
+ impressions?: number;
20
+ }
@@ -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
+ import { CustomerReportingData } from './customerReportingData';
13
+ export interface CustomerReportingDataListResponse {
14
+ data_list?: Array<CustomerReportingData>;
15
+ }
@@ -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
+ export interface CustomerReportingRequest {
13
+ bizdate?: string;
14
+ campaignIds?: Array<string>;
15
+ channel?: string;
16
+ sign?: string;
17
+ timestamp?: number;
18
+ }
@@ -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 { CustomerReportingDataListResponse } from './customerReportingDataListResponse';
13
+ export interface CustomerReportingResponse {
14
+ code?: number;
15
+ data?: CustomerReportingDataListResponse;
16
+ message?: string;
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';
@@ -157,6 +160,10 @@ export * from './creativeStrategyAssociationStatus';
157
160
  export * from './creativeTemplateDTO';
158
161
  export * from './creativeTemplatesMetadataDTO';
159
162
  export * from './creativeThirdPartyAdTag';
163
+ export * from './customerReportingData';
164
+ export * from './customerReportingDataListResponse';
165
+ export * from './customerReportingRequest';
166
+ export * from './customerReportingResponse';
160
167
  export * from './dashboardData';
161
168
  export * from './dashboardFilters';
162
169
  export * from './dashboardMetrics';
@@ -177,6 +184,9 @@ export * from './duplicateCreativeSetsRequestDTO';
177
184
  export * from './duplicateStrategyRequestDTO';
178
185
  export * from './duration';
179
186
  export * from './durationModel';
187
+ export * from './dynamicVideoConfigDTO';
188
+ export * from './dynamicVideoDTO';
189
+ export * from './dynamicVideoTemplate';
180
190
  export * from './eResponseobject';
181
191
  export * from './eligibleUsersRequest';
182
192
  export * from './eligibleUsersResponse';
@@ -204,6 +214,7 @@ export * from './menuCrubResponse';
204
214
  export * from './metaRuleDto';
205
215
  export * from './metaRulesDto';
206
216
  export * from './modelError';
217
+ export * from './nameAndTitleModel';
207
218
  export * from './nativeAssetPojo';
208
219
  export * from './notificationListResponseNotificationResponse';
209
220
  export * from './notificationResponse';
@@ -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 NameAndTitleModel {
13
+ name?: string;
14
+ title?: string;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "0.10.338",
3
+ "version": "0.10.339",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [