@bitmovin/api-sdk 1.273.0 → 1.275.0
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 +1 -1
- package/dist/aiSceneAnalysis/analyses/AnalysesApi.d.ts +10 -0
- package/dist/aiSceneAnalysis/analyses/AnalysesApi.js +21 -0
- package/dist/aiSceneAnalysis/analyses/SceneAnalysisListItemListQueryParams.d.ts +62 -0
- package/dist/aiSceneAnalysis/analyses/SceneAnalysisListItemListQueryParams.js +52 -0
- package/dist/bitmovin-api-sdk.browser.js +357 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AgeRange.d.ts +15 -0
- package/dist/models/AgeRange.js +19 -0
- package/dist/models/Character.d.ts +8 -2
- package/dist/models/Character.js +3 -1
- package/dist/models/CharacterAppearance.d.ts +60 -0
- package/dist/models/CharacterAppearance.js +27 -0
- package/dist/models/Credits.d.ts +20 -0
- package/dist/models/Credits.js +21 -0
- package/dist/models/Department.d.ts +22 -0
- package/dist/models/Department.js +26 -0
- package/dist/models/Person.d.ts +25 -0
- package/dist/models/Person.js +20 -0
- package/dist/models/SceneAnalysisDetailsResponse.d.ts +12 -0
- package/dist/models/SceneAnalysisDetailsResponse.js +3 -0
- package/dist/models/SceneAnalysisListItem.d.ts +56 -0
- package/dist/models/SceneAnalysisListItem.js +25 -0
- package/dist/models/SceneAnalysisListSort.d.ts +9 -0
- package/dist/models/SceneAnalysisListSort.js +13 -0
- package/dist/models/Song.d.ts +18 -0
- package/dist/models/Song.js +19 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/index.js +8 -0
- package/package.json +1 -1
|
@@ -165,7 +165,7 @@ class HeaderHandler extends DelegatingHandler {
|
|
|
165
165
|
const headers = {
|
|
166
166
|
'X-Api-Key': apiKey,
|
|
167
167
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
168
|
-
'X-Api-Client-Version': '1.
|
|
168
|
+
'X-Api-Client-Version': '1.275.0',
|
|
169
169
|
'Content-Type': 'application/json'
|
|
170
170
|
};
|
|
171
171
|
if (tenantOrgId) {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @enum {string}
|
|
4
|
+
*/
|
|
5
|
+
export declare enum AgeRange {
|
|
6
|
+
CHILD = "CHILD",
|
|
7
|
+
TEEN = "TEEN",
|
|
8
|
+
TWENTIES = "TWENTIES",
|
|
9
|
+
THIRTIES = "THIRTIES",
|
|
10
|
+
FORTIES = "FORTIES",
|
|
11
|
+
FIFTIES = "FIFTIES",
|
|
12
|
+
SIXTIES_PLUS = "SIXTIES_PLUS",
|
|
13
|
+
UNKNOWN = "UNKNOWN"
|
|
14
|
+
}
|
|
15
|
+
export default AgeRange;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgeRange = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @export
|
|
6
|
+
* @enum {string}
|
|
7
|
+
*/
|
|
8
|
+
var AgeRange;
|
|
9
|
+
(function (AgeRange) {
|
|
10
|
+
AgeRange["CHILD"] = "CHILD";
|
|
11
|
+
AgeRange["TEEN"] = "TEEN";
|
|
12
|
+
AgeRange["TWENTIES"] = "TWENTIES";
|
|
13
|
+
AgeRange["THIRTIES"] = "THIRTIES";
|
|
14
|
+
AgeRange["FORTIES"] = "FORTIES";
|
|
15
|
+
AgeRange["FIFTIES"] = "FIFTIES";
|
|
16
|
+
AgeRange["SIXTIES_PLUS"] = "SIXTIES_PLUS";
|
|
17
|
+
AgeRange["UNKNOWN"] = "UNKNOWN";
|
|
18
|
+
})(AgeRange || (exports.AgeRange = AgeRange = {}));
|
|
19
|
+
exports.default = AgeRange;
|
|
@@ -1,18 +1,24 @@
|
|
|
1
|
+
import CharacterAppearance from './CharacterAppearance';
|
|
1
2
|
/**
|
|
2
3
|
* @export
|
|
3
4
|
* @class Character
|
|
4
5
|
*/
|
|
5
6
|
export declare class Character {
|
|
6
7
|
/**
|
|
7
|
-
* @type {
|
|
8
|
+
* @type {CharacterAppearance}
|
|
8
9
|
* @memberof Character
|
|
9
10
|
*/
|
|
10
|
-
|
|
11
|
+
characterAppearance?: CharacterAppearance;
|
|
11
12
|
/**
|
|
12
13
|
* @type {string}
|
|
13
14
|
* @memberof Character
|
|
14
15
|
*/
|
|
15
16
|
name?: string;
|
|
17
|
+
/**
|
|
18
|
+
* @type {string}
|
|
19
|
+
* @memberof Character
|
|
20
|
+
*/
|
|
21
|
+
playedBy?: string;
|
|
16
22
|
/**
|
|
17
23
|
* @type {string}
|
|
18
24
|
* @memberof Character
|
package/dist/models/Character.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Character = void 0;
|
|
4
4
|
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
const CharacterAppearance_1 = require("./CharacterAppearance");
|
|
5
6
|
/**
|
|
6
7
|
* @export
|
|
7
8
|
* @class Character
|
|
@@ -11,8 +12,9 @@ class Character {
|
|
|
11
12
|
if (!obj) {
|
|
12
13
|
return;
|
|
13
14
|
}
|
|
14
|
-
this.
|
|
15
|
+
this.characterAppearance = (0, Mapper_1.map)(obj.characterAppearance, CharacterAppearance_1.default);
|
|
15
16
|
this.name = (0, Mapper_1.map)(obj.name);
|
|
17
|
+
this.playedBy = (0, Mapper_1.map)(obj.playedBy);
|
|
16
18
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
17
19
|
}
|
|
18
20
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import AgeRange from './AgeRange';
|
|
2
|
+
/**
|
|
3
|
+
* @export
|
|
4
|
+
* @class CharacterAppearance
|
|
5
|
+
*/
|
|
6
|
+
export declare class CharacterAppearance {
|
|
7
|
+
/**
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof CharacterAppearance
|
|
10
|
+
*/
|
|
11
|
+
summary?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @type {string}
|
|
14
|
+
* @memberof CharacterAppearance
|
|
15
|
+
*/
|
|
16
|
+
gender?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The approximate age range of the character
|
|
19
|
+
* @type {AgeRange}
|
|
20
|
+
* @memberof CharacterAppearance
|
|
21
|
+
*/
|
|
22
|
+
approximateAge?: AgeRange;
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof CharacterAppearance
|
|
26
|
+
*/
|
|
27
|
+
hairColor?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof CharacterAppearance
|
|
31
|
+
*/
|
|
32
|
+
hairStyle?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CharacterAppearance
|
|
36
|
+
*/
|
|
37
|
+
hairFullness?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CharacterAppearance
|
|
41
|
+
*/
|
|
42
|
+
facialHair?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CharacterAppearance
|
|
46
|
+
*/
|
|
47
|
+
physicalBuild?: string;
|
|
48
|
+
/**
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CharacterAppearance
|
|
51
|
+
*/
|
|
52
|
+
distinguishingFeatures?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof CharacterAppearance
|
|
56
|
+
*/
|
|
57
|
+
clothing?: string;
|
|
58
|
+
constructor(obj?: Partial<CharacterAppearance>);
|
|
59
|
+
}
|
|
60
|
+
export default CharacterAppearance;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CharacterAppearance = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class CharacterAppearance
|
|
8
|
+
*/
|
|
9
|
+
class CharacterAppearance {
|
|
10
|
+
constructor(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.summary = (0, Mapper_1.map)(obj.summary);
|
|
15
|
+
this.gender = (0, Mapper_1.map)(obj.gender);
|
|
16
|
+
this.approximateAge = (0, Mapper_1.map)(obj.approximateAge);
|
|
17
|
+
this.hairColor = (0, Mapper_1.map)(obj.hairColor);
|
|
18
|
+
this.hairStyle = (0, Mapper_1.map)(obj.hairStyle);
|
|
19
|
+
this.hairFullness = (0, Mapper_1.map)(obj.hairFullness);
|
|
20
|
+
this.facialHair = (0, Mapper_1.map)(obj.facialHair);
|
|
21
|
+
this.physicalBuild = (0, Mapper_1.map)(obj.physicalBuild);
|
|
22
|
+
this.distinguishingFeatures = (0, Mapper_1.map)(obj.distinguishingFeatures);
|
|
23
|
+
this.clothing = (0, Mapper_1.map)(obj.clothing);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
exports.CharacterAppearance = CharacterAppearance;
|
|
27
|
+
exports.default = CharacterAppearance;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Person from './Person';
|
|
2
|
+
import Song from './Song';
|
|
3
|
+
/**
|
|
4
|
+
* @export
|
|
5
|
+
* @class Credits
|
|
6
|
+
*/
|
|
7
|
+
export declare class Credits {
|
|
8
|
+
/**
|
|
9
|
+
* @type {Person[]}
|
|
10
|
+
* @memberof Credits
|
|
11
|
+
*/
|
|
12
|
+
persons?: Person[];
|
|
13
|
+
/**
|
|
14
|
+
* @type {Song[]}
|
|
15
|
+
* @memberof Credits
|
|
16
|
+
*/
|
|
17
|
+
songs?: Song[];
|
|
18
|
+
constructor(obj?: Partial<Credits>);
|
|
19
|
+
}
|
|
20
|
+
export default Credits;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Credits = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
const Person_1 = require("./Person");
|
|
6
|
+
const Song_1 = require("./Song");
|
|
7
|
+
/**
|
|
8
|
+
* @export
|
|
9
|
+
* @class Credits
|
|
10
|
+
*/
|
|
11
|
+
class Credits {
|
|
12
|
+
constructor(obj) {
|
|
13
|
+
if (!obj) {
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
this.persons = (0, Mapper_1.mapArray)(obj.persons, Person_1.default);
|
|
17
|
+
this.songs = (0, Mapper_1.mapArray)(obj.songs, Song_1.default);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.Credits = Credits;
|
|
21
|
+
exports.default = Credits;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @enum {string}
|
|
4
|
+
*/
|
|
5
|
+
export declare enum Department {
|
|
6
|
+
ACTING = "ACTING",
|
|
7
|
+
ANIMATION = "ANIMATION",
|
|
8
|
+
CASTING = "CASTING",
|
|
9
|
+
CINEMATOGRAPHY = "CINEMATOGRAPHY",
|
|
10
|
+
COSTUME_DESIGN = "COSTUME_DESIGN",
|
|
11
|
+
DIRECTING = "DIRECTING",
|
|
12
|
+
FILM_EDITING = "FILM_EDITING",
|
|
13
|
+
MAKEUP_AND_HAIRSTYLING = "MAKEUP_AND_HAIRSTYLING",
|
|
14
|
+
MUSIC = "MUSIC",
|
|
15
|
+
PRODUCTION = "PRODUCTION",
|
|
16
|
+
PRODUCTION_DESIGN = "PRODUCTION_DESIGN",
|
|
17
|
+
SOUND = "SOUND",
|
|
18
|
+
VISUAL_EFFECTS = "VISUAL_EFFECTS",
|
|
19
|
+
WRITING = "WRITING",
|
|
20
|
+
UNKNOWN = "UNKNOWN"
|
|
21
|
+
}
|
|
22
|
+
export default Department;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Department = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @export
|
|
6
|
+
* @enum {string}
|
|
7
|
+
*/
|
|
8
|
+
var Department;
|
|
9
|
+
(function (Department) {
|
|
10
|
+
Department["ACTING"] = "ACTING";
|
|
11
|
+
Department["ANIMATION"] = "ANIMATION";
|
|
12
|
+
Department["CASTING"] = "CASTING";
|
|
13
|
+
Department["CINEMATOGRAPHY"] = "CINEMATOGRAPHY";
|
|
14
|
+
Department["COSTUME_DESIGN"] = "COSTUME_DESIGN";
|
|
15
|
+
Department["DIRECTING"] = "DIRECTING";
|
|
16
|
+
Department["FILM_EDITING"] = "FILM_EDITING";
|
|
17
|
+
Department["MAKEUP_AND_HAIRSTYLING"] = "MAKEUP_AND_HAIRSTYLING";
|
|
18
|
+
Department["MUSIC"] = "MUSIC";
|
|
19
|
+
Department["PRODUCTION"] = "PRODUCTION";
|
|
20
|
+
Department["PRODUCTION_DESIGN"] = "PRODUCTION_DESIGN";
|
|
21
|
+
Department["SOUND"] = "SOUND";
|
|
22
|
+
Department["VISUAL_EFFECTS"] = "VISUAL_EFFECTS";
|
|
23
|
+
Department["WRITING"] = "WRITING";
|
|
24
|
+
Department["UNKNOWN"] = "UNKNOWN";
|
|
25
|
+
})(Department || (exports.Department = Department = {}));
|
|
26
|
+
exports.default = Department;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import Department from './Department';
|
|
2
|
+
/**
|
|
3
|
+
* @export
|
|
4
|
+
* @class Person
|
|
5
|
+
*/
|
|
6
|
+
export declare class Person {
|
|
7
|
+
/**
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof Person
|
|
10
|
+
*/
|
|
11
|
+
name?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @type {string}
|
|
14
|
+
* @memberof Person
|
|
15
|
+
*/
|
|
16
|
+
role?: string;
|
|
17
|
+
/**
|
|
18
|
+
* The detected department of a person
|
|
19
|
+
* @type {Department}
|
|
20
|
+
* @memberof Person
|
|
21
|
+
*/
|
|
22
|
+
department?: Department;
|
|
23
|
+
constructor(obj?: Partial<Person>);
|
|
24
|
+
}
|
|
25
|
+
export default Person;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Person = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class Person
|
|
8
|
+
*/
|
|
9
|
+
class Person {
|
|
10
|
+
constructor(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.name = (0, Mapper_1.map)(obj.name);
|
|
15
|
+
this.role = (0, Mapper_1.map)(obj.role);
|
|
16
|
+
this.department = (0, Mapper_1.map)(obj.department);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.Person = Person;
|
|
20
|
+
exports.default = Person;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Credits from './Credits';
|
|
1
2
|
import Metadata from './Metadata';
|
|
2
3
|
import Rating from './Rating';
|
|
3
4
|
import Scene from './Scene';
|
|
@@ -21,6 +22,12 @@ export declare class SceneAnalysisDetailsResponse {
|
|
|
21
22
|
* @memberof SceneAnalysisDetailsResponse
|
|
22
23
|
*/
|
|
23
24
|
description?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Inferred title representing the analyzed content as a whole. If omitted or null, the title is not available.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof SceneAnalysisDetailsResponse
|
|
29
|
+
*/
|
|
30
|
+
title?: string;
|
|
24
31
|
/**
|
|
25
32
|
* @type {string[]}
|
|
26
33
|
* @memberof SceneAnalysisDetailsResponse
|
|
@@ -46,6 +53,11 @@ export declare class SceneAnalysisDetailsResponse {
|
|
|
46
53
|
* @memberof SceneAnalysisDetailsResponse
|
|
47
54
|
*/
|
|
48
55
|
inputLanguageCodes?: string[];
|
|
56
|
+
/**
|
|
57
|
+
* @type {Credits}
|
|
58
|
+
* @memberof SceneAnalysisDetailsResponse
|
|
59
|
+
*/
|
|
60
|
+
credits?: Credits;
|
|
49
61
|
/**
|
|
50
62
|
* @type {Metadata}
|
|
51
63
|
* @memberof SceneAnalysisDetailsResponse
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SceneAnalysisDetailsResponse = void 0;
|
|
4
4
|
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
const Credits_1 = require("./Credits");
|
|
5
6
|
const Metadata_1 = require("./Metadata");
|
|
6
7
|
const Rating_1 = require("./Rating");
|
|
7
8
|
const Scene_1 = require("./Scene");
|
|
@@ -17,11 +18,13 @@ class SceneAnalysisDetailsResponse {
|
|
|
17
18
|
this.scenes = (0, Mapper_1.mapArray)(obj.scenes, Scene_1.default);
|
|
18
19
|
this.duration = (0, Mapper_1.map)(obj.duration);
|
|
19
20
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
21
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
20
22
|
this.keywords = (0, Mapper_1.mapArray)(obj.keywords);
|
|
21
23
|
this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
|
|
22
24
|
this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
|
|
23
25
|
this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
|
|
24
26
|
this.inputLanguageCodes = (0, Mapper_1.mapArray)(obj.inputLanguageCodes);
|
|
27
|
+
this.credits = (0, Mapper_1.map)(obj.credits, Credits_1.default);
|
|
25
28
|
this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
|
|
26
29
|
}
|
|
27
30
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class SceneAnalysisListItem
|
|
4
|
+
*/
|
|
5
|
+
export declare class SceneAnalysisListItem {
|
|
6
|
+
/**
|
|
7
|
+
* AI scene analysis ID (required)
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof SceneAnalysisListItem
|
|
10
|
+
*/
|
|
11
|
+
id?: string;
|
|
12
|
+
/**
|
|
13
|
+
* ID of the associated encoding (required)
|
|
14
|
+
* @type {string}
|
|
15
|
+
* @memberof SceneAnalysisListItem
|
|
16
|
+
*/
|
|
17
|
+
encodingId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Creation timestamp, returned as UTC in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ (required)
|
|
20
|
+
* @type {Date}
|
|
21
|
+
* @memberof SceneAnalysisListItem
|
|
22
|
+
*/
|
|
23
|
+
createdAt?: Date;
|
|
24
|
+
/**
|
|
25
|
+
* Analysis description. Empty when analysis metadata is unavailable (required)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SceneAnalysisListItem
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Inferred title representing the analyzed content as a whole. If omitted or null, the title is not available.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SceneAnalysisListItem
|
|
34
|
+
*/
|
|
35
|
+
title?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Analysis keywords in their original order and casing, including duplicates. Omitted or empty when analysis metadata is unavailable; consumers must treat both representations as an empty list
|
|
38
|
+
* @type {string[]}
|
|
39
|
+
* @memberof SceneAnalysisListItem
|
|
40
|
+
*/
|
|
41
|
+
keywords?: string[];
|
|
42
|
+
/**
|
|
43
|
+
* Number of scenes in the analysis. Zero when analysis metadata is unavailable (required)
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SceneAnalysisListItem
|
|
46
|
+
*/
|
|
47
|
+
sceneCount?: number;
|
|
48
|
+
/**
|
|
49
|
+
* Unique language codes for available translated analysis details in backend-defined deterministic order. Order and casing are returned unchanged. Omitted or empty when no translations are available; consumers must treat both representations as an empty list
|
|
50
|
+
* @type {string[]}
|
|
51
|
+
* @memberof SceneAnalysisListItem
|
|
52
|
+
*/
|
|
53
|
+
outputLanguageCodes?: string[];
|
|
54
|
+
constructor(obj?: Partial<SceneAnalysisListItem>);
|
|
55
|
+
}
|
|
56
|
+
export default SceneAnalysisListItem;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SceneAnalysisListItem = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class SceneAnalysisListItem
|
|
8
|
+
*/
|
|
9
|
+
class SceneAnalysisListItem {
|
|
10
|
+
constructor(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
15
|
+
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
16
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt, Date);
|
|
17
|
+
this.description = (0, Mapper_1.map)(obj.description);
|
|
18
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
19
|
+
this.keywords = (0, Mapper_1.mapArray)(obj.keywords);
|
|
20
|
+
this.sceneCount = (0, Mapper_1.map)(obj.sceneCount);
|
|
21
|
+
this.outputLanguageCodes = (0, Mapper_1.mapArray)(obj.outputLanguageCodes);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.SceneAnalysisListItem = SceneAnalysisListItem;
|
|
25
|
+
exports.default = SceneAnalysisListItem;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SceneAnalysisListSort = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @export
|
|
6
|
+
* @enum {string}
|
|
7
|
+
*/
|
|
8
|
+
var SceneAnalysisListSort;
|
|
9
|
+
(function (SceneAnalysisListSort) {
|
|
10
|
+
SceneAnalysisListSort["CREATED_AT_DESC"] = "createdAt:DESC";
|
|
11
|
+
SceneAnalysisListSort["CREATED_AT_ASC"] = "createdAt:ASC";
|
|
12
|
+
})(SceneAnalysisListSort || (exports.SceneAnalysisListSort = SceneAnalysisListSort = {}));
|
|
13
|
+
exports.default = SceneAnalysisListSort;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class Song
|
|
4
|
+
*/
|
|
5
|
+
export declare class Song {
|
|
6
|
+
/**
|
|
7
|
+
* @type {string}
|
|
8
|
+
* @memberof Song
|
|
9
|
+
*/
|
|
10
|
+
name?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @type {string}
|
|
13
|
+
* @memberof Song
|
|
14
|
+
*/
|
|
15
|
+
artist?: string;
|
|
16
|
+
constructor(obj?: Partial<Song>);
|
|
17
|
+
}
|
|
18
|
+
export default Song;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Song = void 0;
|
|
4
|
+
const Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class Song
|
|
8
|
+
*/
|
|
9
|
+
class Song {
|
|
10
|
+
constructor(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.name = (0, Mapper_1.map)(obj.name);
|
|
15
|
+
this.artist = (0, Mapper_1.map)(obj.artist);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.Song = Song;
|
|
19
|
+
exports.default = Song;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './AdaptationSetTypeResponse';
|
|
|
43
43
|
export * from './AdaptiveQuantMode';
|
|
44
44
|
export * from './AesEncryptionDrm';
|
|
45
45
|
export * from './AesEncryptionMethod';
|
|
46
|
+
export * from './AgeRange';
|
|
46
47
|
export * from './AgentChatAttachment';
|
|
47
48
|
export * from './AgentChatAttachmentsData';
|
|
48
49
|
export * from './AgentChatAttachmentsPart';
|
|
@@ -223,6 +224,7 @@ export * from './CencWidevine';
|
|
|
223
224
|
export * from './ChannelLayout';
|
|
224
225
|
export * from './ChannelsAttributeForAudio';
|
|
225
226
|
export * from './Character';
|
|
227
|
+
export * from './CharacterAppearance';
|
|
226
228
|
export * from './CheckOutputPermissionsRequest';
|
|
227
229
|
export * from './CheckOutputPermissionsResponse';
|
|
228
230
|
export * from './ChromaLocation';
|
|
@@ -252,6 +254,7 @@ export * from './ContentProtection';
|
|
|
252
254
|
export * from './ConvertSccCaption';
|
|
253
255
|
export * from './ConvertSccCaptionWebVttSettings';
|
|
254
256
|
export * from './ConvertSccPositionMode';
|
|
257
|
+
export * from './Credits';
|
|
255
258
|
export * from './CropFilter';
|
|
256
259
|
export * from './CustomAttribute';
|
|
257
260
|
export * from './CustomData';
|
|
@@ -301,6 +304,7 @@ export * from './DeinterlaceFilter';
|
|
|
301
304
|
export * from './DeinterlaceFrameSelectionMode';
|
|
302
305
|
export * from './DeinterlaceMode';
|
|
303
306
|
export * from './DenoiseHqdn3dFilter';
|
|
307
|
+
export * from './Department';
|
|
304
308
|
export * from './DirectFileUploadInput';
|
|
305
309
|
export * from './DisplayAspectRatio';
|
|
306
310
|
export * from './DnsMappingRequest';
|
|
@@ -644,6 +648,7 @@ export * from './PerTitleFixedResolutionAndBitrateConfiguration';
|
|
|
644
648
|
export * from './PerTitleFixedResolutionAndBitrateConfigurationMode';
|
|
645
649
|
export * from './Period';
|
|
646
650
|
export * from './Permission';
|
|
651
|
+
export * from './Person';
|
|
647
652
|
export * from './PictureFieldParity';
|
|
648
653
|
export * from './PixelFormat';
|
|
649
654
|
export * from './PixelFormatBitDepth';
|
|
@@ -724,6 +729,8 @@ export * from './Scene';
|
|
|
724
729
|
export * from './SceneAnalysisAdPlacementMetadataResponse';
|
|
725
730
|
export * from './SceneAnalysisDetailsResponse';
|
|
726
731
|
export * from './SceneAnalysisLanguagesResponse';
|
|
732
|
+
export * from './SceneAnalysisListItem';
|
|
733
|
+
export * from './SceneAnalysisListSort';
|
|
727
734
|
export * from './SceneDynamics';
|
|
728
735
|
export * from './SceneObject';
|
|
729
736
|
export * from './ScenePacing';
|
|
@@ -751,6 +758,7 @@ export * from './SmoothManifestDefaultVersion';
|
|
|
751
758
|
export * from './SmoothStreamingManifest';
|
|
752
759
|
export * from './SmoothStreamingRepresentation';
|
|
753
760
|
export * from './SmpteTimecodeFlavor';
|
|
761
|
+
export * from './Song';
|
|
754
762
|
export * from './SourceChannel';
|
|
755
763
|
export * from './SourceChannelType';
|
|
756
764
|
export * from './SpekeDrm';
|
package/dist/models/index.js
CHANGED
|
@@ -59,6 +59,7 @@ __exportStar(require("./AdaptationSetTypeResponse"), exports);
|
|
|
59
59
|
__exportStar(require("./AdaptiveQuantMode"), exports);
|
|
60
60
|
__exportStar(require("./AesEncryptionDrm"), exports);
|
|
61
61
|
__exportStar(require("./AesEncryptionMethod"), exports);
|
|
62
|
+
__exportStar(require("./AgeRange"), exports);
|
|
62
63
|
__exportStar(require("./AgentChatAttachment"), exports);
|
|
63
64
|
__exportStar(require("./AgentChatAttachmentsData"), exports);
|
|
64
65
|
__exportStar(require("./AgentChatAttachmentsPart"), exports);
|
|
@@ -239,6 +240,7 @@ __exportStar(require("./CencWidevine"), exports);
|
|
|
239
240
|
__exportStar(require("./ChannelLayout"), exports);
|
|
240
241
|
__exportStar(require("./ChannelsAttributeForAudio"), exports);
|
|
241
242
|
__exportStar(require("./Character"), exports);
|
|
243
|
+
__exportStar(require("./CharacterAppearance"), exports);
|
|
242
244
|
__exportStar(require("./CheckOutputPermissionsRequest"), exports);
|
|
243
245
|
__exportStar(require("./CheckOutputPermissionsResponse"), exports);
|
|
244
246
|
__exportStar(require("./ChromaLocation"), exports);
|
|
@@ -268,6 +270,7 @@ __exportStar(require("./ContentProtection"), exports);
|
|
|
268
270
|
__exportStar(require("./ConvertSccCaption"), exports);
|
|
269
271
|
__exportStar(require("./ConvertSccCaptionWebVttSettings"), exports);
|
|
270
272
|
__exportStar(require("./ConvertSccPositionMode"), exports);
|
|
273
|
+
__exportStar(require("./Credits"), exports);
|
|
271
274
|
__exportStar(require("./CropFilter"), exports);
|
|
272
275
|
__exportStar(require("./CustomAttribute"), exports);
|
|
273
276
|
__exportStar(require("./CustomData"), exports);
|
|
@@ -317,6 +320,7 @@ __exportStar(require("./DeinterlaceFilter"), exports);
|
|
|
317
320
|
__exportStar(require("./DeinterlaceFrameSelectionMode"), exports);
|
|
318
321
|
__exportStar(require("./DeinterlaceMode"), exports);
|
|
319
322
|
__exportStar(require("./DenoiseHqdn3dFilter"), exports);
|
|
323
|
+
__exportStar(require("./Department"), exports);
|
|
320
324
|
__exportStar(require("./DirectFileUploadInput"), exports);
|
|
321
325
|
__exportStar(require("./DisplayAspectRatio"), exports);
|
|
322
326
|
__exportStar(require("./DnsMappingRequest"), exports);
|
|
@@ -660,6 +664,7 @@ __exportStar(require("./PerTitleFixedResolutionAndBitrateConfiguration"), export
|
|
|
660
664
|
__exportStar(require("./PerTitleFixedResolutionAndBitrateConfigurationMode"), exports);
|
|
661
665
|
__exportStar(require("./Period"), exports);
|
|
662
666
|
__exportStar(require("./Permission"), exports);
|
|
667
|
+
__exportStar(require("./Person"), exports);
|
|
663
668
|
__exportStar(require("./PictureFieldParity"), exports);
|
|
664
669
|
__exportStar(require("./PixelFormat"), exports);
|
|
665
670
|
__exportStar(require("./PixelFormatBitDepth"), exports);
|
|
@@ -740,6 +745,8 @@ __exportStar(require("./Scene"), exports);
|
|
|
740
745
|
__exportStar(require("./SceneAnalysisAdPlacementMetadataResponse"), exports);
|
|
741
746
|
__exportStar(require("./SceneAnalysisDetailsResponse"), exports);
|
|
742
747
|
__exportStar(require("./SceneAnalysisLanguagesResponse"), exports);
|
|
748
|
+
__exportStar(require("./SceneAnalysisListItem"), exports);
|
|
749
|
+
__exportStar(require("./SceneAnalysisListSort"), exports);
|
|
743
750
|
__exportStar(require("./SceneDynamics"), exports);
|
|
744
751
|
__exportStar(require("./SceneObject"), exports);
|
|
745
752
|
__exportStar(require("./ScenePacing"), exports);
|
|
@@ -767,6 +774,7 @@ __exportStar(require("./SmoothManifestDefaultVersion"), exports);
|
|
|
767
774
|
__exportStar(require("./SmoothStreamingManifest"), exports);
|
|
768
775
|
__exportStar(require("./SmoothStreamingRepresentation"), exports);
|
|
769
776
|
__exportStar(require("./SmpteTimecodeFlavor"), exports);
|
|
777
|
+
__exportStar(require("./Song"), exports);
|
|
770
778
|
__exportStar(require("./SourceChannel"), exports);
|
|
771
779
|
__exportStar(require("./SourceChannelType"), exports);
|
|
772
780
|
__exportStar(require("./SpekeDrm"), exports);
|