@bitmovin/api-sdk 1.231.0 → 1.233.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 +60 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/HlsInput.d.ts +22 -0
- package/dist/models/HlsInput.js +45 -0
- package/dist/models/Input.d.ts +2 -1
- package/dist/models/Input.js +1 -0
- package/dist/models/InputType.d.ts +1 -0
- package/dist/models/InputType.js +1 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7032,7 +7032,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
7032
7032
|
var headers = {
|
|
7033
7033
|
'X-Api-Key': apiKey,
|
|
7034
7034
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
7035
|
-
'X-Api-Client-Version': '1.
|
|
7035
|
+
'X-Api-Client-Version': '1.233.0',
|
|
7036
7036
|
'Content-Type': 'application/json'
|
|
7037
7037
|
};
|
|
7038
7038
|
if (tenantOrgId) {
|
|
@@ -74559,6 +74559,62 @@ var HeAacV2Signaling;
|
|
|
74559
74559
|
exports["default"] = HeAacV2Signaling;
|
|
74560
74560
|
|
|
74561
74561
|
|
|
74562
|
+
/***/ }),
|
|
74563
|
+
|
|
74564
|
+
/***/ "./models/HlsInput.ts":
|
|
74565
|
+
/*!****************************!*\
|
|
74566
|
+
!*** ./models/HlsInput.ts ***!
|
|
74567
|
+
\****************************/
|
|
74568
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
74569
|
+
|
|
74570
|
+
"use strict";
|
|
74571
|
+
|
|
74572
|
+
var __extends = (this && this.__extends) || (function () {
|
|
74573
|
+
var extendStatics = function (d, b) {
|
|
74574
|
+
extendStatics = Object.setPrototypeOf ||
|
|
74575
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
74576
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
74577
|
+
return extendStatics(d, b);
|
|
74578
|
+
};
|
|
74579
|
+
return function (d, b) {
|
|
74580
|
+
if (typeof b !== "function" && b !== null)
|
|
74581
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
74582
|
+
extendStatics(d, b);
|
|
74583
|
+
function __() { this.constructor = d; }
|
|
74584
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
74585
|
+
};
|
|
74586
|
+
})();
|
|
74587
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
74588
|
+
exports.HlsInput = void 0;
|
|
74589
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
74590
|
+
var Input_1 = __webpack_require__(/*! ./Input */ "./models/Input.ts");
|
|
74591
|
+
var InputType_1 = __webpack_require__(/*! ./InputType */ "./models/InputType.ts");
|
|
74592
|
+
/**
|
|
74593
|
+
* @export
|
|
74594
|
+
* @class HlsInput
|
|
74595
|
+
*/
|
|
74596
|
+
var HlsInput = /** @class */ (function (_super) {
|
|
74597
|
+
__extends(HlsInput, _super);
|
|
74598
|
+
function HlsInput(obj) {
|
|
74599
|
+
var _this = _super.call(this, obj) || this;
|
|
74600
|
+
/**
|
|
74601
|
+
* Discriminator property for Input
|
|
74602
|
+
* @type {string}
|
|
74603
|
+
* @memberof HlsInput
|
|
74604
|
+
*/
|
|
74605
|
+
_this.type = InputType_1.default.HLS;
|
|
74606
|
+
if (!obj) {
|
|
74607
|
+
return _this;
|
|
74608
|
+
}
|
|
74609
|
+
_this.url = (0, Mapper_1.map)(obj.url);
|
|
74610
|
+
return _this;
|
|
74611
|
+
}
|
|
74612
|
+
return HlsInput;
|
|
74613
|
+
}(Input_1.default));
|
|
74614
|
+
exports.HlsInput = HlsInput;
|
|
74615
|
+
exports["default"] = HlsInput;
|
|
74616
|
+
|
|
74617
|
+
|
|
74562
74618
|
/***/ }),
|
|
74563
74619
|
|
|
74564
74620
|
/***/ "./models/HlsManifest.ts":
|
|
@@ -75463,6 +75519,7 @@ var Input = /** @class */ (function (_super) {
|
|
|
75463
75519
|
GCS: 'GcsInput',
|
|
75464
75520
|
HTTP: 'HttpInput',
|
|
75465
75521
|
HTTPS: 'HttpsInput',
|
|
75522
|
+
HLS: 'HlsInput',
|
|
75466
75523
|
LOCAL: 'LocalInput',
|
|
75467
75524
|
RTMP: 'RtmpInput',
|
|
75468
75525
|
S3: 'S3Input',
|
|
@@ -75891,6 +75948,7 @@ var InputType;
|
|
|
75891
75948
|
InputType["AZURE"] = "AZURE";
|
|
75892
75949
|
InputType["REDUNDANT_RTMP"] = "REDUNDANT_RTMP";
|
|
75893
75950
|
InputType["FTP"] = "FTP";
|
|
75951
|
+
InputType["HLS"] = "HLS";
|
|
75894
75952
|
InputType["GENERIC_S3"] = "GENERIC_S3";
|
|
75895
75953
|
InputType["GCS"] = "GCS";
|
|
75896
75954
|
InputType["HTTP"] = "HTTP";
|
|
@@ -90803,6 +90861,7 @@ __exportStar(__webpack_require__(/*! ./HeAacV1AudioConfiguration */ "./models/He
|
|
|
90803
90861
|
__exportStar(__webpack_require__(/*! ./HeAacV1Signaling */ "./models/HeAacV1Signaling.ts"), exports);
|
|
90804
90862
|
__exportStar(__webpack_require__(/*! ./HeAacV2AudioConfiguration */ "./models/HeAacV2AudioConfiguration.ts"), exports);
|
|
90805
90863
|
__exportStar(__webpack_require__(/*! ./HeAacV2Signaling */ "./models/HeAacV2Signaling.ts"), exports);
|
|
90864
|
+
__exportStar(__webpack_require__(/*! ./HlsInput */ "./models/HlsInput.ts"), exports);
|
|
90806
90865
|
__exportStar(__webpack_require__(/*! ./HlsManifest */ "./models/HlsManifest.ts"), exports);
|
|
90807
90866
|
__exportStar(__webpack_require__(/*! ./HlsManifestAdMarkerSettings */ "./models/HlsManifestAdMarkerSettings.ts"), exports);
|
|
90808
90867
|
__exportStar(__webpack_require__(/*! ./HlsManifestAdMarkerType */ "./models/HlsManifestAdMarkerType.ts"), exports);
|