@bitmovin/api-sdk 1.174.0 → 1.175.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 +29 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/Encoding.d.ts +6 -0
- package/dist/models/Encoding.js +1 -0
- package/dist/models/EncodingStatisticsVod.d.ts +1 -1
- package/dist/models/EncodingStatisticsVod.js +1 -1
- package/dist/models/StreamsEncodingProfile.d.ts +9 -0
- package/dist/models/StreamsEncodingProfile.js +13 -0
- package/dist/models/StreamsVideoCreateRequest.d.ts +7 -0
- package/dist/models/StreamsVideoCreateRequest.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
|
@@ -5987,7 +5987,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
5987
5987
|
var headers = {
|
|
5988
5988
|
'X-Api-Key': apiKey,
|
|
5989
5989
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
5990
|
-
'X-Api-Client-Version': '1.
|
|
5990
|
+
'X-Api-Client-Version': '1.175.0',
|
|
5991
5991
|
'Content-Type': 'application/json'
|
|
5992
5992
|
};
|
|
5993
5993
|
if (tenantOrgId) {
|
|
@@ -67572,6 +67572,7 @@ var Encoding = /** @class */ (function (_super) {
|
|
|
67572
67572
|
_this.selectedEncoderVersion = (0, Mapper_1.map)(obj.selectedEncoderVersion);
|
|
67573
67573
|
_this.selectedEncodingMode = (0, Mapper_1.map)(obj.selectedEncodingMode);
|
|
67574
67574
|
_this.selectedCloudRegion = (0, Mapper_1.map)(obj.selectedCloudRegion);
|
|
67575
|
+
_this.selectedFallbackCloudRegions = (0, Mapper_1.mapArray)(obj.selectedFallbackCloudRegions);
|
|
67575
67576
|
_this.status = (0, Mapper_1.map)(obj.status);
|
|
67576
67577
|
_this.labels = (0, Mapper_1.mapArray)(obj.labels);
|
|
67577
67578
|
_this.liveOptionsType = (0, Mapper_1.map)(obj.liveOptionsType);
|
|
@@ -68018,7 +68019,7 @@ var EncodingStatisticsVod = /** @class */ (function (_super) {
|
|
|
68018
68019
|
return _this;
|
|
68019
68020
|
}
|
|
68020
68021
|
_this.timeEnqueued = (0, Mapper_1.map)(obj.timeEnqueued);
|
|
68021
|
-
_this.
|
|
68022
|
+
_this.realtimeFactor = (0, Mapper_1.map)(obj.realtimeFactor);
|
|
68022
68023
|
return _this;
|
|
68023
68024
|
}
|
|
68024
68025
|
return EncodingStatisticsVod;
|
|
@@ -82433,6 +82434,30 @@ exports.StreamsContentProtectionResponse = StreamsContentProtectionResponse;
|
|
|
82433
82434
|
exports["default"] = StreamsContentProtectionResponse;
|
|
82434
82435
|
|
|
82435
82436
|
|
|
82437
|
+
/***/ }),
|
|
82438
|
+
|
|
82439
|
+
/***/ "./models/StreamsEncodingProfile.ts":
|
|
82440
|
+
/*!******************************************!*\
|
|
82441
|
+
!*** ./models/StreamsEncodingProfile.ts ***!
|
|
82442
|
+
\******************************************/
|
|
82443
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
82444
|
+
|
|
82445
|
+
"use strict";
|
|
82446
|
+
|
|
82447
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
82448
|
+
exports.StreamsEncodingProfile = void 0;
|
|
82449
|
+
/**
|
|
82450
|
+
* @export
|
|
82451
|
+
* @enum {string}
|
|
82452
|
+
*/
|
|
82453
|
+
var StreamsEncodingProfile;
|
|
82454
|
+
(function (StreamsEncodingProfile) {
|
|
82455
|
+
StreamsEncodingProfile["PER_TITLE"] = "PER_TITLE";
|
|
82456
|
+
StreamsEncodingProfile["FIXED_RESOLUTIONS"] = "FIXED_RESOLUTIONS";
|
|
82457
|
+
})(StreamsEncodingProfile = exports.StreamsEncodingProfile || (exports.StreamsEncodingProfile = {}));
|
|
82458
|
+
exports["default"] = StreamsEncodingProfile;
|
|
82459
|
+
|
|
82460
|
+
|
|
82436
82461
|
/***/ }),
|
|
82437
82462
|
|
|
82438
82463
|
/***/ "./models/StreamsLiveCreateRequest.ts":
|
|
@@ -82754,6 +82779,7 @@ var StreamsVideoCreateRequest = /** @class */ (function () {
|
|
|
82754
82779
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
82755
82780
|
this.styleConfigId = (0, Mapper_1.map)(obj.styleConfigId);
|
|
82756
82781
|
this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
|
|
82782
|
+
this.encodingProfile = (0, Mapper_1.map)(obj.encodingProfile);
|
|
82757
82783
|
}
|
|
82758
82784
|
return StreamsVideoCreateRequest;
|
|
82759
82785
|
}());
|
|
@@ -86887,6 +86913,7 @@ __exportStar(__webpack_require__(/*! ./StreamSelectionMode */ "./models/StreamSe
|
|
|
86887
86913
|
__exportStar(__webpack_require__(/*! ./StreamsAdConfigAd */ "./models/StreamsAdConfigAd.ts"), exports);
|
|
86888
86914
|
__exportStar(__webpack_require__(/*! ./StreamsAdConfigResponse */ "./models/StreamsAdConfigResponse.ts"), exports);
|
|
86889
86915
|
__exportStar(__webpack_require__(/*! ./StreamsContentProtectionResponse */ "./models/StreamsContentProtectionResponse.ts"), exports);
|
|
86916
|
+
__exportStar(__webpack_require__(/*! ./StreamsEncodingProfile */ "./models/StreamsEncodingProfile.ts"), exports);
|
|
86890
86917
|
__exportStar(__webpack_require__(/*! ./StreamsLiveCreateRequest */ "./models/StreamsLiveCreateRequest.ts"), exports);
|
|
86891
86918
|
__exportStar(__webpack_require__(/*! ./StreamsLiveLifeCycle */ "./models/StreamsLiveLifeCycle.ts"), exports);
|
|
86892
86919
|
__exportStar(__webpack_require__(/*! ./StreamsLiveResponse */ "./models/StreamsLiveResponse.ts"), exports);
|