@revxui/api-clients-ts 1.1.490 → 1.1.492

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 (67) hide show
  1. package/README.md +2 -2
  2. package/api/creativeSetsV2Controller.service.d.ts +9 -9
  3. package/api/notificationsController.service.d.ts +14 -0
  4. package/esm2020/api/adminController.service.mjs +2 -2
  5. package/esm2020/api/advertiserController.service.mjs +2 -2
  6. package/esm2020/api/appSettingsController.service.mjs +2 -2
  7. package/esm2020/api/appsFlyerController.service.mjs +2 -2
  8. package/esm2020/api/audienceController.service.mjs +2 -2
  9. package/esm2020/api/auditController.service.mjs +2 -2
  10. package/esm2020/api/bidFunnelController.service.mjs +2 -2
  11. package/esm2020/api/bulkStrategyController.service.mjs +2 -2
  12. package/esm2020/api/cSSThemeController_.service.mjs +2 -2
  13. package/esm2020/api/campaignController.service.mjs +2 -2
  14. package/esm2020/api/catalogController.service.mjs +2 -2
  15. package/esm2020/api/clickDestinationController.service.mjs +2 -2
  16. package/esm2020/api/creativeController.service.mjs +2 -2
  17. package/esm2020/api/creativeSetsController.service.mjs +2 -2
  18. package/esm2020/api/creativeSetsV2Controller.service.mjs +2 -2
  19. package/esm2020/api/creativeTemplateThemesController.service.mjs +2 -2
  20. package/esm2020/api/creativeTemplateVariablesController.service.mjs +2 -2
  21. package/esm2020/api/creativeTemplatesController.service.mjs +2 -2
  22. package/esm2020/api/customerReportingController.service.mjs +2 -2
  23. package/esm2020/api/dCOVideoSettingsController.service.mjs +2 -2
  24. package/esm2020/api/dashboardController.service.mjs +2 -2
  25. package/esm2020/api/experimentsController.service.mjs +2 -2
  26. package/esm2020/api/notificationsController.service.mjs +33 -2
  27. package/esm2020/api/pixelController.service.mjs +2 -2
  28. package/esm2020/api/reportController.service.mjs +2 -2
  29. package/esm2020/api/reportingController.service.mjs +2 -2
  30. package/esm2020/api/reportingSchedulerController.service.mjs +2 -2
  31. package/esm2020/api/safeguardController.service.mjs +2 -2
  32. package/esm2020/api/sliceXController.service.mjs +2 -2
  33. package/esm2020/api/strategyController.service.mjs +2 -2
  34. package/esm2020/api/strategyTemplateController.service.mjs +2 -2
  35. package/esm2020/api/uILoggerController.service.mjs +2 -2
  36. package/esm2020/api/userPreferenceController.service.mjs +2 -2
  37. package/esm2020/model/apiResponseObjectListSafeguardAlertDTO.mjs +2 -0
  38. package/esm2020/model/assetSelectionDTO.mjs +1 -1
  39. package/esm2020/model/creativeAssetUploadResponse.mjs +1 -1
  40. package/esm2020/model/creativeDTO.mjs +6 -1
  41. package/esm2020/model/creativeEntity.mjs +6 -1
  42. package/esm2020/model/models.mjs +3 -1
  43. package/esm2020/model/optimizationJobStatusResponse.mjs +1 -1
  44. package/esm2020/model/safeguardAlertDTO.mjs +13 -0
  45. package/esm2020/model/safeguardDetail.mjs +3 -2
  46. package/esm2020/model/safeguardExclusionDTO.mjs +3 -2
  47. package/esm2020/model/safeguardRequestDTO.mjs +3 -2
  48. package/esm2020/model/safeguardResponseDTO.mjs +3 -2
  49. package/esm2020/model/videoAttributes.mjs +6 -1
  50. package/fesm2015/revxui-api-clients-ts.mjs +87 -37
  51. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  52. package/fesm2020/revxui-api-clients-ts.mjs +99 -37
  53. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  54. package/model/apiResponseObjectListSafeguardAlertDTO.d.ts +17 -0
  55. package/model/assetSelectionDTO.d.ts +1 -1
  56. package/model/creativeAssetUploadResponse.d.ts +1 -1
  57. package/model/creativeDTO.d.ts +7 -0
  58. package/model/creativeEntity.d.ts +7 -0
  59. package/model/models.d.ts +2 -0
  60. package/model/optimizationJobStatusResponse.d.ts +1 -1
  61. package/model/safeguardAlertDTO.d.ts +19 -0
  62. package/model/safeguardDetail.d.ts +3 -1
  63. package/model/safeguardExclusionDTO.d.ts +2 -1
  64. package/model/safeguardRequestDTO.d.ts +3 -1
  65. package/model/safeguardResponseDTO.d.ts +3 -1
  66. package/model/videoAttributes.d.ts +7 -0
  67. package/package.json +1 -1
@@ -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 { SafeguardAlertDTO } from './safeguardAlertDTO';
13
+ export interface ApiResponseObjectListSafeguardAlertDTO {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: Array<SafeguardAlertDTO>;
17
+ }
@@ -14,7 +14,7 @@ export interface AssetSelectionDTO {
14
14
  endCardType?: AssetSelectionDTO.EndCardTypeEnum;
15
15
  isEndCard?: boolean;
16
16
  selectedTargets?: Array<SelectedTargetDTO>;
17
- uploadId?: string;
17
+ uploadId?: number;
18
18
  }
19
19
  export declare namespace AssetSelectionDTO {
20
20
  type EndCardTypeEnum = 'IMAGE' | 'HTML';
@@ -12,7 +12,7 @@
12
12
  export interface CreativeAssetUploadResponse {
13
13
  sourceHeight?: number;
14
14
  sourceWidth?: number;
15
- uploadId?: string;
15
+ uploadId?: number;
16
16
  warningCode?: CreativeAssetUploadResponse.WarningCodeEnum;
17
17
  warningMessage?: string;
18
18
  }
@@ -23,6 +23,7 @@ export interface CreativeDTO {
23
23
  advertiserId?: number;
24
24
  archived?: boolean;
25
25
  assetPreviewId?: number;
26
+ borderType?: CreativeDTO.BorderTypeEnum;
26
27
  clickDestination?: ClickDestination;
27
28
  content?: string;
28
29
  contentType?: CreativeDTO.ContentTypeEnum;
@@ -72,6 +73,12 @@ export interface CreativeDTO {
72
73
  videoUploadType?: CreativeDTO.VideoUploadTypeEnum;
73
74
  }
74
75
  export declare namespace CreativeDTO {
76
+ type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
77
+ const BorderTypeEnum: {
78
+ NONE: BorderTypeEnum;
79
+ BLACK: BorderTypeEnum;
80
+ BLUR: BorderTypeEnum;
81
+ };
75
82
  type ContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
76
83
  const ContentTypeEnum: {
77
84
  ZIP: ContentTypeEnum;
@@ -16,6 +16,7 @@ export interface CreativeEntity {
16
16
  assetPreviewId?: number;
17
17
  attributesId?: number;
18
18
  bidResponseTestEnabled?: boolean;
19
+ borderType?: CreativeEntity.BorderTypeEnum;
19
20
  cdnId?: number;
20
21
  clickDestination?: number;
21
22
  content?: string;
@@ -56,6 +57,12 @@ export interface CreativeEntity {
56
57
  width?: number;
57
58
  }
58
59
  export declare namespace CreativeEntity {
60
+ type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
61
+ const BorderTypeEnum: {
62
+ NONE: BorderTypeEnum;
63
+ BLACK: BorderTypeEnum;
64
+ BLUR: BorderTypeEnum;
65
+ };
59
66
  type HybridAdTypeEnum = 'STATIC' | 'DYNAMIC';
60
67
  const HybridAdTypeEnum: {
61
68
  STATIC: HybridAdTypeEnum;
package/model/models.d.ts CHANGED
@@ -136,6 +136,7 @@ export * from './apiResponseObjectListExperimentsEntity';
136
136
  export * from './apiResponseObjectListIncrementalityTestDetails';
137
137
  export * from './apiResponseObjectListMapstringobject';
138
138
  export * from './apiResponseObjectListMenuCrubResponse';
139
+ export * from './apiResponseObjectListSafeguardAlertDTO';
139
140
  export * from './apiResponseObjectListSafeguardBlockedItemDTO';
140
141
  export * from './apiResponseObjectListSafeguardDetail';
141
142
  export * from './apiResponseObjectListSafeguardExclusionDTO';
@@ -414,6 +415,7 @@ export * from './ruleComponentDTO';
414
415
  export * from './ruleDTO';
415
416
  export * from './ruleOperatorDto';
416
417
  export * from './ruleValueDto';
418
+ export * from './safeguardAlertDTO';
417
419
  export * from './safeguardBlockedItemDTO';
418
420
  export * from './safeguardDetail';
419
421
  export * from './safeguardExclusionDTO';
@@ -15,7 +15,7 @@ export interface OptimizationJobStatusResponse {
15
15
  errorMessage?: string;
16
16
  failedTargets?: number;
17
17
  items?: Array<OptimizationJobItemStatusDTO>;
18
- jobId?: string;
18
+ jobId?: number;
19
19
  percentComplete?: number;
20
20
  status?: OptimizationJobStatusResponse.StatusEnum;
21
21
  totalTargets?: number;
@@ -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
+ export interface SafeguardAlertDTO {
13
+ addedOn?: number;
14
+ alertType?: string;
15
+ content?: any;
16
+ notificationId?: number;
17
+ resolved?: boolean;
18
+ strategyId?: number;
19
+ }
@@ -20,6 +20,7 @@ export interface SafeguardDetail {
20
20
  modifiedOn?: number;
21
21
  nextRunTime?: number;
22
22
  permanentlyBlockOnSecondStrike?: boolean;
23
+ recommendedAction?: string;
23
24
  refreshFrequency?: number;
24
25
  rules?: string;
25
26
  runFrequency?: number;
@@ -30,10 +31,11 @@ export interface SafeguardDetail {
30
31
  targetingScope?: SafeguardDetail.TargetingScopeEnum;
31
32
  }
32
33
  export declare namespace SafeguardDetail {
33
- type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
34
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE' | 'STRATEGY';
34
35
  const TargetingScopeEnum: {
35
36
  APP: TargetingScopeEnum;
36
37
  INVENTORY: TargetingScopeEnum;
37
38
  CREATIVE: TargetingScopeEnum;
39
+ STRATEGY: TargetingScopeEnum;
38
40
  };
39
41
  }
@@ -17,10 +17,11 @@ export interface SafeguardExclusionDTO {
17
17
  scope?: SafeguardExclusionDTO.ScopeEnum;
18
18
  }
19
19
  export declare namespace SafeguardExclusionDTO {
20
- type ScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
20
+ type ScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE' | 'STRATEGY';
21
21
  const ScopeEnum: {
22
22
  APP: ScopeEnum;
23
23
  INVENTORY: ScopeEnum;
24
24
  CREATIVE: ScopeEnum;
25
+ STRATEGY: ScopeEnum;
25
26
  };
26
27
  }
@@ -16,6 +16,7 @@ export interface SafeguardRequestDTO {
16
16
  campaignId?: number;
17
17
  lookbackWindow?: number;
18
18
  permanentlyBlockOnSecondStrike?: boolean;
19
+ recommendedAction?: string;
19
20
  refreshFrequency?: number;
20
21
  rules?: string;
21
22
  runFrequency?: number;
@@ -26,10 +27,11 @@ export interface SafeguardRequestDTO {
26
27
  targetingScope?: SafeguardRequestDTO.TargetingScopeEnum;
27
28
  }
28
29
  export declare namespace SafeguardRequestDTO {
29
- type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
30
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE' | 'STRATEGY';
30
31
  const TargetingScopeEnum: {
31
32
  APP: TargetingScopeEnum;
32
33
  INVENTORY: TargetingScopeEnum;
33
34
  CREATIVE: TargetingScopeEnum;
35
+ STRATEGY: TargetingScopeEnum;
34
36
  };
35
37
  }
@@ -17,6 +17,7 @@ export interface SafeguardResponseDTO {
17
17
  lookbackWindow?: number;
18
18
  nextRunTime?: number;
19
19
  permanentlyBlockOnSecondStrike?: boolean;
20
+ recommendedAction?: string;
20
21
  refreshFrequency?: number;
21
22
  rules?: string;
22
23
  runFrequency?: number;
@@ -27,10 +28,11 @@ export interface SafeguardResponseDTO {
27
28
  targetingScope?: SafeguardResponseDTO.TargetingScopeEnum;
28
29
  }
29
30
  export declare namespace SafeguardResponseDTO {
30
- type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
31
+ type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE' | 'STRATEGY';
31
32
  const TargetingScopeEnum: {
32
33
  APP: TargetingScopeEnum;
33
34
  INVENTORY: TargetingScopeEnum;
34
35
  CREATIVE: TargetingScopeEnum;
36
+ STRATEGY: TargetingScopeEnum;
35
37
  };
36
38
  }
@@ -11,6 +11,7 @@
11
11
  */
12
12
  export interface VideoAttributes {
13
13
  bitRate?: string;
14
+ borderType?: VideoAttributes.BorderTypeEnum;
14
15
  companionContentType?: VideoAttributes.CompanionContentTypeEnum;
15
16
  companionCreativeId?: number;
16
17
  companionHeight?: number;
@@ -30,6 +31,12 @@ export interface VideoAttributes {
30
31
  videoWidth?: number;
31
32
  }
32
33
  export declare namespace VideoAttributes {
34
+ type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
35
+ const BorderTypeEnum: {
36
+ NONE: BorderTypeEnum;
37
+ BLACK: BorderTypeEnum;
38
+ BLUR: BorderTypeEnum;
39
+ };
33
40
  type CompanionContentTypeEnum = 'ZIP' | 'JPG' | 'JPEG' | 'PNG' | 'GIF' | 'FLV' | 'MP4' | 'THREE_GPP' | 'MOV' | 'WEBM' | 'DASH' | 'HLS' | 'GZIP' | 'TEXT' | 'CSV' | 'UNKNOWN' | 'XMPEGURL';
34
41
  const CompanionContentTypeEnum: {
35
42
  ZIP: CompanionContentTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "1.1.490",
3
+ "version": "1.1.492",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [