@bitmovin/api-sdk 1.143.0 → 1.145.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/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +2 -5
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/LiveEncodingStatsEventDetails.d.ts +1 -19
- package/dist/models/LiveEncodingStatsEventDetails.js +1 -4
- 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.145.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -8,25 +8,7 @@ export declare class LiveEncodingStatsEventDetails {
|
|
|
8
8
|
* @type {LiveEncodingEventName}
|
|
9
9
|
* @memberof LiveEncodingStatsEventDetails
|
|
10
10
|
*/
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* The Audio/Video Drift in seconds. The drift was corrected by the RESYNCING event (occurs at event: RESYNCING)
|
|
14
|
-
* @type {number}
|
|
15
|
-
* @memberof LiveEncodingStatsEventDetails
|
|
16
|
-
*/
|
|
17
|
-
avDriftInSeconds?: number;
|
|
18
|
-
/**
|
|
19
|
-
* The time the stream was in idle state in seconds (occurs at event: IDLE)
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof LiveEncodingStatsEventDetails
|
|
22
|
-
*/
|
|
23
|
-
idleDurationInSeconds?: number;
|
|
24
|
-
/**
|
|
25
|
-
* An optional error message, when the event is in error state (occurs at event: ERROR)
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof LiveEncodingStatsEventDetails
|
|
28
|
-
*/
|
|
29
|
-
errorMessage?: string;
|
|
11
|
+
eventType?: LiveEncodingEventName;
|
|
30
12
|
constructor(obj?: Partial<LiveEncodingStatsEventDetails>);
|
|
31
13
|
}
|
|
32
14
|
export default LiveEncodingStatsEventDetails;
|
|
@@ -11,10 +11,7 @@ var LiveEncodingStatsEventDetails = /** @class */ (function () {
|
|
|
11
11
|
if (!obj) {
|
|
12
12
|
return;
|
|
13
13
|
}
|
|
14
|
-
this.
|
|
15
|
-
this.avDriftInSeconds = (0, Mapper_1.map)(obj.avDriftInSeconds);
|
|
16
|
-
this.idleDurationInSeconds = (0, Mapper_1.map)(obj.idleDurationInSeconds);
|
|
17
|
-
this.errorMessage = (0, Mapper_1.map)(obj.errorMessage);
|
|
14
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
18
15
|
}
|
|
19
16
|
return LiveEncodingStatsEventDetails;
|
|
20
17
|
}());
|