@bitmovin/api-sdk 1.167.0 → 1.169.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 +500 -41
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/live/LiveApi.d.ts +2 -0
- package/dist/encoding/encodings/live/LiveApi.js +2 -0
- package/dist/encoding/encodings/live/hd/HdApi.d.ts +28 -0
- package/dist/encoding/encodings/live/hd/HdApi.js +64 -0
- package/dist/encoding/statistics/encodings/live/LiveApi.d.ts +2 -0
- package/dist/encoding/statistics/encodings/live/LiveApi.js +2 -0
- package/dist/encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.d.ts +50 -0
- package/dist/encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.js +45 -0
- package/dist/encoding/statistics/encodings/live/options/OptionsApi.d.ts +28 -0
- package/dist/encoding/statistics/encodings/live/options/OptionsApi.js +68 -0
- package/dist/models/AdAnalyticsAttribute.d.ts +1 -0
- package/dist/models/AdAnalyticsAttribute.js +1 -0
- package/dist/models/AnalyticsAdsImpressionSample.d.ts +6 -0
- package/dist/models/AnalyticsAdsImpressionSample.js +1 -0
- package/dist/models/AnalyticsAttribute.d.ts +1 -0
- package/dist/models/AnalyticsAttribute.js +1 -0
- package/dist/models/AnalyticsImpressionSample.d.ts +6 -0
- package/dist/models/AnalyticsImpressionSample.js +1 -0
- package/dist/models/LiveEncodingOptionsStatistics.d.ts +26 -0
- package/dist/models/LiveEncodingOptionsStatistics.js +21 -0
- package/dist/models/LiveOptionsBreakdownEntry.d.ts +20 -0
- package/dist/models/LiveOptionsBreakdownEntry.js +21 -0
- package/dist/models/LiveOptionsEntry.d.ts +14 -0
- package/dist/models/LiveOptionsEntry.js +19 -0
- package/dist/models/LiveOptionsStatistics.d.ts +21 -0
- package/dist/models/LiveOptionsStatistics.js +22 -0
- package/dist/models/LiveOptionsSummary.d.ts +14 -0
- package/dist/models/LiveOptionsSummary.js +20 -0
- package/dist/models/StartLiveChannelEncodingRequest.d.ts +9 -0
- package/dist/models/StartLiveChannelEncodingRequest.js +36 -0
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import StartLiveEncodingRequest from './StartLiveEncodingRequest';
|
|
2
|
+
/**
|
|
3
|
+
* @export
|
|
4
|
+
* @class StartLiveChannelEncodingRequest
|
|
5
|
+
*/
|
|
6
|
+
export declare class StartLiveChannelEncodingRequest extends StartLiveEncodingRequest {
|
|
7
|
+
constructor(obj?: Partial<StartLiveChannelEncodingRequest>);
|
|
8
|
+
}
|
|
9
|
+
export default StartLiveChannelEncodingRequest;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
if (typeof b !== "function" && b !== null)
|
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
+
extendStatics(d, b);
|
|
13
|
+
function __() { this.constructor = d; }
|
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
+
};
|
|
16
|
+
})();
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.StartLiveChannelEncodingRequest = void 0;
|
|
19
|
+
var StartLiveEncodingRequest_1 = require("./StartLiveEncodingRequest");
|
|
20
|
+
/**
|
|
21
|
+
* @export
|
|
22
|
+
* @class StartLiveChannelEncodingRequest
|
|
23
|
+
*/
|
|
24
|
+
var StartLiveChannelEncodingRequest = /** @class */ (function (_super) {
|
|
25
|
+
__extends(StartLiveChannelEncodingRequest, _super);
|
|
26
|
+
function StartLiveChannelEncodingRequest(obj) {
|
|
27
|
+
var _this = _super.call(this, obj) || this;
|
|
28
|
+
if (!obj) {
|
|
29
|
+
return _this;
|
|
30
|
+
}
|
|
31
|
+
return _this;
|
|
32
|
+
}
|
|
33
|
+
return StartLiveChannelEncodingRequest;
|
|
34
|
+
}(StartLiveEncodingRequest_1.default));
|
|
35
|
+
exports.StartLiveChannelEncodingRequest = StartLiveChannelEncodingRequest;
|
|
36
|
+
exports.default = StartLiveChannelEncodingRequest;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -459,12 +459,17 @@ export * from './LiveDashManifest';
|
|
|
459
459
|
export * from './LiveEncoding';
|
|
460
460
|
export * from './LiveEncodingCodec';
|
|
461
461
|
export * from './LiveEncodingEventName';
|
|
462
|
+
export * from './LiveEncodingOptionsStatistics';
|
|
462
463
|
export * from './LiveEncodingStats';
|
|
463
464
|
export * from './LiveEncodingStatsEvent';
|
|
464
465
|
export * from './LiveEncodingStatsEventDetails';
|
|
465
466
|
export * from './LiveEncodingStatus';
|
|
466
467
|
export * from './LiveHlsManifest';
|
|
467
468
|
export * from './LiveMediaIngestOutput';
|
|
469
|
+
export * from './LiveOptionsBreakdownEntry';
|
|
470
|
+
export * from './LiveOptionsEntry';
|
|
471
|
+
export * from './LiveOptionsStatistics';
|
|
472
|
+
export * from './LiveOptionsSummary';
|
|
468
473
|
export * from './LiveOptionsType';
|
|
469
474
|
export * from './LocalInput';
|
|
470
475
|
export * from './LocalOutput';
|
|
@@ -673,6 +678,7 @@ export * from './SrtStatisticWindow';
|
|
|
673
678
|
export * from './SrtStatistics';
|
|
674
679
|
export * from './StandardMediaInfo';
|
|
675
680
|
export * from './StartEncodingRequest';
|
|
681
|
+
export * from './StartLiveChannelEncodingRequest';
|
|
676
682
|
export * from './StartLiveEncodingRequest';
|
|
677
683
|
export * from './StartManifestRequest';
|
|
678
684
|
export * from './StaticIp';
|
package/dist/models/index.js
CHANGED
|
@@ -475,12 +475,17 @@ __exportStar(require("./LiveDashManifest"), exports);
|
|
|
475
475
|
__exportStar(require("./LiveEncoding"), exports);
|
|
476
476
|
__exportStar(require("./LiveEncodingCodec"), exports);
|
|
477
477
|
__exportStar(require("./LiveEncodingEventName"), exports);
|
|
478
|
+
__exportStar(require("./LiveEncodingOptionsStatistics"), exports);
|
|
478
479
|
__exportStar(require("./LiveEncodingStats"), exports);
|
|
479
480
|
__exportStar(require("./LiveEncodingStatsEvent"), exports);
|
|
480
481
|
__exportStar(require("./LiveEncodingStatsEventDetails"), exports);
|
|
481
482
|
__exportStar(require("./LiveEncodingStatus"), exports);
|
|
482
483
|
__exportStar(require("./LiveHlsManifest"), exports);
|
|
483
484
|
__exportStar(require("./LiveMediaIngestOutput"), exports);
|
|
485
|
+
__exportStar(require("./LiveOptionsBreakdownEntry"), exports);
|
|
486
|
+
__exportStar(require("./LiveOptionsEntry"), exports);
|
|
487
|
+
__exportStar(require("./LiveOptionsStatistics"), exports);
|
|
488
|
+
__exportStar(require("./LiveOptionsSummary"), exports);
|
|
484
489
|
__exportStar(require("./LiveOptionsType"), exports);
|
|
485
490
|
__exportStar(require("./LocalInput"), exports);
|
|
486
491
|
__exportStar(require("./LocalOutput"), exports);
|
|
@@ -689,6 +694,7 @@ __exportStar(require("./SrtStatisticWindow"), exports);
|
|
|
689
694
|
__exportStar(require("./SrtStatistics"), exports);
|
|
690
695
|
__exportStar(require("./StandardMediaInfo"), exports);
|
|
691
696
|
__exportStar(require("./StartEncodingRequest"), exports);
|
|
697
|
+
__exportStar(require("./StartLiveChannelEncodingRequest"), exports);
|
|
692
698
|
__exportStar(require("./StartLiveEncodingRequest"), exports);
|
|
693
699
|
__exportStar(require("./StartManifestRequest"), exports);
|
|
694
700
|
__exportStar(require("./StaticIp"), exports);
|