@bitmovin/api-sdk 1.256.0 → 1.257.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/BitmovinApi.d.ts +2 -0
- package/dist/BitmovinApi.js +2 -0
- package/dist/agents/AgentsApi.d.ts +13 -0
- package/dist/agents/AgentsApi.js +35 -0
- package/dist/agents/aisa/AisaApi.d.ts +13 -0
- package/dist/agents/aisa/AisaApi.js +35 -0
- package/dist/agents/aisa/sessions/SessionsApi.d.ts +44 -0
- package/dist/agents/aisa/sessions/SessionsApi.js +88 -0
- package/dist/bitmovin-api-sdk.browser.js +814 -169
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AbstractCondition.d.ts +1 -2
- package/dist/models/AbstractCondition.js +3 -3
- package/dist/models/AdAnalyticsAbstractFilter.d.ts +1 -2
- package/dist/models/AdAnalyticsAbstractFilter.js +9 -9
- package/dist/models/AdAnalyticsAttribute.d.ts +30 -0
- package/dist/models/AdAnalyticsAttribute.js +30 -0
- package/dist/models/AdPosition.d.ts +5 -0
- package/dist/models/AdPosition.js +1 -0
- package/dist/models/AdaptationSet.d.ts +1 -2
- package/dist/models/AdaptationSet.js +4 -4
- package/dist/models/AgentChatAttachment.d.ts +28 -0
- package/dist/models/AgentChatAttachment.js +21 -0
- package/dist/models/AgentChatAttachmentsData.d.ts +15 -0
- package/dist/models/AgentChatAttachmentsData.js +20 -0
- package/dist/models/AgentChatAttachmentsPart.d.ts +23 -0
- package/dist/models/AgentChatAttachmentsPart.js +46 -0
- package/dist/models/AgentChatMessage.d.ts +27 -0
- package/dist/models/AgentChatMessage.js +22 -0
- package/dist/models/AgentChatMessagePart.d.ts +15 -0
- package/dist/models/AgentChatMessagePart.js +22 -0
- package/dist/models/AgentChatMessagePartType.d.ts +9 -0
- package/dist/models/AgentChatMessagePartType.js +13 -0
- package/dist/models/AgentChatTextPart.d.ts +22 -0
- package/dist/models/AgentChatTextPart.js +45 -0
- package/dist/models/AgentSessionHistoryResponse.d.ts +39 -0
- package/dist/models/AgentSessionHistoryResponse.js +24 -0
- package/dist/models/AgentSessionListItem.d.ts +26 -0
- package/dist/models/AgentSessionListItem.js +21 -0
- package/dist/models/AgentSessionListResponse.d.ts +27 -0
- package/dist/models/AgentSessionListResponse.js +22 -0
- package/dist/models/AgentSessionResponse.d.ts +26 -0
- package/dist/models/AgentSessionResponse.js +21 -0
- package/dist/models/AnalyticsAbstractFilter.d.ts +1 -2
- package/dist/models/AnalyticsAbstractFilter.js +9 -9
- package/dist/models/AnalyticsAttribute.d.ts +11 -0
- package/dist/models/AnalyticsAttribute.js +11 -0
- package/dist/models/AnalyticsOutput.d.ts +1 -2
- package/dist/models/AnalyticsOutput.js +3 -3
- package/dist/models/CodecConfiguration.d.ts +1 -2
- package/dist/models/CodecConfiguration.js +27 -27
- package/dist/models/DashRepresentation.d.ts +1 -2
- package/dist/models/DashRepresentation.js +12 -12
- package/dist/models/DefaultManifestCondition.d.ts +1 -2
- package/dist/models/DefaultManifestCondition.js +3 -3
- package/dist/models/DolbyAtmosInputFormat.d.ts +2 -1
- package/dist/models/DolbyAtmosInputFormat.js +1 -0
- package/dist/models/Drm.d.ts +1 -2
- package/dist/models/Drm.js +9 -9
- package/dist/models/Filter.d.ts +1 -2
- package/dist/models/Filter.js +16 -16
- package/dist/models/Id3Tag.d.ts +1 -2
- package/dist/models/Id3Tag.js +3 -3
- package/dist/models/Input.d.ts +1 -2
- package/dist/models/Input.js +19 -19
- package/dist/models/InputStream.d.ts +1 -2
- package/dist/models/InputStream.js +13 -13
- package/dist/models/Muxing.d.ts +1 -2
- package/dist/models/Muxing.js +16 -16
- package/dist/models/Output.d.ts +1 -2
- package/dist/models/Output.js +13 -13
- package/dist/models/SidecarFile.d.ts +1 -2
- package/dist/models/SidecarFile.js +1 -1
- package/dist/models/StreamsResponse.d.ts +1 -1
- package/dist/models/StreamsResponse.js +2 -2
- package/dist/models/index.d.ts +11 -0
- package/dist/models/index.js +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentSessionListItem = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class AgentSessionListItem
|
|
8
|
+
*/
|
|
9
|
+
var AgentSessionListItem = /** @class */ (function () {
|
|
10
|
+
function AgentSessionListItem(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.sessionId = (0, Mapper_1.map)(obj.sessionId);
|
|
15
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
16
|
+
this.lastUpdateTimeSeconds = (0, Mapper_1.map)(obj.lastUpdateTimeSeconds);
|
|
17
|
+
}
|
|
18
|
+
return AgentSessionListItem;
|
|
19
|
+
}());
|
|
20
|
+
exports.AgentSessionListItem = AgentSessionListItem;
|
|
21
|
+
exports.default = AgentSessionListItem;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import AgentSessionListItem from './AgentSessionListItem';
|
|
2
|
+
/**
|
|
3
|
+
* @export
|
|
4
|
+
* @class AgentSessionListResponse
|
|
5
|
+
*/
|
|
6
|
+
export declare class AgentSessionListResponse {
|
|
7
|
+
/**
|
|
8
|
+
* Agent application name (required)
|
|
9
|
+
* @type {string}
|
|
10
|
+
* @memberof AgentSessionListResponse
|
|
11
|
+
*/
|
|
12
|
+
appName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* User ID (required)
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof AgentSessionListResponse
|
|
17
|
+
*/
|
|
18
|
+
userId?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Sessions for the user (required)
|
|
21
|
+
* @type {AgentSessionListItem[]}
|
|
22
|
+
* @memberof AgentSessionListResponse
|
|
23
|
+
*/
|
|
24
|
+
sessions?: AgentSessionListItem[];
|
|
25
|
+
constructor(obj?: Partial<AgentSessionListResponse>);
|
|
26
|
+
}
|
|
27
|
+
export default AgentSessionListResponse;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentSessionListResponse = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
var AgentSessionListItem_1 = require("./AgentSessionListItem");
|
|
6
|
+
/**
|
|
7
|
+
* @export
|
|
8
|
+
* @class AgentSessionListResponse
|
|
9
|
+
*/
|
|
10
|
+
var AgentSessionListResponse = /** @class */ (function () {
|
|
11
|
+
function AgentSessionListResponse(obj) {
|
|
12
|
+
if (!obj) {
|
|
13
|
+
return;
|
|
14
|
+
}
|
|
15
|
+
this.appName = (0, Mapper_1.map)(obj.appName);
|
|
16
|
+
this.userId = (0, Mapper_1.map)(obj.userId);
|
|
17
|
+
this.sessions = (0, Mapper_1.mapArray)(obj.sessions, AgentSessionListItem_1.default);
|
|
18
|
+
}
|
|
19
|
+
return AgentSessionListResponse;
|
|
20
|
+
}());
|
|
21
|
+
exports.AgentSessionListResponse = AgentSessionListResponse;
|
|
22
|
+
exports.default = AgentSessionListResponse;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class AgentSessionResponse
|
|
4
|
+
*/
|
|
5
|
+
export declare class AgentSessionResponse {
|
|
6
|
+
/**
|
|
7
|
+
* Session ID (required)
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof AgentSessionResponse
|
|
10
|
+
*/
|
|
11
|
+
sessionId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Agent application name (required)
|
|
14
|
+
* @type {string}
|
|
15
|
+
* @memberof AgentSessionResponse
|
|
16
|
+
*/
|
|
17
|
+
appName?: string;
|
|
18
|
+
/**
|
|
19
|
+
* User ID (required)
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AgentSessionResponse
|
|
22
|
+
*/
|
|
23
|
+
userId?: string;
|
|
24
|
+
constructor(obj?: Partial<AgentSessionResponse>);
|
|
25
|
+
}
|
|
26
|
+
export default AgentSessionResponse;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AgentSessionResponse = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class AgentSessionResponse
|
|
8
|
+
*/
|
|
9
|
+
var AgentSessionResponse = /** @class */ (function () {
|
|
10
|
+
function AgentSessionResponse(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.sessionId = (0, Mapper_1.map)(obj.sessionId);
|
|
15
|
+
this.appName = (0, Mapper_1.map)(obj.appName);
|
|
16
|
+
this.userId = (0, Mapper_1.map)(obj.userId);
|
|
17
|
+
}
|
|
18
|
+
return AgentSessionResponse;
|
|
19
|
+
}());
|
|
20
|
+
exports.AgentSessionResponse = AgentSessionResponse;
|
|
21
|
+
exports.default = AgentSessionResponse;
|
|
@@ -8,7 +8,6 @@ import AnalyticsLessThanFilter from './AnalyticsLessThanFilter';
|
|
|
8
8
|
import AnalyticsLessThanOrEqualFilter from './AnalyticsLessThanOrEqualFilter';
|
|
9
9
|
import AnalyticsNotContainsFilter from './AnalyticsNotContainsFilter';
|
|
10
10
|
import AnalyticsNotEqualFilter from './AnalyticsNotEqualFilter';
|
|
11
|
-
import AnalyticsQueryOperator from './AnalyticsQueryOperator';
|
|
12
11
|
export type AnalyticsAbstractFilterUnion = AnalyticsInFilter | AnalyticsEqualFilter | AnalyticsNotEqualFilter | AnalyticsLessThanFilter | AnalyticsLessThanOrEqualFilter | AnalyticsGreaterThanFilter | AnalyticsGreaterThanOrEqualFilter | AnalyticsContainsFilter | AnalyticsNotContainsFilter;
|
|
13
12
|
/**
|
|
14
13
|
* @export
|
|
@@ -17,7 +16,7 @@ export type AnalyticsAbstractFilterUnion = AnalyticsInFilter | AnalyticsEqualFil
|
|
|
17
16
|
export declare class AnalyticsAbstractFilter {
|
|
18
17
|
protected static readonly _discriminatorName = "operator";
|
|
19
18
|
protected static readonly _discriminatorMapping: {
|
|
20
|
-
[key
|
|
19
|
+
[key: string]: string;
|
|
21
20
|
};
|
|
22
21
|
/**
|
|
23
22
|
* @type {AnalyticsAttribute}
|
|
@@ -15,15 +15,15 @@ var AnalyticsAbstractFilter = /** @class */ (function () {
|
|
|
15
15
|
}
|
|
16
16
|
AnalyticsAbstractFilter._discriminatorName = 'operator';
|
|
17
17
|
AnalyticsAbstractFilter._discriminatorMapping = {
|
|
18
|
-
IN: 'AnalyticsInFilter',
|
|
19
|
-
EQ: 'AnalyticsEqualFilter',
|
|
20
|
-
NE: 'AnalyticsNotEqualFilter',
|
|
21
|
-
LT: 'AnalyticsLessThanFilter',
|
|
22
|
-
LTE: 'AnalyticsLessThanOrEqualFilter',
|
|
23
|
-
GT: 'AnalyticsGreaterThanFilter',
|
|
24
|
-
GTE: 'AnalyticsGreaterThanOrEqualFilter',
|
|
25
|
-
CONTAINS: 'AnalyticsContainsFilter',
|
|
26
|
-
NOTCONTAINS: 'AnalyticsNotContainsFilter'
|
|
18
|
+
"IN": 'AnalyticsInFilter',
|
|
19
|
+
"EQ": 'AnalyticsEqualFilter',
|
|
20
|
+
"NE": 'AnalyticsNotEqualFilter',
|
|
21
|
+
"LT": 'AnalyticsLessThanFilter',
|
|
22
|
+
"LTE": 'AnalyticsLessThanOrEqualFilter',
|
|
23
|
+
"GT": 'AnalyticsGreaterThanFilter',
|
|
24
|
+
"GTE": 'AnalyticsGreaterThanOrEqualFilter',
|
|
25
|
+
"CONTAINS": 'AnalyticsContainsFilter',
|
|
26
|
+
"NOTCONTAINS": 'AnalyticsNotContainsFilter'
|
|
27
27
|
};
|
|
28
28
|
return AnalyticsAbstractFilter;
|
|
29
29
|
}());
|
|
@@ -69,6 +69,16 @@ export declare enum AnalyticsAttribute {
|
|
|
69
69
|
CUSTOM_DATA_48 = "CUSTOM_DATA_48",
|
|
70
70
|
CUSTOM_DATA_49 = "CUSTOM_DATA_49",
|
|
71
71
|
CUSTOM_DATA_50 = "CUSTOM_DATA_50",
|
|
72
|
+
CUSTOM_DATA_51 = "CUSTOM_DATA_51",
|
|
73
|
+
CUSTOM_DATA_52 = "CUSTOM_DATA_52",
|
|
74
|
+
CUSTOM_DATA_53 = "CUSTOM_DATA_53",
|
|
75
|
+
CUSTOM_DATA_54 = "CUSTOM_DATA_54",
|
|
76
|
+
CUSTOM_DATA_55 = "CUSTOM_DATA_55",
|
|
77
|
+
CUSTOM_DATA_56 = "CUSTOM_DATA_56",
|
|
78
|
+
CUSTOM_DATA_57 = "CUSTOM_DATA_57",
|
|
79
|
+
CUSTOM_DATA_58 = "CUSTOM_DATA_58",
|
|
80
|
+
CUSTOM_DATA_59 = "CUSTOM_DATA_59",
|
|
81
|
+
CUSTOM_DATA_60 = "CUSTOM_DATA_60",
|
|
72
82
|
CUSTOM_USER_ID = "CUSTOM_USER_ID",
|
|
73
83
|
DAY = "DAY",
|
|
74
84
|
DEVICE_CLASS = "DEVICE_CLASS",
|
|
@@ -92,6 +102,7 @@ export declare enum AnalyticsAttribute {
|
|
|
92
102
|
IS_LIVE = "IS_LIVE",
|
|
93
103
|
IS_LOW_LATENCY = "IS_LOW_LATENCY",
|
|
94
104
|
IS_MUTED = "IS_MUTED",
|
|
105
|
+
IS_PROGRAM_CHANGE = "IS_PROGRAM_CHANGE",
|
|
95
106
|
ISP = "ISP",
|
|
96
107
|
LANGUAGE = "LANGUAGE",
|
|
97
108
|
LATENCY = "LATENCY",
|
|
@@ -73,6 +73,16 @@ var AnalyticsAttribute;
|
|
|
73
73
|
AnalyticsAttribute["CUSTOM_DATA_48"] = "CUSTOM_DATA_48";
|
|
74
74
|
AnalyticsAttribute["CUSTOM_DATA_49"] = "CUSTOM_DATA_49";
|
|
75
75
|
AnalyticsAttribute["CUSTOM_DATA_50"] = "CUSTOM_DATA_50";
|
|
76
|
+
AnalyticsAttribute["CUSTOM_DATA_51"] = "CUSTOM_DATA_51";
|
|
77
|
+
AnalyticsAttribute["CUSTOM_DATA_52"] = "CUSTOM_DATA_52";
|
|
78
|
+
AnalyticsAttribute["CUSTOM_DATA_53"] = "CUSTOM_DATA_53";
|
|
79
|
+
AnalyticsAttribute["CUSTOM_DATA_54"] = "CUSTOM_DATA_54";
|
|
80
|
+
AnalyticsAttribute["CUSTOM_DATA_55"] = "CUSTOM_DATA_55";
|
|
81
|
+
AnalyticsAttribute["CUSTOM_DATA_56"] = "CUSTOM_DATA_56";
|
|
82
|
+
AnalyticsAttribute["CUSTOM_DATA_57"] = "CUSTOM_DATA_57";
|
|
83
|
+
AnalyticsAttribute["CUSTOM_DATA_58"] = "CUSTOM_DATA_58";
|
|
84
|
+
AnalyticsAttribute["CUSTOM_DATA_59"] = "CUSTOM_DATA_59";
|
|
85
|
+
AnalyticsAttribute["CUSTOM_DATA_60"] = "CUSTOM_DATA_60";
|
|
76
86
|
AnalyticsAttribute["CUSTOM_USER_ID"] = "CUSTOM_USER_ID";
|
|
77
87
|
AnalyticsAttribute["DAY"] = "DAY";
|
|
78
88
|
AnalyticsAttribute["DEVICE_CLASS"] = "DEVICE_CLASS";
|
|
@@ -96,6 +106,7 @@ var AnalyticsAttribute;
|
|
|
96
106
|
AnalyticsAttribute["IS_LIVE"] = "IS_LIVE";
|
|
97
107
|
AnalyticsAttribute["IS_LOW_LATENCY"] = "IS_LOW_LATENCY";
|
|
98
108
|
AnalyticsAttribute["IS_MUTED"] = "IS_MUTED";
|
|
109
|
+
AnalyticsAttribute["IS_PROGRAM_CHANGE"] = "IS_PROGRAM_CHANGE";
|
|
99
110
|
AnalyticsAttribute["ISP"] = "ISP";
|
|
100
111
|
AnalyticsAttribute["LANGUAGE"] = "LANGUAGE";
|
|
101
112
|
AnalyticsAttribute["LATENCY"] = "LATENCY";
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import AclEntry from './AclEntry';
|
|
2
2
|
import AnalyticsAzureOutput from './AnalyticsAzureOutput';
|
|
3
3
|
import AnalyticsGcsServiceAccountOutput from './AnalyticsGcsServiceAccountOutput';
|
|
4
|
-
import AnalyticsOutputType from './AnalyticsOutputType';
|
|
5
4
|
import AnalyticsS3RoleBasedOutput from './AnalyticsS3RoleBasedOutput';
|
|
6
5
|
import BitmovinResource from './BitmovinResource';
|
|
7
6
|
export type AnalyticsOutputUnion = AnalyticsS3RoleBasedOutput | AnalyticsGcsServiceAccountOutput | AnalyticsAzureOutput;
|
|
@@ -12,7 +11,7 @@ export type AnalyticsOutputUnion = AnalyticsS3RoleBasedOutput | AnalyticsGcsServ
|
|
|
12
11
|
export declare class AnalyticsOutput extends BitmovinResource {
|
|
13
12
|
protected static readonly _discriminatorName = "type";
|
|
14
13
|
protected static readonly _discriminatorMapping: {
|
|
15
|
-
[key
|
|
14
|
+
[key: string]: string;
|
|
16
15
|
};
|
|
17
16
|
/**
|
|
18
17
|
* @type {AclEntry[]}
|
|
@@ -35,9 +35,9 @@ var AnalyticsOutput = /** @class */ (function (_super) {
|
|
|
35
35
|
}
|
|
36
36
|
AnalyticsOutput._discriminatorName = 'type';
|
|
37
37
|
AnalyticsOutput._discriminatorMapping = {
|
|
38
|
-
S3_ROLE_BASED: 'AnalyticsS3RoleBasedOutput',
|
|
39
|
-
GCS_SERVICE_ACCOUNT: 'AnalyticsGcsServiceAccountOutput',
|
|
40
|
-
AZURE: 'AnalyticsAzureOutput'
|
|
38
|
+
"S3_ROLE_BASED": 'AnalyticsS3RoleBasedOutput',
|
|
39
|
+
"GCS_SERVICE_ACCOUNT": 'AnalyticsGcsServiceAccountOutput',
|
|
40
|
+
"AZURE": 'AnalyticsAzureOutput'
|
|
41
41
|
};
|
|
42
42
|
return AnalyticsOutput;
|
|
43
43
|
}(BitmovinResource_1.default));
|
|
@@ -2,7 +2,6 @@ import AacAudioConfiguration from './AacAudioConfiguration';
|
|
|
2
2
|
import Ac3AudioConfiguration from './Ac3AudioConfiguration';
|
|
3
3
|
import Av1VideoConfiguration from './Av1VideoConfiguration';
|
|
4
4
|
import BitmovinResource from './BitmovinResource';
|
|
5
|
-
import CodecConfigType from './CodecConfigType';
|
|
6
5
|
import DolbyAtmosAudioConfiguration from './DolbyAtmosAudioConfiguration';
|
|
7
6
|
import DolbyDigitalAudioConfiguration from './DolbyDigitalAudioConfiguration';
|
|
8
7
|
import DolbyDigitalPlusAudioConfiguration from './DolbyDigitalPlusAudioConfiguration';
|
|
@@ -35,7 +34,7 @@ export type CodecConfigurationUnion = AacAudioConfiguration | PassthroughAudioCo
|
|
|
35
34
|
export declare class CodecConfiguration extends BitmovinResource {
|
|
36
35
|
protected static readonly _discriminatorName = "type";
|
|
37
36
|
protected static readonly _discriminatorMapping: {
|
|
38
|
-
[key
|
|
37
|
+
[key: string]: string;
|
|
39
38
|
};
|
|
40
39
|
constructor(obj?: Partial<CodecConfiguration>);
|
|
41
40
|
}
|
|
@@ -32,33 +32,33 @@ var CodecConfiguration = /** @class */ (function (_super) {
|
|
|
32
32
|
}
|
|
33
33
|
CodecConfiguration._discriminatorName = 'type';
|
|
34
34
|
CodecConfiguration._discriminatorMapping = {
|
|
35
|
-
AAC: 'AacAudioConfiguration',
|
|
36
|
-
AUDIO_PASSTHROUGH: 'PassthroughAudioConfiguration',
|
|
37
|
-
DTS_PASSTHROUGH: 'DtsPassthroughAudioConfiguration',
|
|
38
|
-
DTS: 'DtsAudioConfiguration',
|
|
39
|
-
DTSX: 'DtsXAudioConfiguration',
|
|
40
|
-
DVB_SUBTITLE: 'DvbSubtitleConfiguration',
|
|
41
|
-
HE_AAC_V1: 'HeAacV1AudioConfiguration',
|
|
42
|
-
HE_AAC_V2: 'HeAacV2AudioConfiguration',
|
|
43
|
-
H264: 'H264VideoConfiguration',
|
|
44
|
-
H265: 'H265VideoConfiguration',
|
|
45
|
-
VP9: 'Vp9VideoConfiguration',
|
|
46
|
-
VP8: 'Vp8VideoConfiguration',
|
|
47
|
-
MP2: 'Mp2AudioConfiguration',
|
|
48
|
-
MP3: 'Mp3AudioConfiguration',
|
|
49
|
-
AC3: 'Ac3AudioConfiguration',
|
|
50
|
-
DD: 'DolbyDigitalAudioConfiguration',
|
|
51
|
-
EAC3: 'Eac3AudioConfiguration',
|
|
52
|
-
DDPLUS: 'DolbyDigitalPlusAudioConfiguration',
|
|
53
|
-
OPUS: 'OpusAudioConfiguration',
|
|
54
|
-
VORBIS: 'VorbisAudioConfiguration',
|
|
55
|
-
MJPEG: 'MjpegVideoConfiguration',
|
|
56
|
-
AV1: 'Av1VideoConfiguration',
|
|
57
|
-
DOLBY_ATMOS: 'DolbyAtmosAudioConfiguration',
|
|
58
|
-
H262: 'H262VideoConfiguration',
|
|
59
|
-
PCM: 'PcmAudioConfiguration',
|
|
60
|
-
WEBVTT: 'WebVttConfiguration',
|
|
61
|
-
IMSC: 'ImscConfiguration'
|
|
35
|
+
"AAC": 'AacAudioConfiguration',
|
|
36
|
+
"AUDIO_PASSTHROUGH": 'PassthroughAudioConfiguration',
|
|
37
|
+
"DTS_PASSTHROUGH": 'DtsPassthroughAudioConfiguration',
|
|
38
|
+
"DTS": 'DtsAudioConfiguration',
|
|
39
|
+
"DTSX": 'DtsXAudioConfiguration',
|
|
40
|
+
"DVB_SUBTITLE": 'DvbSubtitleConfiguration',
|
|
41
|
+
"HE_AAC_V1": 'HeAacV1AudioConfiguration',
|
|
42
|
+
"HE_AAC_V2": 'HeAacV2AudioConfiguration',
|
|
43
|
+
"H264": 'H264VideoConfiguration',
|
|
44
|
+
"H265": 'H265VideoConfiguration',
|
|
45
|
+
"VP9": 'Vp9VideoConfiguration',
|
|
46
|
+
"VP8": 'Vp8VideoConfiguration',
|
|
47
|
+
"MP2": 'Mp2AudioConfiguration',
|
|
48
|
+
"MP3": 'Mp3AudioConfiguration',
|
|
49
|
+
"AC3": 'Ac3AudioConfiguration',
|
|
50
|
+
"DD": 'DolbyDigitalAudioConfiguration',
|
|
51
|
+
"EAC3": 'Eac3AudioConfiguration',
|
|
52
|
+
"DDPLUS": 'DolbyDigitalPlusAudioConfiguration',
|
|
53
|
+
"OPUS": 'OpusAudioConfiguration',
|
|
54
|
+
"VORBIS": 'VorbisAudioConfiguration',
|
|
55
|
+
"MJPEG": 'MjpegVideoConfiguration',
|
|
56
|
+
"AV1": 'Av1VideoConfiguration',
|
|
57
|
+
"DOLBY_ATMOS": 'DolbyAtmosAudioConfiguration',
|
|
58
|
+
"H262": 'H262VideoConfiguration',
|
|
59
|
+
"PCM": 'PcmAudioConfiguration',
|
|
60
|
+
"WEBVTT": 'WebVttConfiguration',
|
|
61
|
+
"IMSC": 'ImscConfiguration'
|
|
62
62
|
};
|
|
63
63
|
return CodecConfiguration;
|
|
64
64
|
}(BitmovinResource_1.default));
|
|
@@ -8,7 +8,6 @@ import DashImscRepresentation from './DashImscRepresentation';
|
|
|
8
8
|
import DashMp4DrmRepresentation from './DashMp4DrmRepresentation';
|
|
9
9
|
import DashMp4Representation from './DashMp4Representation';
|
|
10
10
|
import DashProgressiveWebmRepresentation from './DashProgressiveWebmRepresentation';
|
|
11
|
-
import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator';
|
|
12
11
|
import DashVttRepresentation from './DashVttRepresentation';
|
|
13
12
|
import DashWebmRepresentation from './DashWebmRepresentation';
|
|
14
13
|
import SpriteRepresentation from './SpriteRepresentation';
|
|
@@ -20,7 +19,7 @@ export type DashRepresentationUnion = DashFmp4DrmRepresentation | DashFmp4Repres
|
|
|
20
19
|
export declare class DashRepresentation extends BitmovinResponse {
|
|
21
20
|
protected static readonly _discriminatorName = "typeDiscriminator";
|
|
22
21
|
protected static readonly _discriminatorMapping: {
|
|
23
|
-
[key
|
|
22
|
+
[key: string]: string;
|
|
24
23
|
};
|
|
25
24
|
constructor(obj?: Partial<DashRepresentation>);
|
|
26
25
|
}
|
|
@@ -32,18 +32,18 @@ var DashRepresentation = /** @class */ (function (_super) {
|
|
|
32
32
|
}
|
|
33
33
|
DashRepresentation._discriminatorName = 'typeDiscriminator';
|
|
34
34
|
DashRepresentation._discriminatorMapping = {
|
|
35
|
-
DRM_FMP4: 'DashFmp4DrmRepresentation',
|
|
36
|
-
FMP4: 'DashFmp4Representation',
|
|
37
|
-
WEBM: 'DashWebmRepresentation',
|
|
38
|
-
CMAF: 'DashCmafRepresentation',
|
|
39
|
-
CHUNKED_TEXT: 'DashChunkedTextRepresentation',
|
|
40
|
-
MP4: 'DashMp4Representation',
|
|
41
|
-
DRM_MP4: 'DashMp4DrmRepresentation',
|
|
42
|
-
PROGRESSIVE_WEBM: 'DashProgressiveWebmRepresentation',
|
|
43
|
-
VTT: 'DashVttRepresentation',
|
|
44
|
-
SPRITE: 'SpriteRepresentation',
|
|
45
|
-
IMSC: 'DashImscRepresentation',
|
|
46
|
-
CONTENT_PROTECTION: 'ContentProtection'
|
|
35
|
+
"DRM_FMP4": 'DashFmp4DrmRepresentation',
|
|
36
|
+
"FMP4": 'DashFmp4Representation',
|
|
37
|
+
"WEBM": 'DashWebmRepresentation',
|
|
38
|
+
"CMAF": 'DashCmafRepresentation',
|
|
39
|
+
"CHUNKED_TEXT": 'DashChunkedTextRepresentation',
|
|
40
|
+
"MP4": 'DashMp4Representation',
|
|
41
|
+
"DRM_MP4": 'DashMp4DrmRepresentation',
|
|
42
|
+
"PROGRESSIVE_WEBM": 'DashProgressiveWebmRepresentation',
|
|
43
|
+
"VTT": 'DashVttRepresentation',
|
|
44
|
+
"SPRITE": 'SpriteRepresentation',
|
|
45
|
+
"IMSC": 'DashImscRepresentation',
|
|
46
|
+
"CONTENT_PROTECTION": 'ContentProtection'
|
|
47
47
|
};
|
|
48
48
|
return DashRepresentation;
|
|
49
49
|
}(BitmovinResponse_1.default));
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import ConditionType from './ConditionType';
|
|
2
1
|
import DefaultManifestAndCondition from './DefaultManifestAndCondition';
|
|
3
2
|
import DefaultManifestAttributeCondition from './DefaultManifestAttributeCondition';
|
|
4
3
|
import DefaultManifestOrCondition from './DefaultManifestOrCondition';
|
|
@@ -10,7 +9,7 @@ export type DefaultManifestConditionUnion = DefaultManifestAttributeCondition |
|
|
|
10
9
|
export declare class DefaultManifestCondition {
|
|
11
10
|
protected static readonly _discriminatorName = "type";
|
|
12
11
|
protected static readonly _discriminatorMapping: {
|
|
13
|
-
[key
|
|
12
|
+
[key: string]: string;
|
|
14
13
|
};
|
|
15
14
|
constructor(obj?: Partial<DefaultManifestCondition>);
|
|
16
15
|
}
|
|
@@ -13,9 +13,9 @@ var DefaultManifestCondition = /** @class */ (function () {
|
|
|
13
13
|
}
|
|
14
14
|
DefaultManifestCondition._discriminatorName = 'type';
|
|
15
15
|
DefaultManifestCondition._discriminatorMapping = {
|
|
16
|
-
CONDITION: 'DefaultManifestAttributeCondition',
|
|
17
|
-
AND: 'DefaultManifestAndCondition',
|
|
18
|
-
OR: 'DefaultManifestOrCondition'
|
|
16
|
+
"CONDITION": 'DefaultManifestAttributeCondition',
|
|
17
|
+
"AND": 'DefaultManifestAndCondition',
|
|
18
|
+
"OR": 'DefaultManifestOrCondition'
|
|
19
19
|
};
|
|
20
20
|
return DefaultManifestCondition;
|
|
21
21
|
}());
|
|
@@ -9,5 +9,6 @@ var DolbyAtmosInputFormat;
|
|
|
9
9
|
(function (DolbyAtmosInputFormat) {
|
|
10
10
|
DolbyAtmosInputFormat["DAMF"] = "DAMF";
|
|
11
11
|
DolbyAtmosInputFormat["ADM"] = "ADM";
|
|
12
|
+
DolbyAtmosInputFormat["MXF"] = "MXF";
|
|
12
13
|
})(DolbyAtmosInputFormat || (exports.DolbyAtmosInputFormat = DolbyAtmosInputFormat = {}));
|
|
13
14
|
exports.default = DolbyAtmosInputFormat;
|
package/dist/models/Drm.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import AesEncryptionDrm from './AesEncryptionDrm';
|
|
|
2
2
|
import BitmovinResource from './BitmovinResource';
|
|
3
3
|
import CencDrm from './CencDrm';
|
|
4
4
|
import ClearKeyDrm from './ClearKeyDrm';
|
|
5
|
-
import DrmType from './DrmType';
|
|
6
5
|
import EncodingOutput from './EncodingOutput';
|
|
7
6
|
import FairPlayDrm from './FairPlayDrm';
|
|
8
7
|
import MarlinDrm from './MarlinDrm';
|
|
@@ -18,7 +17,7 @@ export type DrmUnion = WidevineDrm | PlayReadyDrm | PrimeTimeDrm | FairPlayDrm |
|
|
|
18
17
|
export declare class Drm extends BitmovinResource {
|
|
19
18
|
protected static readonly _discriminatorName = "type";
|
|
20
19
|
protected static readonly _discriminatorMapping: {
|
|
21
|
-
[key
|
|
20
|
+
[key: string]: string;
|
|
22
21
|
};
|
|
23
22
|
/**
|
|
24
23
|
* @type {EncodingOutput[]}
|
package/dist/models/Drm.js
CHANGED
|
@@ -35,15 +35,15 @@ var Drm = /** @class */ (function (_super) {
|
|
|
35
35
|
}
|
|
36
36
|
Drm._discriminatorName = 'type';
|
|
37
37
|
Drm._discriminatorMapping = {
|
|
38
|
-
WIDEVINE: 'WidevineDrm',
|
|
39
|
-
PLAYREADY: 'PlayReadyDrm',
|
|
40
|
-
PRIMETIME: 'PrimeTimeDrm',
|
|
41
|
-
FAIRPLAY: 'FairPlayDrm',
|
|
42
|
-
MARLIN: 'MarlinDrm',
|
|
43
|
-
CLEARKEY: 'ClearKeyDrm',
|
|
44
|
-
AES: 'AesEncryptionDrm',
|
|
45
|
-
CENC: 'CencDrm',
|
|
46
|
-
SPEKE: 'SpekeDrm'
|
|
38
|
+
"WIDEVINE": 'WidevineDrm',
|
|
39
|
+
"PLAYREADY": 'PlayReadyDrm',
|
|
40
|
+
"PRIMETIME": 'PrimeTimeDrm',
|
|
41
|
+
"FAIRPLAY": 'FairPlayDrm',
|
|
42
|
+
"MARLIN": 'MarlinDrm',
|
|
43
|
+
"CLEARKEY": 'ClearKeyDrm',
|
|
44
|
+
"AES": 'AesEncryptionDrm',
|
|
45
|
+
"CENC": 'CencDrm',
|
|
46
|
+
"SPEKE": 'SpekeDrm'
|
|
47
47
|
};
|
|
48
48
|
return Drm;
|
|
49
49
|
}(BitmovinResource_1.default));
|
package/dist/models/Filter.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import DenoiseHqdn3dFilter from './DenoiseHqdn3dFilter';
|
|
|
9
9
|
import EbuR128SinglePassFilter from './EbuR128SinglePassFilter';
|
|
10
10
|
import EnhancedDeinterlaceFilter from './EnhancedDeinterlaceFilter';
|
|
11
11
|
import EnhancedWatermarkFilter from './EnhancedWatermarkFilter';
|
|
12
|
-
import FilterType from './FilterType';
|
|
13
12
|
import InterlaceFilter from './InterlaceFilter';
|
|
14
13
|
import RotateFilter from './RotateFilter';
|
|
15
14
|
import ScaleFilter from './ScaleFilter';
|
|
@@ -24,7 +23,7 @@ export type FilterUnion = CropFilter | ConformFilter | WatermarkFilter | Enhance
|
|
|
24
23
|
export declare class Filter extends BitmovinResource {
|
|
25
24
|
protected static readonly _discriminatorName = "type";
|
|
26
25
|
protected static readonly _discriminatorMapping: {
|
|
27
|
-
[key
|
|
26
|
+
[key: string]: string;
|
|
28
27
|
};
|
|
29
28
|
constructor(obj?: Partial<Filter>);
|
|
30
29
|
}
|
package/dist/models/Filter.js
CHANGED
|
@@ -32,22 +32,22 @@ var Filter = /** @class */ (function (_super) {
|
|
|
32
32
|
}
|
|
33
33
|
Filter._discriminatorName = 'type';
|
|
34
34
|
Filter._discriminatorMapping = {
|
|
35
|
-
CROP: 'CropFilter',
|
|
36
|
-
CONFORM: 'ConformFilter',
|
|
37
|
-
WATERMARK: 'WatermarkFilter',
|
|
38
|
-
ENHANCED_WATERMARK: 'EnhancedWatermarkFilter',
|
|
39
|
-
ROTATE: 'RotateFilter',
|
|
40
|
-
DEINTERLACE: 'DeinterlaceFilter',
|
|
41
|
-
ENHANCED_DEINTERLACE: 'EnhancedDeinterlaceFilter',
|
|
42
|
-
AUDIO_MIX: 'AudioMixFilter',
|
|
43
|
-
DENOISE_HQDN3D: 'DenoiseHqdn3dFilter',
|
|
44
|
-
TEXT: 'TextFilter',
|
|
45
|
-
UNSHARP: 'UnsharpFilter',
|
|
46
|
-
SCALE: 'ScaleFilter',
|
|
47
|
-
INTERLACE: 'InterlaceFilter',
|
|
48
|
-
AUDIO_VOLUME: 'AudioVolumeFilter',
|
|
49
|
-
EBU_R128_SINGLE_PASS: 'EbuR128SinglePassFilter',
|
|
50
|
-
AZURE_SPEECH_TO_CAPTIONS: 'AzureSpeechToCaptionsFilter'
|
|
35
|
+
"CROP": 'CropFilter',
|
|
36
|
+
"CONFORM": 'ConformFilter',
|
|
37
|
+
"WATERMARK": 'WatermarkFilter',
|
|
38
|
+
"ENHANCED_WATERMARK": 'EnhancedWatermarkFilter',
|
|
39
|
+
"ROTATE": 'RotateFilter',
|
|
40
|
+
"DEINTERLACE": 'DeinterlaceFilter',
|
|
41
|
+
"ENHANCED_DEINTERLACE": 'EnhancedDeinterlaceFilter',
|
|
42
|
+
"AUDIO_MIX": 'AudioMixFilter',
|
|
43
|
+
"DENOISE_HQDN3D": 'DenoiseHqdn3dFilter',
|
|
44
|
+
"TEXT": 'TextFilter',
|
|
45
|
+
"UNSHARP": 'UnsharpFilter',
|
|
46
|
+
"SCALE": 'ScaleFilter',
|
|
47
|
+
"INTERLACE": 'InterlaceFilter',
|
|
48
|
+
"AUDIO_VOLUME": 'AudioVolumeFilter',
|
|
49
|
+
"EBU_R128_SINGLE_PASS": 'EbuR128SinglePassFilter',
|
|
50
|
+
"AZURE_SPEECH_TO_CAPTIONS": 'AzureSpeechToCaptionsFilter'
|
|
51
51
|
};
|
|
52
52
|
return Filter;
|
|
53
53
|
}(BitmovinResource_1.default));
|
package/dist/models/Id3Tag.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import BitmovinResource from './BitmovinResource';
|
|
2
2
|
import FrameIdId3Tag from './FrameIdId3Tag';
|
|
3
3
|
import Id3TagPositionMode from './Id3TagPositionMode';
|
|
4
|
-
import Id3TagType from './Id3TagType';
|
|
5
4
|
import PlaintextId3Tag from './PlaintextId3Tag';
|
|
6
5
|
import RawId3Tag from './RawId3Tag';
|
|
7
6
|
export type Id3TagUnion = RawId3Tag | FrameIdId3Tag | PlaintextId3Tag;
|
|
@@ -12,7 +11,7 @@ export type Id3TagUnion = RawId3Tag | FrameIdId3Tag | PlaintextId3Tag;
|
|
|
12
11
|
export declare class Id3Tag extends BitmovinResource {
|
|
13
12
|
protected static readonly _discriminatorName = "type";
|
|
14
13
|
protected static readonly _discriminatorMapping: {
|
|
15
|
-
[key
|
|
14
|
+
[key: string]: string;
|
|
16
15
|
};
|
|
17
16
|
/**
|
|
18
17
|
* @type {Id3TagPositionMode}
|
package/dist/models/Id3Tag.js
CHANGED
|
@@ -36,9 +36,9 @@ var Id3Tag = /** @class */ (function (_super) {
|
|
|
36
36
|
}
|
|
37
37
|
Id3Tag._discriminatorName = 'type';
|
|
38
38
|
Id3Tag._discriminatorMapping = {
|
|
39
|
-
RAW: 'RawId3Tag',
|
|
40
|
-
FRAME_ID: 'FrameIdId3Tag',
|
|
41
|
-
PLAIN_TEXT: 'PlaintextId3Tag'
|
|
39
|
+
"RAW": 'RawId3Tag',
|
|
40
|
+
"FRAME_ID": 'FrameIdId3Tag',
|
|
41
|
+
"PLAIN_TEXT": 'PlaintextId3Tag'
|
|
42
42
|
};
|
|
43
43
|
return Id3Tag;
|
|
44
44
|
}(BitmovinResource_1.default));
|
package/dist/models/Input.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import GenericS3Input from './GenericS3Input';
|
|
|
10
10
|
import HlsInput from './HlsInput';
|
|
11
11
|
import HttpInput from './HttpInput';
|
|
12
12
|
import HttpsInput from './HttpsInput';
|
|
13
|
-
import InputType from './InputType';
|
|
14
13
|
import LocalInput from './LocalInput';
|
|
15
14
|
import RedundantRtmpInput from './RedundantRtmpInput';
|
|
16
15
|
import RtmpInput from './RtmpInput';
|
|
@@ -27,7 +26,7 @@ export type InputUnion = AkamaiNetStorageInput | AsperaInput | AzureInput | Redu
|
|
|
27
26
|
export declare class Input extends BitmovinResource {
|
|
28
27
|
protected static readonly _discriminatorName = "type";
|
|
29
28
|
protected static readonly _discriminatorMapping: {
|
|
30
|
-
[key
|
|
29
|
+
[key: string]: string;
|
|
31
30
|
};
|
|
32
31
|
constructor(obj?: Partial<Input>);
|
|
33
32
|
}
|
package/dist/models/Input.js
CHANGED
|
@@ -32,25 +32,25 @@ var Input = /** @class */ (function (_super) {
|
|
|
32
32
|
}
|
|
33
33
|
Input._discriminatorName = 'type';
|
|
34
34
|
Input._discriminatorMapping = {
|
|
35
|
-
AKAMAI_NETSTORAGE: 'AkamaiNetStorageInput',
|
|
36
|
-
ASPERA: 'AsperaInput',
|
|
37
|
-
AZURE: 'AzureInput',
|
|
38
|
-
REDUNDANT_RTMP: 'RedundantRtmpInput',
|
|
39
|
-
FTP: 'FtpInput',
|
|
40
|
-
GENERIC_S3: 'GenericS3Input',
|
|
41
|
-
GCS: 'GcsInput',
|
|
42
|
-
HTTP: 'HttpInput',
|
|
43
|
-
HTTPS: 'HttpsInput',
|
|
44
|
-
HLS: 'HlsInput',
|
|
45
|
-
LOCAL: 'LocalInput',
|
|
46
|
-
RTMP: 'RtmpInput',
|
|
47
|
-
S3: 'S3Input',
|
|
48
|
-
S3_ROLE_BASED: 'S3RoleBasedInput',
|
|
49
|
-
SFTP: 'SftpInput',
|
|
50
|
-
ZIXI: 'ZixiInput',
|
|
51
|
-
SRT: 'SrtInput',
|
|
52
|
-
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput',
|
|
53
|
-
DIRECT_FILE_UPLOAD: 'DirectFileUploadInput'
|
|
35
|
+
"AKAMAI_NETSTORAGE": 'AkamaiNetStorageInput',
|
|
36
|
+
"ASPERA": 'AsperaInput',
|
|
37
|
+
"AZURE": 'AzureInput',
|
|
38
|
+
"REDUNDANT_RTMP": 'RedundantRtmpInput',
|
|
39
|
+
"FTP": 'FtpInput',
|
|
40
|
+
"GENERIC_S3": 'GenericS3Input',
|
|
41
|
+
"GCS": 'GcsInput',
|
|
42
|
+
"HTTP": 'HttpInput',
|
|
43
|
+
"HTTPS": 'HttpsInput',
|
|
44
|
+
"HLS": 'HlsInput',
|
|
45
|
+
"LOCAL": 'LocalInput',
|
|
46
|
+
"RTMP": 'RtmpInput',
|
|
47
|
+
"S3": 'S3Input',
|
|
48
|
+
"S3_ROLE_BASED": 'S3RoleBasedInput',
|
|
49
|
+
"SFTP": 'SftpInput',
|
|
50
|
+
"ZIXI": 'ZixiInput',
|
|
51
|
+
"SRT": 'SrtInput',
|
|
52
|
+
"GCS_SERVICE_ACCOUNT": 'GcsServiceAccountInput',
|
|
53
|
+
"DIRECT_FILE_UPLOAD": 'DirectFileUploadInput'
|
|
54
54
|
};
|
|
55
55
|
return Input;
|
|
56
56
|
}(BitmovinResource_1.default));
|