@revxui/api-clients-ts 1.1.449 → 1.1.450
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 +43 -12
- package/esm2020/api/dCOVideoSettingsController.service.mjs +136 -23
- package/esm2020/model/apiResponseObjectListDcoVideoBrandGuidelineDTO.mjs +2 -0
- package/esm2020/model/apiResponseObjectListstring.mjs +13 -0
- package/esm2020/model/dcoVideoBrandGuidelineDTO.mjs +13 -0
- package/esm2020/model/dcoVideoGenerateSampleResponse.mjs +1 -1
- package/esm2020/model/inputStream.mjs +13 -0
- package/esm2020/model/modelFile.mjs +13 -0
- package/esm2020/model/models.mjs +10 -1
- package/esm2020/model/resource.mjs +2 -0
- package/esm2020/model/uRI.mjs +13 -0
- package/esm2020/model/uRL.mjs +2 -0
- package/esm2020/model/uRLStreamHandler.mjs +13 -0
- package/fesm2015/revxui-api-clients-ts.mjs +133 -20
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +205 -20
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListDcoVideoBrandGuidelineDTO.d.ts +17 -0
- package/model/apiResponseObjectListstring.d.ts +16 -0
- package/model/dcoVideoBrandGuidelineDTO.d.ts +16 -0
- package/model/dcoVideoGenerateSampleResponse.d.ts +2 -0
- package/model/inputStream.d.ts +13 -0
- package/model/modelFile.d.ts +32 -0
- package/model/models.d.ts +9 -0
- package/model/resource.d.ts +24 -0
- package/model/uRI.d.ts +30 -0
- package/model/uRL.d.ts +27 -0
- package/model/uRLStreamHandler.d.ts +13 -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 { DcoVideoBrandGuidelineDTO } from './dcoVideoBrandGuidelineDTO';
|
|
13
|
+
export interface ApiResponseObjectListDcoVideoBrandGuidelineDTO {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: Array<DcoVideoBrandGuidelineDTO>;
|
|
17
|
+
}
|
|
@@ -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 ApiResponseObjectListstring {
|
|
13
|
+
error?: Error;
|
|
14
|
+
respId?: string;
|
|
15
|
+
respObject?: Array<string>;
|
|
16
|
+
}
|
|
@@ -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 DcoVideoBrandGuidelineDTO {
|
|
13
|
+
configValue?: string;
|
|
14
|
+
id?: number;
|
|
15
|
+
name?: string;
|
|
16
|
+
}
|
|
@@ -18,10 +18,12 @@ export interface DcoVideoGenerateSampleResponse {
|
|
|
18
18
|
catalogItemsUsed?: Array<DcoVideoCatalogItemDTO>;
|
|
19
19
|
feedKey?: string;
|
|
20
20
|
generatedAt?: Date;
|
|
21
|
+
height?: number;
|
|
21
22
|
renderDurationMs?: number;
|
|
22
23
|
sampleVideoThumbnailUrl?: string;
|
|
23
24
|
sampleVideoUrl?: string;
|
|
24
25
|
settingsId?: number;
|
|
25
26
|
status?: string;
|
|
26
27
|
templateId?: number;
|
|
28
|
+
width?: number;
|
|
27
29
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 InputStream {
|
|
13
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 ModelFile {
|
|
13
|
+
absolute?: boolean;
|
|
14
|
+
absoluteFile?: any;
|
|
15
|
+
absolutePath?: string;
|
|
16
|
+
canonicalFile?: any;
|
|
17
|
+
canonicalPath?: string;
|
|
18
|
+
directory?: boolean;
|
|
19
|
+
executable?: boolean;
|
|
20
|
+
file?: boolean;
|
|
21
|
+
freeSpace?: number;
|
|
22
|
+
hidden?: boolean;
|
|
23
|
+
lastModified?: number;
|
|
24
|
+
name?: string;
|
|
25
|
+
parent?: string;
|
|
26
|
+
parentFile?: any;
|
|
27
|
+
path?: string;
|
|
28
|
+
readable?: boolean;
|
|
29
|
+
totalSpace?: number;
|
|
30
|
+
usableSpace?: number;
|
|
31
|
+
writable?: boolean;
|
|
32
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ export * from './apiResponseObjectListCreativeEntity';
|
|
|
121
121
|
export * from './apiResponseObjectListCreativeFiles';
|
|
122
122
|
export * from './apiResponseObjectListCreativeMetaData';
|
|
123
123
|
export * from './apiResponseObjectListDashboardResponse';
|
|
124
|
+
export * from './apiResponseObjectListDcoVideoBrandGuidelineDTO';
|
|
124
125
|
export * from './apiResponseObjectListDcoVideoSettingsDTO';
|
|
125
126
|
export * from './apiResponseObjectListDcoVideoTemplateDTO';
|
|
126
127
|
export * from './apiResponseObjectListDynamicVideoTemplate';
|
|
@@ -140,6 +141,7 @@ export * from './apiResponseObjectListStrategyCreativeSetsCloneDataResponse';
|
|
|
140
141
|
export * from './apiResponseObjectListTemplateThemeDTO';
|
|
141
142
|
export * from './apiResponseObjectListTemplateVariablesDTO';
|
|
142
143
|
export * from './apiResponseObjectListUserPreferenceDTO';
|
|
144
|
+
export * from './apiResponseObjectListstring';
|
|
143
145
|
export * from './apiResponseObjectMapintResponseMessage';
|
|
144
146
|
export * from './apiResponseObjectMaplongAdFormatCount';
|
|
145
147
|
export * from './apiResponseObjectMaplongResponseMessage';
|
|
@@ -280,6 +282,7 @@ export * from './dcoAttributesDTO';
|
|
|
280
282
|
export * from './dcoVideoActivateRequest';
|
|
281
283
|
export * from './dcoVideoActivateResponse';
|
|
282
284
|
export * from './dcoVideoAssetDTO';
|
|
285
|
+
export * from './dcoVideoBrandGuidelineDTO';
|
|
283
286
|
export * from './dcoVideoCatalogItemDTO';
|
|
284
287
|
export * from './dcoVideoErrorDTO';
|
|
285
288
|
export * from './dcoVideoGenerateSampleRequest';
|
|
@@ -339,6 +342,7 @@ export * from './incrementalityTestDTO';
|
|
|
339
342
|
export * from './incrementalityTestDetails';
|
|
340
343
|
export * from './incrementalityTestReportCalculationDetails';
|
|
341
344
|
export * from './incrementalityTestResponse';
|
|
345
|
+
export * from './inputStream';
|
|
342
346
|
export * from './integerEditField';
|
|
343
347
|
export * from './jobResponse';
|
|
344
348
|
export * from './jsonNode';
|
|
@@ -354,6 +358,7 @@ export * from './menuCrubResponse';
|
|
|
354
358
|
export * from './metaRuleDto';
|
|
355
359
|
export * from './metaRulesDto';
|
|
356
360
|
export * from './modelError';
|
|
361
|
+
export * from './modelFile';
|
|
357
362
|
export * from './nameAndTitleModel';
|
|
358
363
|
export * from './nativeAsset';
|
|
359
364
|
export * from './nativeAssetPojo';
|
|
@@ -387,6 +392,7 @@ export * from './reportingResponse';
|
|
|
387
392
|
export * from './reportingSchedulerRequest';
|
|
388
393
|
export * from './reportingSchedulerResponse';
|
|
389
394
|
export * from './reportingSchedulerUserResponse';
|
|
395
|
+
export * from './resource';
|
|
390
396
|
export * from './responseMessage';
|
|
391
397
|
export * from './ruleComponentDTO';
|
|
392
398
|
export * from './ruleDTO';
|
|
@@ -457,6 +463,9 @@ export * from './templateThemeDTO';
|
|
|
457
463
|
export * from './templateVariablesDTO';
|
|
458
464
|
export * from './timeZoneDTO';
|
|
459
465
|
export * from './totalUniqueUserRequest';
|
|
466
|
+
export * from './uRI';
|
|
467
|
+
export * from './uRL';
|
|
468
|
+
export * from './uRLStreamHandler';
|
|
460
469
|
export * from './userInfoEntity';
|
|
461
470
|
export * from './userPreferenceCategory';
|
|
462
471
|
export * from './userPreferenceDTO';
|
|
@@ -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
|
+
import { InputStream } from './inputStream';
|
|
13
|
+
import { URI } from './uRI';
|
|
14
|
+
import { URL } from './uRL';
|
|
15
|
+
export interface Resource {
|
|
16
|
+
description?: string;
|
|
17
|
+
file?: any;
|
|
18
|
+
filename?: string;
|
|
19
|
+
inputStream?: InputStream;
|
|
20
|
+
open?: boolean;
|
|
21
|
+
readable?: boolean;
|
|
22
|
+
uri?: URI;
|
|
23
|
+
url?: URL;
|
|
24
|
+
}
|
package/model/uRI.d.ts
ADDED
|
@@ -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 URI {
|
|
13
|
+
absolute?: boolean;
|
|
14
|
+
authority?: string;
|
|
15
|
+
fragment?: string;
|
|
16
|
+
host?: string;
|
|
17
|
+
opaque?: boolean;
|
|
18
|
+
path?: string;
|
|
19
|
+
port?: number;
|
|
20
|
+
query?: string;
|
|
21
|
+
rawAuthority?: string;
|
|
22
|
+
rawFragment?: string;
|
|
23
|
+
rawPath?: string;
|
|
24
|
+
rawQuery?: string;
|
|
25
|
+
rawSchemeSpecificPart?: string;
|
|
26
|
+
rawUserInfo?: string;
|
|
27
|
+
scheme?: string;
|
|
28
|
+
schemeSpecificPart?: string;
|
|
29
|
+
userInfo?: string;
|
|
30
|
+
}
|
package/model/uRL.d.ts
ADDED
|
@@ -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 { URLStreamHandler } from './uRLStreamHandler';
|
|
13
|
+
export interface URL {
|
|
14
|
+
authority?: string;
|
|
15
|
+
content?: any;
|
|
16
|
+
defaultPort?: number;
|
|
17
|
+
deserializedFields?: URLStreamHandler;
|
|
18
|
+
file?: string;
|
|
19
|
+
host?: string;
|
|
20
|
+
path?: string;
|
|
21
|
+
port?: number;
|
|
22
|
+
protocol?: string;
|
|
23
|
+
query?: string;
|
|
24
|
+
ref?: string;
|
|
25
|
+
serializedHashCode?: number;
|
|
26
|
+
userInfo?: string;
|
|
27
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 URLStreamHandler {
|
|
13
|
+
}
|