@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
|
@@ -10,7 +10,6 @@ import DvbSubtitleInputStream from './DvbSubtitleInputStream';
|
|
|
10
10
|
import FileInputStream from './FileInputStream';
|
|
11
11
|
import H264PictureTimingTrimmingInputStream from './H264PictureTimingTrimmingInputStream';
|
|
12
12
|
import IngestInputStream from './IngestInputStream';
|
|
13
|
-
import InputStreamType from './InputStreamType';
|
|
14
13
|
import TimeBasedTrimmingInputStream from './TimeBasedTrimmingInputStream';
|
|
15
14
|
import TimecodeTrackTrimmingInputStream from './TimecodeTrackTrimmingInputStream';
|
|
16
15
|
export type InputStreamUnion = IngestInputStream | ConcatenationInputStream | TimeBasedTrimmingInputStream | TimecodeTrackTrimmingInputStream | H264PictureTimingTrimmingInputStream | AudioMixInputStream | DolbyVisionMetadataIngestInputStream | Cea608CaptionInputStream | Cea708CaptionInputStream | FileInputStream | DvbSubtitleInputStream | DolbyAtmosIngestInputStream | DolbyVisionInputStream;
|
|
@@ -21,7 +20,7 @@ export type InputStreamUnion = IngestInputStream | ConcatenationInputStream | Ti
|
|
|
21
20
|
export declare class InputStream extends BitmovinResource {
|
|
22
21
|
protected static readonly _discriminatorName = "type";
|
|
23
22
|
protected static readonly _discriminatorMapping: {
|
|
24
|
-
[key
|
|
23
|
+
[key: string]: string;
|
|
25
24
|
};
|
|
26
25
|
constructor(obj?: Partial<InputStream>);
|
|
27
26
|
}
|
|
@@ -32,19 +32,19 @@ var InputStream = /** @class */ (function (_super) {
|
|
|
32
32
|
}
|
|
33
33
|
InputStream._discriminatorName = 'type';
|
|
34
34
|
InputStream._discriminatorMapping = {
|
|
35
|
-
INGEST: 'IngestInputStream',
|
|
36
|
-
CONCATENATION: 'ConcatenationInputStream',
|
|
37
|
-
TRIMMING_TIME_BASED: 'TimeBasedTrimmingInputStream',
|
|
38
|
-
TRIMMING_TIME_CODE_TRACK: 'TimecodeTrackTrimmingInputStream',
|
|
39
|
-
TRIMMING_H264_PICTURE_TIMING: 'H264PictureTimingTrimmingInputStream',
|
|
40
|
-
AUDIO_MIX: 'AudioMixInputStream',
|
|
41
|
-
SIDECAR_DOLBY_VISION_METADATA: 'DolbyVisionMetadataIngestInputStream',
|
|
42
|
-
CAPTION_CEA608: 'Cea608CaptionInputStream',
|
|
43
|
-
CAPTION_CEA708: 'Cea708CaptionInputStream',
|
|
44
|
-
FILE: 'FileInputStream',
|
|
45
|
-
DVB_SUBTITLE: 'DvbSubtitleInputStream',
|
|
46
|
-
DOLBY_ATMOS: 'DolbyAtmosIngestInputStream',
|
|
47
|
-
DOLBY_VISION: 'DolbyVisionInputStream'
|
|
35
|
+
"INGEST": 'IngestInputStream',
|
|
36
|
+
"CONCATENATION": 'ConcatenationInputStream',
|
|
37
|
+
"TRIMMING_TIME_BASED": 'TimeBasedTrimmingInputStream',
|
|
38
|
+
"TRIMMING_TIME_CODE_TRACK": 'TimecodeTrackTrimmingInputStream',
|
|
39
|
+
"TRIMMING_H264_PICTURE_TIMING": 'H264PictureTimingTrimmingInputStream',
|
|
40
|
+
"AUDIO_MIX": 'AudioMixInputStream',
|
|
41
|
+
"SIDECAR_DOLBY_VISION_METADATA": 'DolbyVisionMetadataIngestInputStream',
|
|
42
|
+
"CAPTION_CEA608": 'Cea608CaptionInputStream',
|
|
43
|
+
"CAPTION_CEA708": 'Cea708CaptionInputStream',
|
|
44
|
+
"FILE": 'FileInputStream',
|
|
45
|
+
"DVB_SUBTITLE": 'DvbSubtitleInputStream',
|
|
46
|
+
"DOLBY_ATMOS": 'DolbyAtmosIngestInputStream',
|
|
47
|
+
"DOLBY_VISION": 'DolbyVisionInputStream'
|
|
48
48
|
};
|
|
49
49
|
return InputStream;
|
|
50
50
|
}(BitmovinResource_1.default));
|
package/dist/models/Muxing.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ import Ignoring from './Ignoring';
|
|
|
8
8
|
import Mp3Muxing from './Mp3Muxing';
|
|
9
9
|
import Mp4Muxing from './Mp4Muxing';
|
|
10
10
|
import MuxingStream from './MuxingStream';
|
|
11
|
-
import MuxingType from './MuxingType';
|
|
12
11
|
import MxfMuxing from './MxfMuxing';
|
|
13
12
|
import PackedAudioMuxing from './PackedAudioMuxing';
|
|
14
13
|
import ProgressiveMovMuxing from './ProgressiveMovMuxing';
|
|
@@ -28,7 +27,7 @@ export type MuxingUnion = Fmp4Muxing | CmafMuxing | Mp4Muxing | TsMuxing | WebmM
|
|
|
28
27
|
export declare class Muxing extends BitmovinResource {
|
|
29
28
|
protected static readonly _discriminatorName = "type";
|
|
30
29
|
protected static readonly _discriminatorMapping: {
|
|
31
|
-
[key
|
|
30
|
+
[key: string]: string;
|
|
32
31
|
};
|
|
33
32
|
/**
|
|
34
33
|
* @type {MuxingStream[]}
|
package/dist/models/Muxing.js
CHANGED
|
@@ -43,22 +43,22 @@ var Muxing = /** @class */ (function (_super) {
|
|
|
43
43
|
}
|
|
44
44
|
Muxing._discriminatorName = 'type';
|
|
45
45
|
Muxing._discriminatorMapping = {
|
|
46
|
-
FMP4: 'Fmp4Muxing',
|
|
47
|
-
CMAF: 'CmafMuxing',
|
|
48
|
-
MP4: 'Mp4Muxing',
|
|
49
|
-
TS: 'TsMuxing',
|
|
50
|
-
WEBM: 'WebmMuxing',
|
|
51
|
-
MP3: 'Mp3Muxing',
|
|
52
|
-
MXF: 'MxfMuxing',
|
|
53
|
-
PROGRESSIVE_WAV: 'ProgressiveWavMuxing',
|
|
54
|
-
PROGRESSIVE_WEBM: 'ProgressiveWebmMuxing',
|
|
55
|
-
PROGRESSIVE_MOV: 'ProgressiveMovMuxing',
|
|
56
|
-
PROGRESSIVE_TS: 'ProgressiveTsMuxing',
|
|
57
|
-
BROADCAST_TS: 'BroadcastTsMuxing',
|
|
58
|
-
CHUNKED_TEXT: 'ChunkedTextMuxing',
|
|
59
|
-
TEXT: 'TextMuxing',
|
|
60
|
-
SEGMENTED_RAW: 'SegmentedRawMuxing',
|
|
61
|
-
PACKED_AUDIO: 'PackedAudioMuxing'
|
|
46
|
+
"FMP4": 'Fmp4Muxing',
|
|
47
|
+
"CMAF": 'CmafMuxing',
|
|
48
|
+
"MP4": 'Mp4Muxing',
|
|
49
|
+
"TS": 'TsMuxing',
|
|
50
|
+
"WEBM": 'WebmMuxing',
|
|
51
|
+
"MP3": 'Mp3Muxing',
|
|
52
|
+
"MXF": 'MxfMuxing',
|
|
53
|
+
"PROGRESSIVE_WAV": 'ProgressiveWavMuxing',
|
|
54
|
+
"PROGRESSIVE_WEBM": 'ProgressiveWebmMuxing',
|
|
55
|
+
"PROGRESSIVE_MOV": 'ProgressiveMovMuxing',
|
|
56
|
+
"PROGRESSIVE_TS": 'ProgressiveTsMuxing',
|
|
57
|
+
"BROADCAST_TS": 'BroadcastTsMuxing',
|
|
58
|
+
"CHUNKED_TEXT": 'ChunkedTextMuxing',
|
|
59
|
+
"TEXT": 'TextMuxing',
|
|
60
|
+
"SEGMENTED_RAW": 'SegmentedRawMuxing',
|
|
61
|
+
"PACKED_AUDIO": 'PackedAudioMuxing'
|
|
62
62
|
};
|
|
63
63
|
return Muxing;
|
|
64
64
|
}(BitmovinResource_1.default));
|
package/dist/models/Output.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import GcsServiceAccountOutput from './GcsServiceAccountOutput';
|
|
|
10
10
|
import GenericS3Output from './GenericS3Output';
|
|
11
11
|
import LiveMediaIngestOutput from './LiveMediaIngestOutput';
|
|
12
12
|
import LocalOutput from './LocalOutput';
|
|
13
|
-
import OutputType from './OutputType';
|
|
14
13
|
import S3Output from './S3Output';
|
|
15
14
|
import S3RoleBasedOutput from './S3RoleBasedOutput';
|
|
16
15
|
import SftpOutput from './SftpOutput';
|
|
@@ -22,7 +21,7 @@ export type OutputUnion = AkamaiNetStorageOutput | AzureOutput | CdnOutput | Gen
|
|
|
22
21
|
export declare class Output extends BitmovinResource {
|
|
23
22
|
protected static readonly _discriminatorName = "type";
|
|
24
23
|
protected static readonly _discriminatorMapping: {
|
|
25
|
-
[key
|
|
24
|
+
[key: string]: string;
|
|
26
25
|
};
|
|
27
26
|
/**
|
|
28
27
|
* Deprecation notice: This property does not have any effect and will not be returned by GET endpoints
|
package/dist/models/Output.js
CHANGED
|
@@ -35,19 +35,19 @@ var Output = /** @class */ (function (_super) {
|
|
|
35
35
|
}
|
|
36
36
|
Output._discriminatorName = 'type';
|
|
37
37
|
Output._discriminatorMapping = {
|
|
38
|
-
AKAMAI_NETSTORAGE: 'AkamaiNetStorageOutput',
|
|
39
|
-
AZURE: 'AzureOutput',
|
|
40
|
-
CDN: 'CdnOutput',
|
|
41
|
-
GENERIC_S3: 'GenericS3Output',
|
|
42
|
-
GCS: 'GcsOutput',
|
|
43
|
-
FTP: 'FtpOutput',
|
|
44
|
-
LOCAL: 'LocalOutput',
|
|
45
|
-
S3: 'S3Output',
|
|
46
|
-
S3_ROLE_BASED: 'S3RoleBasedOutput',
|
|
47
|
-
SFTP: 'SftpOutput',
|
|
48
|
-
AKAMAI_MSL: 'AkamaiMslOutput',
|
|
49
|
-
LIVE_MEDIA_INGEST: 'LiveMediaIngestOutput',
|
|
50
|
-
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountOutput'
|
|
38
|
+
"AKAMAI_NETSTORAGE": 'AkamaiNetStorageOutput',
|
|
39
|
+
"AZURE": 'AzureOutput',
|
|
40
|
+
"CDN": 'CdnOutput',
|
|
41
|
+
"GENERIC_S3": 'GenericS3Output',
|
|
42
|
+
"GCS": 'GcsOutput',
|
|
43
|
+
"FTP": 'FtpOutput',
|
|
44
|
+
"LOCAL": 'LocalOutput',
|
|
45
|
+
"S3": 'S3Output',
|
|
46
|
+
"S3_ROLE_BASED": 'S3RoleBasedOutput',
|
|
47
|
+
"SFTP": 'SftpOutput',
|
|
48
|
+
"AKAMAI_MSL": 'AkamaiMslOutput',
|
|
49
|
+
"LIVE_MEDIA_INGEST": 'LiveMediaIngestOutput',
|
|
50
|
+
"GCS_SERVICE_ACCOUNT": 'GcsServiceAccountOutput'
|
|
51
51
|
};
|
|
52
52
|
return Output;
|
|
53
53
|
}(BitmovinResource_1.default));
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import BitmovinResource from './BitmovinResource';
|
|
2
2
|
import EncodingOutput from './EncodingOutput';
|
|
3
3
|
import SidecarErrorMode from './SidecarErrorMode';
|
|
4
|
-
import SidecarFileType from './SidecarFileType';
|
|
5
4
|
import WebVttSidecarFile from './WebVttSidecarFile';
|
|
6
5
|
export type SidecarFileUnion = WebVttSidecarFile;
|
|
7
6
|
/**
|
|
@@ -12,7 +11,7 @@ export type SidecarFileUnion = WebVttSidecarFile;
|
|
|
12
11
|
export declare class SidecarFile 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
|
* Id of input (required)
|
|
@@ -39,7 +39,7 @@ var SidecarFile = /** @class */ (function (_super) {
|
|
|
39
39
|
}
|
|
40
40
|
SidecarFile._discriminatorName = 'type';
|
|
41
41
|
SidecarFile._discriminatorMapping = {
|
|
42
|
-
WEB_VTT: 'WebVttSidecarFile'
|
|
42
|
+
"WEB_VTT": 'WebVttSidecarFile'
|
|
43
43
|
};
|
|
44
44
|
return SidecarFile;
|
|
45
45
|
}(BitmovinResource_1.default));
|
|
@@ -9,7 +9,7 @@ export type StreamsResponseUnion = StreamsVideoResponse | StreamsLiveResponse;
|
|
|
9
9
|
export declare class StreamsResponse {
|
|
10
10
|
protected static readonly _discriminatorName = "type";
|
|
11
11
|
protected static readonly _discriminatorMapping: {
|
|
12
|
-
[key
|
|
12
|
+
[key: string]: string;
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
15
|
* The identifier of the stream
|
|
@@ -19,8 +19,8 @@ var StreamsResponse = /** @class */ (function () {
|
|
|
19
19
|
}
|
|
20
20
|
StreamsResponse._discriminatorName = 'type';
|
|
21
21
|
StreamsResponse._discriminatorMapping = {
|
|
22
|
-
VIDEO: 'StreamsVideoResponse',
|
|
23
|
-
LIVE: 'StreamsLiveResponse'
|
|
22
|
+
"VIDEO": 'StreamsVideoResponse',
|
|
23
|
+
"LIVE": 'StreamsLiveResponse'
|
|
24
24
|
};
|
|
25
25
|
return StreamsResponse;
|
|
26
26
|
}());
|
package/dist/models/index.d.ts
CHANGED
|
@@ -43,6 +43,17 @@ export * from './AdaptationSetTypeResponse';
|
|
|
43
43
|
export * from './AdaptiveQuantMode';
|
|
44
44
|
export * from './AesEncryptionDrm';
|
|
45
45
|
export * from './AesEncryptionMethod';
|
|
46
|
+
export * from './AgentChatAttachment';
|
|
47
|
+
export * from './AgentChatAttachmentsData';
|
|
48
|
+
export * from './AgentChatAttachmentsPart';
|
|
49
|
+
export * from './AgentChatMessage';
|
|
50
|
+
export * from './AgentChatMessagePart';
|
|
51
|
+
export * from './AgentChatMessagePartType';
|
|
52
|
+
export * from './AgentChatTextPart';
|
|
53
|
+
export * from './AgentSessionHistoryResponse';
|
|
54
|
+
export * from './AgentSessionListItem';
|
|
55
|
+
export * from './AgentSessionListResponse';
|
|
56
|
+
export * from './AgentSessionResponse';
|
|
46
57
|
export * from './AiSceneAnalysis';
|
|
47
58
|
export * from './AiSceneAnalysisAssetDescription';
|
|
48
59
|
export * from './AiSceneAnalysisAutomaticAdPlacement';
|
package/dist/models/index.js
CHANGED
|
@@ -59,6 +59,17 @@ __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("./AgentChatAttachment"), exports);
|
|
63
|
+
__exportStar(require("./AgentChatAttachmentsData"), exports);
|
|
64
|
+
__exportStar(require("./AgentChatAttachmentsPart"), exports);
|
|
65
|
+
__exportStar(require("./AgentChatMessage"), exports);
|
|
66
|
+
__exportStar(require("./AgentChatMessagePart"), exports);
|
|
67
|
+
__exportStar(require("./AgentChatMessagePartType"), exports);
|
|
68
|
+
__exportStar(require("./AgentChatTextPart"), exports);
|
|
69
|
+
__exportStar(require("./AgentSessionHistoryResponse"), exports);
|
|
70
|
+
__exportStar(require("./AgentSessionListItem"), exports);
|
|
71
|
+
__exportStar(require("./AgentSessionListResponse"), exports);
|
|
72
|
+
__exportStar(require("./AgentSessionResponse"), exports);
|
|
62
73
|
__exportStar(require("./AiSceneAnalysis"), exports);
|
|
63
74
|
__exportStar(require("./AiSceneAnalysisAssetDescription"), exports);
|
|
64
75
|
__exportStar(require("./AiSceneAnalysisAutomaticAdPlacement"), exports);
|