@bitmovin/api-sdk 1.263.0 → 1.265.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 +3 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/LiveEncodingHeartbeatIngestStream.d.ts +12 -0
- package/dist/models/LiveEncodingHeartbeatIngestStream.js +2 -0
- 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.265.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -76,6 +76,18 @@ export declare class LiveEncodingHeartbeatIngestStream {
|
|
|
76
76
|
* @memberof LiveEncodingHeartbeatIngestStream
|
|
77
77
|
*/
|
|
78
78
|
keyFrameIntervalAvg?: number;
|
|
79
|
+
/**
|
|
80
|
+
* Largest key-frame interval observed over the last minute, in milliseconds. Absent until the rolling window has at least one sample.
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
83
|
+
*/
|
|
84
|
+
keyFrameIntervalMaxLastMinute?: number;
|
|
85
|
+
/**
|
|
86
|
+
* Average key-frame interval over the last minute, in milliseconds. Absent until the rolling window has at least one sample.
|
|
87
|
+
* @type {number}
|
|
88
|
+
* @memberof LiveEncodingHeartbeatIngestStream
|
|
89
|
+
*/
|
|
90
|
+
keyFrameIntervalAvgLastMinute?: number;
|
|
79
91
|
/**
|
|
80
92
|
* Last presentation timestamp (PTS) of the stream.
|
|
81
93
|
* @type {number}
|
|
@@ -24,6 +24,8 @@ var LiveEncodingHeartbeatIngestStream = /** @class */ (function () {
|
|
|
24
24
|
this.incomingBitrate = (0, Mapper_1.map)(obj.incomingBitrate);
|
|
25
25
|
this.keyFrameIntervalMax = (0, Mapper_1.map)(obj.keyFrameIntervalMax);
|
|
26
26
|
this.keyFrameIntervalAvg = (0, Mapper_1.map)(obj.keyFrameIntervalAvg);
|
|
27
|
+
this.keyFrameIntervalMaxLastMinute = (0, Mapper_1.map)(obj.keyFrameIntervalMaxLastMinute);
|
|
28
|
+
this.keyFrameIntervalAvgLastMinute = (0, Mapper_1.map)(obj.keyFrameIntervalAvgLastMinute);
|
|
27
29
|
this.lastTimestamp = (0, Mapper_1.map)(obj.lastTimestamp);
|
|
28
30
|
this.lastTimestampTimescale = (0, Mapper_1.map)(obj.lastTimestampTimescale);
|
|
29
31
|
this.numberOfAudioChannels = (0, Mapper_1.map)(obj.numberOfAudioChannels);
|