@revxui/api-clients-ts 1.1.25 → 1.1.27

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 (41) hide show
  1. package/README.md +2 -2
  2. package/api/strategyController.service.d.ts +43 -0
  3. package/bundles/revxui-api-clients-ts.umd.js +105 -0
  4. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  5. package/esm2015/api/strategyController.service.js +100 -1
  6. package/esm2015/model/advertiser.js +1 -1
  7. package/esm2015/model/advertiserPojo.js +1 -1
  8. package/esm2015/model/apiListResponseStrategyTargettingPerformanceData.js +2 -0
  9. package/esm2015/model/apiResponseObjectStrategyOptimizationDataResponse.js +2 -0
  10. package/esm2015/model/creativeFileForSet.js +1 -1
  11. package/esm2015/model/creativeFiles.js +1 -1
  12. package/esm2015/model/creativeSetDashboardMetric.js +1 -1
  13. package/esm2015/model/dashboardData.js +1 -1
  14. package/esm2015/model/dashboardMetrics.js +1 -1
  15. package/esm2015/model/models.js +6 -1
  16. package/esm2015/model/slicexData.js +1 -1
  17. package/esm2015/model/slicexGridData.js +1 -1
  18. package/esm2015/model/strategyOptBlockTargetingReq.js +13 -0
  19. package/esm2015/model/strategyOptimizationDataResponse.js +2 -0
  20. package/esm2015/model/strategyTargettingPerformanceData.js +13 -0
  21. package/esm2015/model/videoProperties.js +1 -1
  22. package/fesm2015/revxui-api-clients-ts.js +123 -0
  23. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  24. package/model/advertiser.d.ts +2 -0
  25. package/model/advertiserPojo.d.ts +2 -0
  26. package/model/apiListResponseStrategyTargettingPerformanceData.d.ts +16 -0
  27. package/model/apiResponseObjectStrategyOptimizationDataResponse.d.ts +17 -0
  28. package/model/creativeFileForSet.d.ts +0 -1
  29. package/model/creativeFiles.d.ts +0 -1
  30. package/model/creativeSetDashboardMetric.d.ts +1 -0
  31. package/model/dashboardData.d.ts +1 -0
  32. package/model/dashboardMetrics.d.ts +1 -0
  33. package/model/models.d.ts +5 -0
  34. package/model/slicexData.d.ts +1 -0
  35. package/model/slicexGridData.d.ts +1 -0
  36. package/model/strategyOptBlockTargetingReq.d.ts +15 -0
  37. package/model/strategyOptimizationDataResponse.d.ts +17 -0
  38. package/model/strategyTargettingPerformanceData.d.ts +24 -0
  39. package/model/videoProperties.d.ts +0 -4
  40. package/package.json +1 -1
  41. package/revxui-api-clients-ts.metadata.json +1 -1
@@ -16,8 +16,10 @@ export interface Advertiser {
16
16
  creationTime?: number;
17
17
  currency?: BaseModel;
18
18
  currencyCode?: string;
19
+ dynamicVideoSupport?: boolean;
19
20
  id?: number;
20
21
  isArchived?: boolean;
22
+ isDynamicVideoSupport?: boolean;
21
23
  isPlatformAudSupport?: boolean;
22
24
  licensee?: BaseModel;
23
25
  licenseeId?: number;
@@ -26,6 +26,7 @@ export interface AdvertiserPojo {
26
26
  currencyCode?: string;
27
27
  defaultLogoDetails?: AppSettingsDTO;
28
28
  domain?: string;
29
+ dynamicVideoSupport?: boolean;
29
30
  email?: string;
30
31
  iOSDeeplink?: string;
31
32
  id?: number;
@@ -34,6 +35,7 @@ export interface AdvertiserPojo {
34
35
  iosTabletBundle?: string;
35
36
  isArchived?: boolean;
36
37
  isDynamicVideo?: boolean;
38
+ isDynamicVideoSupport?: boolean;
37
39
  isPlatformAudSupport?: boolean;
38
40
  language?: BaseModel;
39
41
  licensee?: BaseModel;
@@ -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 { StrategyTargettingPerformanceData } from './strategyTargettingPerformanceData';
13
+ export interface ApiListResponseStrategyTargettingPerformanceData {
14
+ data?: Array<StrategyTargettingPerformanceData>;
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 { StrategyOptimizationDataResponse } from './strategyOptimizationDataResponse';
13
+ export interface ApiResponseObjectStrategyOptimizationDataResponse {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: StrategyOptimizationDataResponse;
17
+ }
@@ -29,7 +29,6 @@ export interface CreativeFileForSet {
29
29
  nativeAssetPojo?: NativeAssetPojo;
30
30
  noOfSlots?: number;
31
31
  originalDimension?: Size;
32
- parentPath?: string;
33
32
  previewUrl?: string;
34
33
  size?: string;
35
34
  supportedDimensions?: Array<BannerAdSuppDimensionsDTO>;
@@ -24,7 +24,6 @@ export interface CreativeFiles {
24
24
  _native?: boolean;
25
25
  noOfSlots?: number;
26
26
  originalDimension?: Size;
27
- parentPath?: string;
28
27
  previewUrl?: string;
29
28
  size?: string;
30
29
  supportedDimensions?: Array<BannerAdSuppDimensionsDTO>;
@@ -41,6 +41,7 @@ export interface CreativeSetDashboardMetric {
41
41
  erpc?: number;
42
42
  erpi?: number;
43
43
  erpm?: number;
44
+ erpo?: number;
44
45
  id?: number;
45
46
  impInstalls?: number;
46
47
  impressionUniqUsers?: number;
@@ -47,6 +47,7 @@ export interface DashboardData {
47
47
  erpc?: number;
48
48
  erpi?: number;
49
49
  erpm?: number;
50
+ erpo?: number;
50
51
  hour?: number;
51
52
  id?: number;
52
53
  impInstalls?: number;
@@ -35,6 +35,7 @@ export interface DashboardMetrics {
35
35
  erpc?: number;
36
36
  erpi?: number;
37
37
  erpm?: number;
38
+ erpo?: number;
38
39
  id?: number;
39
40
  impInstalls?: number;
40
41
  impressionUniqUsers?: number;
package/model/models.d.ts CHANGED
@@ -23,6 +23,7 @@ export * from './apiListResponseCreativeTemplateDTO';
23
23
  export * from './apiListResponseMacro';
24
24
  export * from './apiListResponsePixel';
25
25
  export * from './apiListResponseSizeWithPreview';
26
+ export * from './apiListResponseStrategyTargettingPerformanceData';
26
27
  export * from './apiListResponseStrategyTemplateResponse';
27
28
  export * from './apiListResponseVariablesMappingDTO';
28
29
  export * from './apiResponseObjectABTestDTO';
@@ -95,6 +96,7 @@ export * from './apiResponseObjectSlicexChartResponse';
95
96
  export * from './apiResponseObjectSlicexListResponse';
96
97
  export * from './apiResponseObjectStrategyCreativeAssociationResponseDTO';
97
98
  export * from './apiResponseObjectStrategyDTO';
99
+ export * from './apiResponseObjectStrategyOptimizationDataResponse';
98
100
  export * from './apiResponseObjectStrategyQuickEditDTO';
99
101
  export * from './apiResponseObjectTag';
100
102
  export * from './apiResponseObjectTemplateThemeDTO';
@@ -263,7 +265,10 @@ export * from './strategyCreativeAssociationResponseDTO';
263
265
  export * from './strategyDTO';
264
266
  export * from './strategyInlineDTO';
265
267
  export * from './strategyListEditField';
268
+ export * from './strategyOptBlockTargetingReq';
269
+ export * from './strategyOptimizationDataResponse';
266
270
  export * from './strategyQuickEditDTO';
271
+ export * from './strategyTargettingPerformanceData';
267
272
  export * from './strategyTemplateDTO';
268
273
  export * from './strategyTemplateResponse';
269
274
  export * from './strategyUpdateResponse';
@@ -36,6 +36,7 @@ export interface SlicexData {
36
36
  erpc?: number;
37
37
  erpi?: number;
38
38
  erpm?: number;
39
+ erpo?: number;
39
40
  hour?: number;
40
41
  id?: number;
41
42
  impInstalls?: number;
@@ -37,6 +37,7 @@ export interface SlicexGridData {
37
37
  erpc?: number;
38
38
  erpi?: number;
39
39
  erpm?: number;
40
+ erpo?: number;
40
41
  hour?: number;
41
42
  id?: number;
42
43
  impInstalls?: number;
@@ -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 StrategyOptBlockTargetingReq {
13
+ aggregatorIds?: Array<number>;
14
+ siteIds?: Array<number>;
15
+ }
@@ -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 { RTBAggregators } from './rTBAggregators';
13
+ import { RTBSites } from './rTBSites';
14
+ export interface StrategyOptimizationDataResponse {
15
+ rtbAggregators?: RTBAggregators;
16
+ rtbSites?: RTBSites;
17
+ }
@@ -0,0 +1,24 @@
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 StrategyTargettingPerformanceData {
13
+ cost?: number;
14
+ ctc?: number;
15
+ ctr?: number;
16
+ ecpa?: number;
17
+ ecpc?: number;
18
+ ecpi?: number;
19
+ ecpm?: number;
20
+ id?: number;
21
+ iti?: number;
22
+ name?: string;
23
+ revenue?: number;
24
+ }
@@ -16,10 +16,6 @@ export interface VideoProperties {
16
16
  companionPath?: number;
17
17
  companionWidth?: number;
18
18
  durationInSec?: number;
19
- resizeBitRate?: string;
20
- resizeHeight?: number;
21
- resizeSize?: string;
22
- resizeWidth?: number;
23
19
  }
24
20
  export declare namespace VideoProperties {
25
21
  type CampanionTypeEnum = 'NO_COMPANION' | 'COMPANION_IMAGE' | 'COMPANION_HTML' | 'COMPANION_IFRAME' | 'COMPANION_FLASH';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "1.1.25",
3
+ "version": "1.1.27",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [