@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.
@@ -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.114.0',
243
+ 'X-Api-Client-Version': '1.115.0',
244
244
  'Content-Type': 'application/json'
245
245
  };
246
246
  if (tenantOrgId) {
@@ -4,7 +4,7 @@
4
4
  */
5
5
  export declare class AnalyticsImpressionListItem {
6
6
  /**
7
- * Impression ID (required)
7
+ * Random UUID that is used to identify a session (required)
8
8
  * @type {string}
9
9
  * @memberof AnalyticsImpressionListItem
10
10
  */
@@ -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 sessions (required)
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
- * Id of input
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 algorithm 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
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, starting from 0.
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
- * Id of input
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 algorithm how the stream in the input file will be selected
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, starting from 0.
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
- * Id of input
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 algorithm how the stream in the input file will be selected
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, starting from 0.
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
- * Id of input
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 algorithm how the stream in the input file will be selected
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, starting from 0.
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 ingest, trimming or concatenation input stream
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.114.0",
3
+ "version": "1.115.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [