@revxui/api-clients-ts 1.1.459 → 1.1.460
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 +12 -16
- package/esm2020/api/dCOVideoSettingsController.service.mjs +18 -70
- package/esm2020/model/dcoVideoAssetUploadResponse.mjs +1 -1
- package/esm2020/model/dcoVideoUploadedAssetDTO.mjs +13 -0
- package/esm2020/model/models.mjs +2 -1
- package/fesm2015/revxui-api-clients-ts.mjs +17 -69
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +29 -69
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/dcoVideoAssetUploadResponse.d.ts +2 -2
- package/model/dcoVideoUploadedAssetDTO.d.ts +15 -0
- package/model/models.d.ts +1 -0
- package/package.json +1 -1
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { DcoVideoUploadedAssetDTO } from './dcoVideoUploadedAssetDTO';
|
|
13
13
|
export interface DcoVideoAssetUploadResponse {
|
|
14
14
|
advertiserId?: number;
|
|
15
|
-
assets?: Array<
|
|
15
|
+
assets?: Array<DcoVideoUploadedAssetDTO>;
|
|
16
16
|
templateId?: number;
|
|
17
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 DcoVideoUploadedAssetDTO {
|
|
13
|
+
type?: string;
|
|
14
|
+
url?: string;
|
|
15
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ export * from './dcoVideoSettingsDTO';
|
|
|
295
295
|
export * from './dcoVideoSettingsUpdateRequest';
|
|
296
296
|
export * from './dcoVideoTemplateDTO';
|
|
297
297
|
export * from './dcoVideoTemplateRequirementsDTO';
|
|
298
|
+
export * from './dcoVideoUploadedAssetDTO';
|
|
298
299
|
export * from './dealCategoryDTO';
|
|
299
300
|
export * from './dealCategoryEditField';
|
|
300
301
|
export * from './dealESDTO';
|