@revxui/api-clients-ts 1.1.472 → 1.1.473
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.
- package/README.md +2 -2
- package/api/dCOVideoSettingsController.service.d.ts +17 -1
- package/esm2020/api/dCOVideoSettingsController.service.mjs +40 -1
- package/esm2020/model/apiResponseObjectDcoVideoSamplesResponse.mjs +2 -0
- package/esm2020/model/dcoVideoErrorDTO.mjs +13 -0
- package/esm2020/model/dcoVideoPaginationDTO.mjs +13 -0
- package/esm2020/model/dcoVideoSampleDTO.mjs +2 -0
- package/esm2020/model/dcoVideoSamplesResponse.mjs +2 -0
- package/esm2020/model/models.mjs +6 -1
- package/fesm2015/revxui-api-clients-ts.mjs +39 -0
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +63 -0
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectDcoVideoSamplesResponse.d.ts +17 -0
- package/model/dcoVideoErrorDTO.d.ts +15 -0
- package/model/dcoVideoPaginationDTO.d.ts +19 -0
- package/model/dcoVideoSampleDTO.d.ts +27 -0
- package/model/dcoVideoSamplesResponse.d.ts +18 -0
- package/model/models.d.ts +5 -0
- 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 { DcoVideoSamplesResponse } from './dcoVideoSamplesResponse';
|
|
13
|
+
export interface ApiResponseObjectDcoVideoSamplesResponse {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: DcoVideoSamplesResponse;
|
|
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 DcoVideoErrorDTO {
|
|
13
|
+
code?: string;
|
|
14
|
+
message?: string;
|
|
15
|
+
}
|
|
@@ -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
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -97,6 +97,7 @@ export * from './apiResponseObjectDcoVideoAssetUploadResponse';
|
|
|
97
97
|
export * from './apiResponseObjectDcoVideoDeleteResponse';
|
|
98
98
|
export * from './apiResponseObjectDcoVideoGenerateSampleResponse';
|
|
99
99
|
export * from './apiResponseObjectDcoVideoGeneratedCountResponse';
|
|
100
|
+
export * from './apiResponseObjectDcoVideoSamplesResponse';
|
|
100
101
|
export * from './apiResponseObjectDcoVideoSettingsDTO';
|
|
101
102
|
export * from './apiResponseObjectDictionaryResponse';
|
|
102
103
|
export * from './apiResponseObjectDmpAudienceDTO';
|
|
@@ -291,10 +292,14 @@ export * from './dcoVideoBrandGuidelineDTO';
|
|
|
291
292
|
export * from './dcoVideoCatalogItemDTO';
|
|
292
293
|
export * from './dcoVideoDeleteResponse';
|
|
293
294
|
export * from './dcoVideoDimensionDTO';
|
|
295
|
+
export * from './dcoVideoErrorDTO';
|
|
294
296
|
export * from './dcoVideoGenerateSampleRequest';
|
|
295
297
|
export * from './dcoVideoGenerateSampleResponse';
|
|
296
298
|
export * from './dcoVideoGeneratedCountResponse';
|
|
297
299
|
export * from './dcoVideoMusicTrackDTO';
|
|
300
|
+
export * from './dcoVideoPaginationDTO';
|
|
301
|
+
export * from './dcoVideoSampleDTO';
|
|
302
|
+
export * from './dcoVideoSamplesResponse';
|
|
298
303
|
export * from './dcoVideoSettingsCreateRequest';
|
|
299
304
|
export * from './dcoVideoSettingsDTO';
|
|
300
305
|
export * from './dcoVideoSettingsUpdateRequest';
|