@bitmovin/api-sdk 1.114.0 → 1.115.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/bitmovin-api-sdk.browser.js +1 -1
- package/dist/bitmovin-api-sdk.browser.js.map +1 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AnalyticsImpressionListItem.d.ts +1 -1
- package/dist/models/AnalyticsImpressionSample.d.ts +1 -1
- package/dist/models/DvbSubtitleInputStream.d.ts +4 -4
- package/dist/models/DvbTeletextInputStream.d.ts +4 -4
- package/dist/models/IngestInputStream.d.ts +4 -4
- package/dist/models/StreamInput.d.ts +5 -5
- package/package.json +1 -1
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.115.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -341,7 +341,7 @@ export declare class AnalyticsImpressionSample {
|
|
|
341
341
|
*/
|
|
342
342
|
experimentName?: string;
|
|
343
343
|
/**
|
|
344
|
-
* Random UUID that is used to identify a
|
|
344
|
+
* Random UUID that is used to identify a session (required)
|
|
345
345
|
* @type {string}
|
|
346
346
|
* @memberof AnalyticsImpressionSample
|
|
347
347
|
*/
|
|
@@ -13,25 +13,25 @@ export declare class DvbSubtitleInputStream extends InputStream {
|
|
|
13
13
|
*/
|
|
14
14
|
readonly type: InputStreamType;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* ID of an Input resource defining the input storage
|
|
17
17
|
* @type {string}
|
|
18
18
|
* @memberof DvbSubtitleInputStream
|
|
19
19
|
*/
|
|
20
20
|
inputId?: string;
|
|
21
21
|
/**
|
|
22
|
-
* Path to media file
|
|
22
|
+
* Path to an input media file
|
|
23
23
|
* @type {string}
|
|
24
24
|
* @memberof DvbSubtitleInputStream
|
|
25
25
|
*/
|
|
26
26
|
inputPath?: string;
|
|
27
27
|
/**
|
|
28
|
-
* Specifies the
|
|
28
|
+
* Specifies the strategy for selecting a stream from the input file. Supported values for VOD encodings: AUTO, POSITION_ABSOLUTE, SUBTITLE_RELATIVE. Supported values for LIVE encodings: POSITION_ABSOLUTE
|
|
29
29
|
* @type {StreamSelectionMode}
|
|
30
30
|
* @memberof DvbSubtitleInputStream
|
|
31
31
|
*/
|
|
32
32
|
selectionMode?: StreamSelectionMode;
|
|
33
33
|
/**
|
|
34
|
-
* Position of the stream
|
|
34
|
+
* Position of the stream to be selected from the input file (zero-based). Must not be set in combination with selectionMode 'AUTO', defaults to 0 for any other selectionMode.
|
|
35
35
|
* @type {number}
|
|
36
36
|
* @memberof DvbSubtitleInputStream
|
|
37
37
|
*/
|
|
@@ -13,25 +13,25 @@ export declare class DvbTeletextInputStream extends InputStream {
|
|
|
13
13
|
*/
|
|
14
14
|
readonly type: InputStreamType;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* ID of an Input resource defining the input storage
|
|
17
17
|
* @type {string}
|
|
18
18
|
* @memberof DvbTeletextInputStream
|
|
19
19
|
*/
|
|
20
20
|
inputId?: string;
|
|
21
21
|
/**
|
|
22
|
-
* Path to media file
|
|
22
|
+
* Path to an input media file
|
|
23
23
|
* @type {string}
|
|
24
24
|
* @memberof DvbTeletextInputStream
|
|
25
25
|
*/
|
|
26
26
|
inputPath?: string;
|
|
27
27
|
/**
|
|
28
|
-
* Specifies the
|
|
28
|
+
* Specifies the strategy for selecting a stream from the input file
|
|
29
29
|
* @type {StreamSelectionMode}
|
|
30
30
|
* @memberof DvbTeletextInputStream
|
|
31
31
|
*/
|
|
32
32
|
selectionMode?: StreamSelectionMode;
|
|
33
33
|
/**
|
|
34
|
-
* Position of the stream
|
|
34
|
+
* Position of the stream to be selected from the input file (zero-based). Must not be set in combination with selectionMode 'AUTO', defaults to 0 for any other selectionMode.
|
|
35
35
|
* @type {number}
|
|
36
36
|
* @memberof DvbTeletextInputStream
|
|
37
37
|
*/
|
|
@@ -13,25 +13,25 @@ export declare class IngestInputStream extends InputStream {
|
|
|
13
13
|
*/
|
|
14
14
|
readonly type: InputStreamType;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* ID of an Input resource defining the input storage (required)
|
|
17
17
|
* @type {string}
|
|
18
18
|
* @memberof IngestInputStream
|
|
19
19
|
*/
|
|
20
20
|
inputId?: string;
|
|
21
21
|
/**
|
|
22
|
-
* Path to media file
|
|
22
|
+
* Path to an input media file (required)
|
|
23
23
|
* @type {string}
|
|
24
24
|
* @memberof IngestInputStream
|
|
25
25
|
*/
|
|
26
26
|
inputPath?: string;
|
|
27
27
|
/**
|
|
28
|
-
* Specifies the
|
|
28
|
+
* Specifies the strategy for selecting a stream from the input file
|
|
29
29
|
* @type {StreamSelectionMode}
|
|
30
30
|
* @memberof IngestInputStream
|
|
31
31
|
*/
|
|
32
32
|
selectionMode?: StreamSelectionMode;
|
|
33
33
|
/**
|
|
34
|
-
* Position of the stream
|
|
34
|
+
* Position of the stream to be selected from the input file (zero-based). Must not be set in combination with selectionMode 'AUTO', defaults to 0 for any other selectionMode.
|
|
35
35
|
* @type {number}
|
|
36
36
|
* @memberof IngestInputStream
|
|
37
37
|
*/
|
|
@@ -6,31 +6,31 @@ import StreamSelectionMode from './StreamSelectionMode';
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class StreamInput {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* ID of an Input resource defining the input storage. Required if 'inputStreamId' is not set.
|
|
10
10
|
* @type {string}
|
|
11
11
|
* @memberof StreamInput
|
|
12
12
|
*/
|
|
13
13
|
inputId?: string;
|
|
14
14
|
/**
|
|
15
|
-
* Path to media file
|
|
15
|
+
* Path to an input media file. Required if 'inputStreamId' is not set.
|
|
16
16
|
* @type {string}
|
|
17
17
|
* @memberof StreamInput
|
|
18
18
|
*/
|
|
19
19
|
inputPath?: string;
|
|
20
20
|
/**
|
|
21
|
-
* Specifies the
|
|
21
|
+
* Specifies the strategy for selecting a stream from the input file. Must not be set when 'inputStreamId' is set.
|
|
22
22
|
* @type {StreamSelectionMode}
|
|
23
23
|
* @memberof StreamInput
|
|
24
24
|
*/
|
|
25
25
|
selectionMode?: StreamSelectionMode;
|
|
26
26
|
/**
|
|
27
|
-
* Position of the stream
|
|
27
|
+
* Position of the stream to be selected from the input file (zero-based). Must not be set in combination with selectionMode 'AUTO', defaults to 0 for any other selectionMode.
|
|
28
28
|
* @type {number}
|
|
29
29
|
* @memberof StreamInput
|
|
30
30
|
*/
|
|
31
31
|
position?: number;
|
|
32
32
|
/**
|
|
33
|
-
* Set this property instead of all others to reference an
|
|
33
|
+
* Set this property instead of all others to reference an InputStream resource (e.g. an Ingest-, Trimming- or ConcatenationInputStream)
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof StreamInput
|
|
36
36
|
*/
|