@revxui/api-clients-ts 1.1.479 → 1.1.482

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/api.d.ts +3 -1
  3. package/api/appSettingsController.service.d.ts +3 -3
  4. package/api/creativeAssetOptimizationController.service.d.ts +78 -0
  5. package/esm2020/api/api.mjs +4 -2
  6. package/esm2020/api/appSettingsController.service.mjs +1 -1
  7. package/esm2020/api/creativeAssetOptimizationController.service.mjs +214 -0
  8. package/esm2020/api.module.mjs +4 -1
  9. package/esm2020/model/advertiserAppSettingsDTO.mjs +3 -2
  10. package/esm2020/model/advertiserSettings.mjs +9 -2
  11. package/esm2020/model/apiListResponseCreativeSizeMappingDTO.mjs +2 -0
  12. package/esm2020/model/appSettingsDTO.mjs +3 -2
  13. package/esm2020/model/creativeAssetOptimizationRequest.mjs +23 -0
  14. package/esm2020/model/creativeAssetUploadResponse.mjs +20 -0
  15. package/esm2020/model/creativeDTO.mjs +6 -1
  16. package/esm2020/model/creativeEntity.mjs +6 -1
  17. package/esm2020/model/creativeSizeMappingDTO.mjs +38 -0
  18. package/esm2020/model/models.mjs +8 -1
  19. package/esm2020/model/optimizationJobItemStatusDTO.mjs +21 -0
  20. package/esm2020/model/optimizationJobStatusResponse.mjs +11 -0
  21. package/esm2020/model/selectedTargetDTO.mjs +24 -0
  22. package/esm2020/model/videoAttributes.mjs +6 -1
  23. package/fesm2015/revxui-api-clients-ts.mjs +377 -4
  24. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  25. package/fesm2020/revxui-api-clients-ts.mjs +375 -4
  26. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  27. package/model/advertiserAppSettingsDTO.d.ts +2 -1
  28. package/model/advertiserSettings.d.ts +9 -0
  29. package/model/apiListResponseCreativeSizeMappingDTO.d.ts +16 -0
  30. package/model/appSettingsDTO.d.ts +2 -1
  31. package/model/creativeAssetOptimizationRequest.d.ts +42 -0
  32. package/model/creativeAssetUploadResponse.d.ts +26 -0
  33. package/model/creativeDTO.d.ts +7 -0
  34. package/model/creativeEntity.d.ts +7 -0
  35. package/model/creativeSizeMappingDTO.d.ts +47 -0
  36. package/model/models.d.ts +7 -0
  37. package/model/optimizationJobItemStatusDTO.d.ts +27 -0
  38. package/model/optimizationJobStatusResponse.d.ts +31 -0
  39. package/model/selectedTargetDTO.d.ts +30 -0
  40. package/model/videoAttributes.d.ts +7 -0
  41. package/package.json +1 -1
@@ -15,7 +15,7 @@ export interface AdvertiserAppSettingsDTO {
15
15
  value?: string;
16
16
  }
17
17
  export declare namespace AdvertiserAppSettingsDTO {
18
- type KeyEnum = 'FEED_KEY' | 'LIFT_TEST_ACTIVE' | 'EVENT_FILTER_ALLOWED' | 'SKU_ALLOWED_CHARS' | 'TRANSACTION_CURRENCY' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT';
18
+ type KeyEnum = 'FEED_KEY' | 'LIFT_TEST_ACTIVE' | 'EVENT_FILTER_ALLOWED' | 'SKU_ALLOWED_CHARS' | 'TRANSACTION_CURRENCY' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT' | 'CREATIVE_BORDER_TYPE';
19
19
  const KeyEnum: {
20
20
  FEEDKEY: KeyEnum;
21
21
  LIFTTESTACTIVE: KeyEnum;
@@ -26,6 +26,7 @@ export declare namespace AdvertiserAppSettingsDTO {
26
26
  CLICKSIGNING: KeyEnum;
27
27
  SLACKCHANNELID: KeyEnum;
28
28
  ENABLEAUDITLOGSREPORT: KeyEnum;
29
+ CREATIVEBORDERTYPE: KeyEnum;
29
30
  };
30
31
  type TypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT';
31
32
  const TypeEnum: {
@@ -12,6 +12,7 @@
12
12
  import { BaseModel } from './baseModel';
13
13
  export interface AdvertiserSettings {
14
14
  advertiserId?: number;
15
+ creativeBorderType?: AdvertiserSettings.CreativeBorderTypeEnum;
15
16
  creativeNameFormat?: string;
16
17
  dateFormat?: string;
17
18
  eventFilterAllowed?: boolean;
@@ -25,3 +26,11 @@ export interface AdvertiserSettings {
25
26
  slackChannelId?: string;
26
27
  transactionCurrency?: BaseModel;
27
28
  }
29
+ export declare namespace AdvertiserSettings {
30
+ type CreativeBorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
31
+ const CreativeBorderTypeEnum: {
32
+ NONE: CreativeBorderTypeEnum;
33
+ BLACK: CreativeBorderTypeEnum;
34
+ BLUR: CreativeBorderTypeEnum;
35
+ };
36
+ }
@@ -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 { CreativeSizeMappingDTO } from './creativeSizeMappingDTO';
13
+ export interface ApiListResponseCreativeSizeMappingDTO {
14
+ data?: Array<CreativeSizeMappingDTO>;
15
+ totalNoOfRecords?: number;
16
+ }
@@ -21,7 +21,7 @@ export interface AppSettingsDTO {
21
21
  settingsValue?: string;
22
22
  }
23
23
  export declare namespace AppSettingsDTO {
24
- type SettingsKeyEnum = 'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT';
24
+ type SettingsKeyEnum = 'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT' | 'CLICK_SIGNING' | 'SLACK_CHANNEL_ID' | 'ENABLE_AUDIT_LOGS_REPORT' | 'CREATIVE_BORDER_TYPE';
25
25
  const SettingsKeyEnum: {
26
26
  LOGOLINK: SettingsKeyEnum;
27
27
  FALLBACKIMGLINK: SettingsKeyEnum;
@@ -31,6 +31,7 @@ export declare namespace AppSettingsDTO {
31
31
  CLICKSIGNING: SettingsKeyEnum;
32
32
  SLACKCHANNELID: SettingsKeyEnum;
33
33
  ENABLEAUDITLOGSREPORT: SettingsKeyEnum;
34
+ CREATIVEBORDERTYPE: SettingsKeyEnum;
34
35
  };
35
36
  type SettingsTypeEnum = 'BOOLEAN' | 'STRING' | 'JSON' | 'INTEGER' | 'DOUBLE' | 'FLOAT';
36
37
  const SettingsTypeEnum: {
@@ -0,0 +1,42 @@
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 { CreativeSetRequest } from './creativeSetRequest';
13
+ import { SelectedTargetDTO } from './selectedTargetDTO';
14
+ export interface CreativeAssetOptimizationRequest {
15
+ advertiserId?: number;
16
+ creativeSetRequest?: CreativeSetRequest;
17
+ creativeSetType?: CreativeAssetOptimizationRequest.CreativeSetTypeEnum;
18
+ selectedTargets?: Array<SelectedTargetDTO>;
19
+ uploadId?: number;
20
+ }
21
+ export declare namespace CreativeAssetOptimizationRequest {
22
+ type CreativeSetTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
23
+ const CreativeSetTypeEnum: {
24
+ IMAGE: CreativeSetTypeEnum;
25
+ VIDEO: CreativeSetTypeEnum;
26
+ THIRDPARTYADTAGS: CreativeSetTypeEnum;
27
+ ZIPPEDHTML: CreativeSetTypeEnum;
28
+ NATIVEIMAGE: CreativeSetTypeEnum;
29
+ NATIVEVIDEO: CreativeSetTypeEnum;
30
+ DYNAMICIMAGE: CreativeSetTypeEnum;
31
+ DYNAMICMACRO: CreativeSetTypeEnum;
32
+ DYNAMICHTML: CreativeSetTypeEnum;
33
+ DYNAMICVIDEO: CreativeSetTypeEnum;
34
+ HYBRIDSTATICAD: CreativeSetTypeEnum;
35
+ HYBRIDDYNAMICAD: CreativeSetTypeEnum;
36
+ THIRDPARTYVIDEOADTAGS: CreativeSetTypeEnum;
37
+ NATIVEICON: CreativeSetTypeEnum;
38
+ ICON: CreativeSetTypeEnum;
39
+ CTVVIDEO: CreativeSetTypeEnum;
40
+ PLAYABLE: CreativeSetTypeEnum;
41
+ };
42
+ }
@@ -0,0 +1,26 @@
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 CreativeAssetUploadResponse {
13
+ sourceHeight?: number;
14
+ sourceWidth?: number;
15
+ uploadId?: number;
16
+ warningCode?: CreativeAssetUploadResponse.WarningCodeEnum;
17
+ warningMessage?: string;
18
+ }
19
+ export declare namespace CreativeAssetUploadResponse {
20
+ type WarningCodeEnum = 'INVALID_SIZE' | 'ASPECT_RATIO_MISMATCH' | 'LOW_RESOLUTION_UPLOAD';
21
+ const WarningCodeEnum: {
22
+ INVALIDSIZE: WarningCodeEnum;
23
+ ASPECTRATIOMISMATCH: WarningCodeEnum;
24
+ LOWRESOLUTIONUPLOAD: WarningCodeEnum;
25
+ };
26
+ }
@@ -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;
@@ -0,0 +1,47 @@
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 CreativeSizeMappingDTO {
13
+ creativeType?: CreativeSizeMappingDTO.CreativeTypeEnum;
14
+ id?: number;
15
+ mappingType?: CreativeSizeMappingDTO.MappingTypeEnum;
16
+ sourceHeight?: number;
17
+ sourceWidth?: number;
18
+ targetHeight?: number;
19
+ targetWidth?: number;
20
+ }
21
+ export declare namespace CreativeSizeMappingDTO {
22
+ type CreativeTypeEnum = 'IMAGE' | 'VIDEO' | 'THIRD_PARTY_AD_TAGS' | 'ZIPPED_HTML' | 'NATIVE_IMAGE' | 'NATIVE_VIDEO' | 'DYNAMIC_IMAGE' | 'DYNAMIC_MACRO' | 'DYNAMIC_HTML' | 'DYNAMIC_VIDEO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD' | 'THIRD_PARTY_VIDEO_AD_TAGS' | 'NATIVE_ICON' | 'ICON' | 'CTV_VIDEO' | 'PLAYABLE';
23
+ const CreativeTypeEnum: {
24
+ IMAGE: CreativeTypeEnum;
25
+ VIDEO: CreativeTypeEnum;
26
+ THIRDPARTYADTAGS: CreativeTypeEnum;
27
+ ZIPPEDHTML: CreativeTypeEnum;
28
+ NATIVEIMAGE: CreativeTypeEnum;
29
+ NATIVEVIDEO: CreativeTypeEnum;
30
+ DYNAMICIMAGE: CreativeTypeEnum;
31
+ DYNAMICMACRO: CreativeTypeEnum;
32
+ DYNAMICHTML: CreativeTypeEnum;
33
+ DYNAMICVIDEO: CreativeTypeEnum;
34
+ HYBRIDSTATICAD: CreativeTypeEnum;
35
+ HYBRIDDYNAMICAD: CreativeTypeEnum;
36
+ THIRDPARTYVIDEOADTAGS: CreativeTypeEnum;
37
+ NATIVEICON: CreativeTypeEnum;
38
+ ICON: CreativeTypeEnum;
39
+ CTVVIDEO: CreativeTypeEnum;
40
+ PLAYABLE: CreativeTypeEnum;
41
+ };
42
+ type MappingTypeEnum = 'EXACT_FIT' | 'BORDER';
43
+ const MappingTypeEnum: {
44
+ EXACTFIT: MappingTypeEnum;
45
+ BORDER: MappingTypeEnum;
46
+ };
47
+ }
package/model/models.d.ts CHANGED
@@ -35,6 +35,7 @@ export * from './apiListResponseCreativeDTO';
35
35
  export * from './apiListResponseCreativePerformanceList';
36
36
  export * from './apiListResponseCreativeSetDashboardMetric';
37
37
  export * from './apiListResponseCreativeSetPerformanceList';
38
+ export * from './apiListResponseCreativeSizeMappingDTO';
38
39
  export * from './apiListResponseCreativeTemplateDTO';
39
40
  export * from './apiListResponseHotstarNativeFileRequest';
40
41
  export * from './apiListResponseMacro';
@@ -242,6 +243,8 @@ export * from './contentGenre';
242
243
  export * from './contentLanguage';
243
244
  export * from './creative';
244
245
  export * from './creativeAssetEntity';
246
+ export * from './creativeAssetOptimizationRequest';
247
+ export * from './creativeAssetUploadResponse';
245
248
  export * from './creativeCompactDTO';
246
249
  export * from './creativeDTO';
247
250
  export * from './creativeDetails';
@@ -263,6 +266,7 @@ export * from './creativeSetPerformanceList';
263
266
  export * from './creativeSetRequest';
264
267
  export * from './creativeSetRescheduleRequest';
265
268
  export * from './creativeSetResponse';
269
+ export * from './creativeSizeMappingDTO';
266
270
  export * from './creativeStrategyAssociationStatus';
267
271
  export * from './creativeTemplateDTO';
268
272
  export * from './creativeTemplatesMetadataDTO';
@@ -374,6 +378,8 @@ export * from './nativeAssetPojo';
374
378
  export * from './notificationListResponseNotificationResponse';
375
379
  export * from './notificationResponse';
376
380
  export * from './onDayCohortData';
381
+ export * from './optimizationJobItemStatusDTO';
382
+ export * from './optimizationJobStatusResponse';
377
383
  export * from './optimizationRuleAuditLogDTO';
378
384
  export * from './optimizationRuleAuditLogDTOList';
379
385
  export * from './optimizationRuleDTO';
@@ -414,6 +420,7 @@ export * from './safeguardResponseDTO';
414
420
  export * from './safeguardRuleMasterEntity';
415
421
  export * from './schedulerRequest';
416
422
  export * from './searchRequest';
423
+ export * from './selectedTargetDTO';
417
424
  export * from './siteListDTO';
418
425
  export * from './siteListRequest';
419
426
  export * from './siteModel';
@@ -0,0 +1,27 @@
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 OptimizationJobItemStatusDTO {
13
+ errorMessage?: string;
14
+ generatedUrl?: string;
15
+ status?: OptimizationJobItemStatusDTO.StatusEnum;
16
+ targetHeight?: number;
17
+ targetWidth?: number;
18
+ }
19
+ export declare namespace OptimizationJobItemStatusDTO {
20
+ type StatusEnum = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED';
21
+ const StatusEnum: {
22
+ PENDING: StatusEnum;
23
+ PROCESSING: StatusEnum;
24
+ COMPLETED: StatusEnum;
25
+ FAILED: StatusEnum;
26
+ };
27
+ }
@@ -0,0 +1,31 @@
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 { OptimizationJobItemStatusDTO } from './optimizationJobItemStatusDTO';
13
+ export interface OptimizationJobStatusResponse {
14
+ completedTargets?: number;
15
+ failedTargets?: number;
16
+ items?: Array<OptimizationJobItemStatusDTO>;
17
+ jobId?: number;
18
+ percentComplete?: number;
19
+ status?: OptimizationJobStatusResponse.StatusEnum;
20
+ totalTargets?: number;
21
+ }
22
+ export declare namespace OptimizationJobStatusResponse {
23
+ type StatusEnum = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'COMPLETED_WITH_ERRORS' | 'FAILED';
24
+ const StatusEnum: {
25
+ PENDING: StatusEnum;
26
+ PROCESSING: StatusEnum;
27
+ COMPLETED: StatusEnum;
28
+ COMPLETEDWITHERRORS: StatusEnum;
29
+ FAILED: StatusEnum;
30
+ };
31
+ }
@@ -0,0 +1,30 @@
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 SelectedTargetDTO {
13
+ borderType?: SelectedTargetDTO.BorderTypeEnum;
14
+ height?: number;
15
+ mappingType?: SelectedTargetDTO.MappingTypeEnum;
16
+ width?: number;
17
+ }
18
+ export declare namespace SelectedTargetDTO {
19
+ type BorderTypeEnum = 'NONE' | 'BLACK' | 'BLUR';
20
+ const BorderTypeEnum: {
21
+ NONE: BorderTypeEnum;
22
+ BLACK: BorderTypeEnum;
23
+ BLUR: BorderTypeEnum;
24
+ };
25
+ type MappingTypeEnum = 'EXACT_FIT' | 'BORDER';
26
+ const MappingTypeEnum: {
27
+ EXACTFIT: MappingTypeEnum;
28
+ BORDER: MappingTypeEnum;
29
+ };
30
+ }
@@ -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.479",
3
+ "version": "1.1.482",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [