@revxui/api-clients-ts 1.1.446 → 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.
- package/README.md +2 -2
- package/api/api.d.ts +3 -1
- package/api/dCOVideoSettingsController.service.d.ts +136 -0
- package/api/strategyController.service.d.ts +13 -0
- package/esm2020/api/api.mjs +4 -2
- package/esm2020/api/dCOVideoSettingsController.service.mjs +353 -0
- package/esm2020/api/strategyController.service.mjs +35 -1
- package/esm2020/api.module.mjs +4 -1
- package/esm2020/model/adFormatCount.mjs +13 -0
- package/esm2020/model/apiResponseObjectDcoVideoActivateResponse.mjs +2 -0
- package/esm2020/model/apiResponseObjectDcoVideoGenerateSampleResponse.mjs +2 -0
- package/esm2020/model/apiResponseObjectDcoVideoGeneratedCountResponse.mjs +2 -0
- package/esm2020/model/apiResponseObjectDcoVideoSamplesResponse.mjs +2 -0
- package/esm2020/model/apiResponseObjectDcoVideoSettingsDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListDcoVideoSettingsDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListDcoVideoTemplateDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectMaplongAdFormatCount.mjs +2 -0
- package/esm2020/model/dcoVideoActivateRequest.mjs +13 -0
- package/esm2020/model/dcoVideoActivateResponse.mjs +13 -0
- package/esm2020/model/dcoVideoAssetDTO.mjs +13 -0
- package/esm2020/model/dcoVideoCatalogItemDTO.mjs +13 -0
- package/esm2020/model/dcoVideoErrorDTO.mjs +13 -0
- package/esm2020/model/dcoVideoGenerateSampleRequest.mjs +13 -0
- package/esm2020/model/dcoVideoGenerateSampleResponse.mjs +2 -0
- package/esm2020/model/dcoVideoGeneratedCountResponse.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/dcoVideoSettingsCreateRequest.mjs +2 -0
- package/esm2020/model/dcoVideoSettingsDTO.mjs +2 -0
- package/esm2020/model/dcoVideoSettingsUpdateRequest.mjs +2 -0
- package/esm2020/model/dcoVideoTemplateDTO.mjs +2 -0
- package/esm2020/model/dcoVideoTemplateRequirementsDTO.mjs +13 -0
- package/esm2020/model/maplongAdFormatCount.mjs +2 -0
- package/esm2020/model/models.mjs +27 -1
- package/esm2020/model/strategy.mjs +1 -1
- package/esm2020/model/strategyDTO.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +385 -2
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +503 -2
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/adFormatCount.d.ts +16 -0
- package/model/apiResponseObjectDcoVideoActivateResponse.d.ts +17 -0
- package/model/apiResponseObjectDcoVideoGenerateSampleResponse.d.ts +17 -0
- package/model/apiResponseObjectDcoVideoGeneratedCountResponse.d.ts +17 -0
- package/model/apiResponseObjectDcoVideoSamplesResponse.d.ts +17 -0
- package/model/apiResponseObjectDcoVideoSettingsDTO.d.ts +17 -0
- package/model/apiResponseObjectListDcoVideoSettingsDTO.d.ts +17 -0
- package/model/apiResponseObjectListDcoVideoTemplateDTO.d.ts +17 -0
- package/model/apiResponseObjectMaplongAdFormatCount.d.ts +19 -0
- package/model/dcoVideoActivateRequest.d.ts +15 -0
- package/model/dcoVideoActivateResponse.d.ts +18 -0
- package/model/dcoVideoAssetDTO.d.ts +23 -0
- package/model/dcoVideoCatalogItemDTO.d.ts +16 -0
- package/model/dcoVideoErrorDTO.d.ts +15 -0
- package/model/dcoVideoGenerateSampleRequest.d.ts +20 -0
- package/model/dcoVideoGenerateSampleResponse.d.ts +27 -0
- package/model/dcoVideoGeneratedCountResponse.d.ts +24 -0
- package/model/dcoVideoPaginationDTO.d.ts +19 -0
- package/model/dcoVideoSampleDTO.d.ts +27 -0
- package/model/dcoVideoSamplesResponse.d.ts +18 -0
- package/model/dcoVideoSettingsCreateRequest.d.ts +19 -0
- package/model/dcoVideoSettingsDTO.d.ts +31 -0
- package/model/dcoVideoSettingsUpdateRequest.d.ts +18 -0
- package/model/dcoVideoTemplateDTO.d.ts +21 -0
- package/model/dcoVideoTemplateRequirementsDTO.d.ts +16 -0
- package/model/maplongAdFormatCount.d.ts +15 -0
- package/model/models.d.ts +26 -0
- package/model/strategy.d.ts +2 -0
- package/model/strategyDTO.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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 AdFormatCount {
|
|
13
|
+
bannerCount?: number;
|
|
14
|
+
nativeCount?: number;
|
|
15
|
+
videoCount?: number;
|
|
16
|
+
}
|
|
@@ -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,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 { AdFormatCount } from './adFormatCount';
|
|
13
|
+
export interface ApiResponseObjectMaplongAdFormatCount {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: {
|
|
17
|
+
[key: string]: AdFormatCount;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -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
|
+
import { AdFormatCount } from './adFormatCount';
|
|
13
|
+
export interface MaplongAdFormatCount {
|
|
14
|
+
[key: string]: AdFormatCount;
|
|
15
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './activityLog';
|
|
|
7
7
|
export * from './activityLogsCreativeSetsBulkUpdateDTO';
|
|
8
8
|
export * from './activityLogsStrategyBulkUpdateDTO';
|
|
9
9
|
export * from './adBreak';
|
|
10
|
+
export * from './adFormatCount';
|
|
10
11
|
export * from './adPod';
|
|
11
12
|
export * from './adoDTO';
|
|
12
13
|
export * from './advertiser';
|
|
@@ -90,6 +91,11 @@ export * from './apiResponseObjectCreativeSetResponse';
|
|
|
90
91
|
export * from './apiResponseObjectCreativeTemplatesMetadataDTO';
|
|
91
92
|
export * from './apiResponseObjectDashboardMetrics';
|
|
92
93
|
export * from './apiResponseObjectDashboardResponse';
|
|
94
|
+
export * from './apiResponseObjectDcoVideoActivateResponse';
|
|
95
|
+
export * from './apiResponseObjectDcoVideoGenerateSampleResponse';
|
|
96
|
+
export * from './apiResponseObjectDcoVideoGeneratedCountResponse';
|
|
97
|
+
export * from './apiResponseObjectDcoVideoSamplesResponse';
|
|
98
|
+
export * from './apiResponseObjectDcoVideoSettingsDTO';
|
|
93
99
|
export * from './apiResponseObjectDictionaryResponse';
|
|
94
100
|
export * from './apiResponseObjectDmpAudienceDTO';
|
|
95
101
|
export * from './apiResponseObjectDuplicateCreativeSetResponse';
|
|
@@ -115,6 +121,8 @@ export * from './apiResponseObjectListCreativeEntity';
|
|
|
115
121
|
export * from './apiResponseObjectListCreativeFiles';
|
|
116
122
|
export * from './apiResponseObjectListCreativeMetaData';
|
|
117
123
|
export * from './apiResponseObjectListDashboardResponse';
|
|
124
|
+
export * from './apiResponseObjectListDcoVideoSettingsDTO';
|
|
125
|
+
export * from './apiResponseObjectListDcoVideoTemplateDTO';
|
|
118
126
|
export * from './apiResponseObjectListDynamicVideoTemplate';
|
|
119
127
|
export * from './apiResponseObjectListExperimentsEntity';
|
|
120
128
|
export * from './apiResponseObjectListIncrementalityTestDetails';
|
|
@@ -133,6 +141,7 @@ export * from './apiResponseObjectListTemplateThemeDTO';
|
|
|
133
141
|
export * from './apiResponseObjectListTemplateVariablesDTO';
|
|
134
142
|
export * from './apiResponseObjectListUserPreferenceDTO';
|
|
135
143
|
export * from './apiResponseObjectMapintResponseMessage';
|
|
144
|
+
export * from './apiResponseObjectMaplongAdFormatCount';
|
|
136
145
|
export * from './apiResponseObjectMaplongResponseMessage';
|
|
137
146
|
export * from './apiResponseObjectMaplongstring';
|
|
138
147
|
export * from './apiResponseObjectMapstringlong';
|
|
@@ -268,6 +277,22 @@ export * from './day';
|
|
|
268
277
|
export * from './dayPart';
|
|
269
278
|
export * from './dayPartEditField';
|
|
270
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';
|
|
271
296
|
export * from './dealCategoryDTO';
|
|
272
297
|
export * from './dealCategoryEditField';
|
|
273
298
|
export * from './dealESDTO';
|
|
@@ -320,6 +345,7 @@ export * from './jsonNode';
|
|
|
320
345
|
export * from './lookAlikeAudienceConfigDTO';
|
|
321
346
|
export * from './macro';
|
|
322
347
|
export * from './mapintResponseMessage';
|
|
348
|
+
export * from './maplongAdFormatCount';
|
|
323
349
|
export * from './maplongResponseMessage';
|
|
324
350
|
export * from './maplongstring';
|
|
325
351
|
export * from './mapstringlong';
|
package/model/strategy.d.ts
CHANGED
|
@@ -9,9 +9,11 @@
|
|
|
9
9
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AdFormatCount } from './adFormatCount';
|
|
12
13
|
import { BaseModel } from './baseModel';
|
|
13
14
|
export interface Strategy {
|
|
14
15
|
active?: boolean;
|
|
16
|
+
adFormatCount?: AdFormatCount;
|
|
15
17
|
advertiser?: BaseModel;
|
|
16
18
|
advertiserId?: number;
|
|
17
19
|
bidCapMax?: number;
|
package/model/strategyDTO.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { AbandonedSessionUserTargeting } from './abandonedSessionUserTargeting';
|
|
13
|
+
import { AdFormatCount } from './adFormatCount';
|
|
13
14
|
import { AgeGroup } from './ageGroup';
|
|
14
15
|
import { AudienceStrDeviceDTO } from './audienceStrDeviceDTO';
|
|
15
16
|
import { BaseModel } from './baseModel';
|
|
@@ -37,6 +38,7 @@ export interface StrategyDTO {
|
|
|
37
38
|
abandonedSessionUserTargeting?: AbandonedSessionUserTargeting;
|
|
38
39
|
abtestBidAndBudgetAdjustment?: boolean;
|
|
39
40
|
active?: boolean;
|
|
41
|
+
adFormatCount?: AdFormatCount;
|
|
40
42
|
adGroupCount?: number;
|
|
41
43
|
advertiser?: BaseModel;
|
|
42
44
|
advertiserId?: number;
|