@revxui/api-clients-ts 1.1.447 → 1.1.448

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 (59) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/dCOVideoSettingsController.service.d.ts +136 -0
  4. package/esm2020/api/api.mjs +4 -2
  5. package/esm2020/api/dCOVideoSettingsController.service.mjs +353 -0
  6. package/esm2020/api.module.mjs +4 -1
  7. package/esm2020/model/apiResponseObjectDcoVideoActivateResponse.mjs +2 -0
  8. package/esm2020/model/apiResponseObjectDcoVideoGenerateSampleResponse.mjs +2 -0
  9. package/esm2020/model/apiResponseObjectDcoVideoGeneratedCountResponse.mjs +2 -0
  10. package/esm2020/model/apiResponseObjectDcoVideoSamplesResponse.mjs +2 -0
  11. package/esm2020/model/apiResponseObjectDcoVideoSettingsDTO.mjs +2 -0
  12. package/esm2020/model/apiResponseObjectListDcoVideoSettingsDTO.mjs +2 -0
  13. package/esm2020/model/apiResponseObjectListDcoVideoTemplateDTO.mjs +2 -0
  14. package/esm2020/model/dcoVideoActivateRequest.mjs +13 -0
  15. package/esm2020/model/dcoVideoActivateResponse.mjs +13 -0
  16. package/esm2020/model/dcoVideoAssetDTO.mjs +13 -0
  17. package/esm2020/model/dcoVideoCatalogItemDTO.mjs +13 -0
  18. package/esm2020/model/dcoVideoErrorDTO.mjs +13 -0
  19. package/esm2020/model/dcoVideoGenerateSampleRequest.mjs +13 -0
  20. package/esm2020/model/dcoVideoGenerateSampleResponse.mjs +2 -0
  21. package/esm2020/model/dcoVideoGeneratedCountResponse.mjs +13 -0
  22. package/esm2020/model/dcoVideoPaginationDTO.mjs +13 -0
  23. package/esm2020/model/dcoVideoSampleDTO.mjs +2 -0
  24. package/esm2020/model/dcoVideoSamplesResponse.mjs +2 -0
  25. package/esm2020/model/dcoVideoSettingsCreateRequest.mjs +2 -0
  26. package/esm2020/model/dcoVideoSettingsDTO.mjs +2 -0
  27. package/esm2020/model/dcoVideoSettingsUpdateRequest.mjs +2 -0
  28. package/esm2020/model/dcoVideoTemplateDTO.mjs +2 -0
  29. package/esm2020/model/dcoVideoTemplateRequirementsDTO.mjs +13 -0
  30. package/esm2020/model/models.mjs +24 -1
  31. package/fesm2015/revxui-api-clients-ts.mjs +351 -2
  32. package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
  33. package/fesm2020/revxui-api-clients-ts.mjs +457 -2
  34. package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
  35. package/model/apiResponseObjectDcoVideoActivateResponse.d.ts +17 -0
  36. package/model/apiResponseObjectDcoVideoGenerateSampleResponse.d.ts +17 -0
  37. package/model/apiResponseObjectDcoVideoGeneratedCountResponse.d.ts +17 -0
  38. package/model/apiResponseObjectDcoVideoSamplesResponse.d.ts +17 -0
  39. package/model/apiResponseObjectDcoVideoSettingsDTO.d.ts +17 -0
  40. package/model/apiResponseObjectListDcoVideoSettingsDTO.d.ts +17 -0
  41. package/model/apiResponseObjectListDcoVideoTemplateDTO.d.ts +17 -0
  42. package/model/dcoVideoActivateRequest.d.ts +15 -0
  43. package/model/dcoVideoActivateResponse.d.ts +18 -0
  44. package/model/dcoVideoAssetDTO.d.ts +23 -0
  45. package/model/dcoVideoCatalogItemDTO.d.ts +16 -0
  46. package/model/dcoVideoErrorDTO.d.ts +15 -0
  47. package/model/dcoVideoGenerateSampleRequest.d.ts +20 -0
  48. package/model/dcoVideoGenerateSampleResponse.d.ts +27 -0
  49. package/model/dcoVideoGeneratedCountResponse.d.ts +24 -0
  50. package/model/dcoVideoPaginationDTO.d.ts +19 -0
  51. package/model/dcoVideoSampleDTO.d.ts +27 -0
  52. package/model/dcoVideoSamplesResponse.d.ts +18 -0
  53. package/model/dcoVideoSettingsCreateRequest.d.ts +19 -0
  54. package/model/dcoVideoSettingsDTO.d.ts +31 -0
  55. package/model/dcoVideoSettingsUpdateRequest.d.ts +18 -0
  56. package/model/dcoVideoTemplateDTO.d.ts +21 -0
  57. package/model/dcoVideoTemplateRequirementsDTO.d.ts +16 -0
  58. package/model/models.d.ts +23 -0
  59. 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 { DcoVideoActivateResponse } from './dcoVideoActivateResponse';
13
+ export interface ApiResponseObjectDcoVideoActivateResponse {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: DcoVideoActivateResponse;
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 { DcoVideoGenerateSampleResponse } from './dcoVideoGenerateSampleResponse';
13
+ export interface ApiResponseObjectDcoVideoGenerateSampleResponse {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: DcoVideoGenerateSampleResponse;
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 { DcoVideoGeneratedCountResponse } from './dcoVideoGeneratedCountResponse';
13
+ export interface ApiResponseObjectDcoVideoGeneratedCountResponse {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: DcoVideoGeneratedCountResponse;
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 { DcoVideoSamplesResponse } from './dcoVideoSamplesResponse';
13
+ export interface ApiResponseObjectDcoVideoSamplesResponse {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: DcoVideoSamplesResponse;
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 { DcoVideoSettingsDTO } from './dcoVideoSettingsDTO';
13
+ export interface ApiResponseObjectDcoVideoSettingsDTO {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: DcoVideoSettingsDTO;
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 { DcoVideoSettingsDTO } from './dcoVideoSettingsDTO';
13
+ export interface ApiResponseObjectListDcoVideoSettingsDTO {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: Array<DcoVideoSettingsDTO>;
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 { DcoVideoTemplateDTO } from './dcoVideoTemplateDTO';
13
+ export interface ApiResponseObjectListDcoVideoTemplateDTO {
14
+ error?: Error;
15
+ respId?: string;
16
+ respObject?: Array<DcoVideoTemplateDTO>;
17
+ }
@@ -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 DcoVideoActivateRequest {
13
+ isActive?: boolean;
14
+ settingsId?: number;
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 DcoVideoActivateResponse {
13
+ activatedAt?: Date;
14
+ deactivatedAt?: Date;
15
+ isActive?: boolean;
16
+ message?: string;
17
+ settingsId?: number;
18
+ }
@@ -0,0 +1,23 @@
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 DcoVideoAssetDTO {
13
+ createdAt?: Date;
14
+ durationSecs?: number;
15
+ fileName?: string;
16
+ fileSizeInBytes?: number;
17
+ height?: number;
18
+ id?: number;
19
+ modifiedAt?: Date;
20
+ type?: string;
21
+ url?: string;
22
+ width?: number;
23
+ }
@@ -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
+ export interface DcoVideoCatalogItemDTO {
13
+ productId?: string;
14
+ productImageUrl?: string;
15
+ productName?: string;
16
+ }
@@ -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 DcoVideoErrorDTO {
13
+ code?: string;
14
+ message?: string;
15
+ }
@@ -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 DcoVideoGenerateSampleRequest {
13
+ assets?: {
14
+ [key: string]: string;
15
+ };
16
+ brandGuidelineId?: number;
17
+ feedKey?: string;
18
+ settingsId?: number;
19
+ templateId?: number;
20
+ }
@@ -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
+ import { DcoVideoCatalogItemDTO } from './dcoVideoCatalogItemDTO';
13
+ export interface DcoVideoGenerateSampleResponse {
14
+ assets?: {
15
+ [key: string]: string;
16
+ };
17
+ brandGuidelineId?: number;
18
+ catalogItemsUsed?: Array<DcoVideoCatalogItemDTO>;
19
+ feedKey?: string;
20
+ generatedAt?: Date;
21
+ renderDurationMs?: number;
22
+ sampleVideoThumbnailUrl?: string;
23
+ sampleVideoUrl?: string;
24
+ settingsId?: number;
25
+ status?: string;
26
+ templateId?: number;
27
+ }
@@ -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 DcoVideoGeneratedCountResponse {
13
+ completedAt?: Date;
14
+ estimatedCompletionTime?: Date;
15
+ failedCount?: number;
16
+ generatedCount?: number;
17
+ lastUpdatedAt?: Date;
18
+ pendingCount?: number;
19
+ progressPercentage?: number;
20
+ settingsId?: number;
21
+ startedAt?: Date;
22
+ status?: string;
23
+ targetCount?: number;
24
+ }
@@ -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 DcoVideoPaginationDTO {
13
+ currentPage?: number;
14
+ hasNext?: boolean;
15
+ hasPrevious?: boolean;
16
+ pageSize?: number;
17
+ totalItems?: number;
18
+ totalPages?: number;
19
+ }
@@ -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
+ import { DcoVideoCatalogItemDTO } from './dcoVideoCatalogItemDTO';
13
+ import { DcoVideoErrorDTO } from './dcoVideoErrorDTO';
14
+ export interface DcoVideoSampleDTO {
15
+ attemptedAt?: Date;
16
+ catalogItem?: DcoVideoCatalogItemDTO;
17
+ duration?: number;
18
+ error?: DcoVideoErrorDTO;
19
+ fileSize?: number;
20
+ generatedAt?: Date;
21
+ queuedAt?: Date;
22
+ resolution?: string;
23
+ status?: string;
24
+ thumbnailUrl?: string;
25
+ videoId?: string;
26
+ videoUrl?: string;
27
+ }
@@ -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 { DcoVideoPaginationDTO } from './dcoVideoPaginationDTO';
13
+ import { DcoVideoSampleDTO } from './dcoVideoSampleDTO';
14
+ export interface DcoVideoSamplesResponse {
15
+ pagination?: DcoVideoPaginationDTO;
16
+ settingsId?: number;
17
+ videos?: Array<DcoVideoSampleDTO>;
18
+ }
@@ -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 { DcoVideoAssetDTO } from './dcoVideoAssetDTO';
13
+ export interface DcoVideoSettingsCreateRequest {
14
+ advertiserId?: number;
15
+ assets?: Array<DcoVideoAssetDTO>;
16
+ brandGuidelineId?: number;
17
+ feedKey?: string;
18
+ templateId?: number;
19
+ }
@@ -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 { DcoVideoAssetDTO } from './dcoVideoAssetDTO';
13
+ import { DcoVideoTemplateDTO } from './dcoVideoTemplateDTO';
14
+ export interface DcoVideoSettingsDTO {
15
+ advertiserId?: number;
16
+ assets?: Array<DcoVideoAssetDTO>;
17
+ brandGuidelineId?: number;
18
+ createdAt?: Date;
19
+ createdBy?: number;
20
+ feedKey?: string;
21
+ id?: number;
22
+ isActive?: boolean;
23
+ modifiedBy?: number;
24
+ sampleVideoGeneratedAt?: Date;
25
+ sampleVideoHeight?: number;
26
+ sampleVideoStatus?: string;
27
+ sampleVideoUrl?: string;
28
+ sampleVideoWidth?: number;
29
+ template?: DcoVideoTemplateDTO;
30
+ updatedAt?: Date;
31
+ }
@@ -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 { DcoVideoAssetDTO } from './dcoVideoAssetDTO';
13
+ export interface DcoVideoSettingsUpdateRequest {
14
+ assets?: Array<DcoVideoAssetDTO>;
15
+ brandGuidelineId?: number;
16
+ feedKey?: string;
17
+ templateId?: number;
18
+ }
@@ -0,0 +1,21 @@
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 { DcoVideoTemplateRequirementsDTO } from './dcoVideoTemplateRequirementsDTO';
13
+ export interface DcoVideoTemplateDTO {
14
+ code?: string;
15
+ height?: number;
16
+ id?: number;
17
+ name?: string;
18
+ previewUrl?: string;
19
+ requires?: DcoVideoTemplateRequirementsDTO;
20
+ width?: number;
21
+ }
@@ -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
+ export interface DcoVideoTemplateRequirementsDTO {
13
+ backgroundImage?: boolean;
14
+ promoBanner?: boolean;
15
+ promoVideo?: boolean;
16
+ }
package/model/models.d.ts CHANGED
@@ -91,6 +91,11 @@ export * from './apiResponseObjectCreativeSetResponse';
91
91
  export * from './apiResponseObjectCreativeTemplatesMetadataDTO';
92
92
  export * from './apiResponseObjectDashboardMetrics';
93
93
  export * from './apiResponseObjectDashboardResponse';
94
+ export * from './apiResponseObjectDcoVideoActivateResponse';
95
+ export * from './apiResponseObjectDcoVideoGenerateSampleResponse';
96
+ export * from './apiResponseObjectDcoVideoGeneratedCountResponse';
97
+ export * from './apiResponseObjectDcoVideoSamplesResponse';
98
+ export * from './apiResponseObjectDcoVideoSettingsDTO';
94
99
  export * from './apiResponseObjectDictionaryResponse';
95
100
  export * from './apiResponseObjectDmpAudienceDTO';
96
101
  export * from './apiResponseObjectDuplicateCreativeSetResponse';
@@ -116,6 +121,8 @@ export * from './apiResponseObjectListCreativeEntity';
116
121
  export * from './apiResponseObjectListCreativeFiles';
117
122
  export * from './apiResponseObjectListCreativeMetaData';
118
123
  export * from './apiResponseObjectListDashboardResponse';
124
+ export * from './apiResponseObjectListDcoVideoSettingsDTO';
125
+ export * from './apiResponseObjectListDcoVideoTemplateDTO';
119
126
  export * from './apiResponseObjectListDynamicVideoTemplate';
120
127
  export * from './apiResponseObjectListExperimentsEntity';
121
128
  export * from './apiResponseObjectListIncrementalityTestDetails';
@@ -270,6 +277,22 @@ export * from './day';
270
277
  export * from './dayPart';
271
278
  export * from './dayPartEditField';
272
279
  export * from './dcoAttributesDTO';
280
+ export * from './dcoVideoActivateRequest';
281
+ export * from './dcoVideoActivateResponse';
282
+ export * from './dcoVideoAssetDTO';
283
+ export * from './dcoVideoCatalogItemDTO';
284
+ export * from './dcoVideoErrorDTO';
285
+ export * from './dcoVideoGenerateSampleRequest';
286
+ export * from './dcoVideoGenerateSampleResponse';
287
+ export * from './dcoVideoGeneratedCountResponse';
288
+ export * from './dcoVideoPaginationDTO';
289
+ export * from './dcoVideoSampleDTO';
290
+ export * from './dcoVideoSamplesResponse';
291
+ export * from './dcoVideoSettingsCreateRequest';
292
+ export * from './dcoVideoSettingsDTO';
293
+ export * from './dcoVideoSettingsUpdateRequest';
294
+ export * from './dcoVideoTemplateDTO';
295
+ export * from './dcoVideoTemplateRequirementsDTO';
273
296
  export * from './dealCategoryDTO';
274
297
  export * from './dealCategoryEditField';
275
298
  export * from './dealESDTO';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revxui/api-clients-ts",
3
- "version": "1.1.447",
3
+ "version": "1.1.448",
4
4
  "description": "swagger client for @revxui/api-clients-ts",
5
5
  "author": "Swagger Codegen Contributors",
6
6
  "keywords": [