@bitmovin/api-sdk 1.206.0 → 1.207.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 -7
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/Av1PerTitleConfiguration.d.ts +0 -6
- package/dist/models/Av1PerTitleConfiguration.js +0 -2
- package/dist/models/H264PerTitleConfiguration.d.ts +0 -6
- package/dist/models/H264PerTitleConfiguration.js +0 -1
- package/dist/models/H265PerTitleConfiguration.d.ts +0 -6
- package/dist/models/H265PerTitleConfiguration.js +0 -1
- package/dist/models/PerTitleConfiguration.d.ts +12 -0
- package/dist/models/PerTitleConfiguration.js +2 -0
- package/dist/models/Vp9PerTitleConfiguration.d.ts +0 -6
- package/dist/models/Vp9PerTitleConfiguration.js +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6091,7 +6091,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6091
6091
|
var headers = {
|
|
6092
6092
|
'X-Api-Key': apiKey,
|
|
6093
6093
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6094
|
-
'X-Api-Client-Version': '1.
|
|
6094
|
+
'X-Api-Client-Version': '1.207.0',
|
|
6095
6095
|
'Content-Type': 'application/json'
|
|
6096
6096
|
};
|
|
6097
6097
|
if (tenantOrgId) {
|
|
@@ -59935,7 +59935,6 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
59935
59935
|
})();
|
|
59936
59936
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59937
59937
|
exports.Av1PerTitleConfiguration = void 0;
|
|
59938
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59939
59938
|
var PerTitleConfiguration_1 = __webpack_require__(/*! ./PerTitleConfiguration */ "./models/PerTitleConfiguration.ts");
|
|
59940
59939
|
/**
|
|
59941
59940
|
* @export
|
|
@@ -59948,7 +59947,6 @@ var Av1PerTitleConfiguration = /** @class */ (function (_super) {
|
|
|
59948
59947
|
if (!obj) {
|
|
59949
59948
|
return _this;
|
|
59950
59949
|
}
|
|
59951
|
-
_this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
|
|
59952
59950
|
return _this;
|
|
59953
59951
|
}
|
|
59954
59952
|
return Av1PerTitleConfiguration;
|
|
@@ -70648,7 +70646,6 @@ var H264PerTitleConfiguration = /** @class */ (function (_super) {
|
|
|
70648
70646
|
if (!obj) {
|
|
70649
70647
|
return _this;
|
|
70650
70648
|
}
|
|
70651
|
-
_this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
|
|
70652
70649
|
_this.codecMinBitrateFactor = (0, Mapper_1.map)(obj.codecMinBitrateFactor);
|
|
70653
70650
|
_this.codecMaxBitrateFactor = (0, Mapper_1.map)(obj.codecMaxBitrateFactor);
|
|
70654
70651
|
_this.codecBufsizeFactor = (0, Mapper_1.map)(obj.codecBufsizeFactor);
|
|
@@ -70948,7 +70945,6 @@ var H265PerTitleConfiguration = /** @class */ (function (_super) {
|
|
|
70948
70945
|
if (!obj) {
|
|
70949
70946
|
return _this;
|
|
70950
70947
|
}
|
|
70951
|
-
_this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
|
|
70952
70948
|
_this.codecMinBitrateFactor = (0, Mapper_1.map)(obj.codecMinBitrateFactor);
|
|
70953
70949
|
_this.codecMaxBitrateFactor = (0, Mapper_1.map)(obj.codecMaxBitrateFactor);
|
|
70954
70950
|
_this.codecBufsizeFactor = (0, Mapper_1.map)(obj.codecBufsizeFactor);
|
|
@@ -76373,6 +76369,8 @@ var PerTitleConfiguration = /** @class */ (function () {
|
|
|
76373
76369
|
this.autoRepresentations = (0, Mapper_1.map)(obj.autoRepresentations, AutoRepresentation_1.default);
|
|
76374
76370
|
this.complexityFactor = (0, Mapper_1.map)(obj.complexityFactor);
|
|
76375
76371
|
this.fixedResolutionAndBitrateConfiguration = (0, Mapper_1.map)(obj.fixedResolutionAndBitrateConfiguration, PerTitleFixedResolutionAndBitrateConfiguration_1.default);
|
|
76372
|
+
this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
|
|
76373
|
+
this.resolutionScaleFactor = (0, Mapper_1.map)(obj.resolutionScaleFactor);
|
|
76376
76374
|
}
|
|
76377
76375
|
return PerTitleConfiguration;
|
|
76378
76376
|
}());
|
|
@@ -86469,7 +86467,6 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
86469
86467
|
})();
|
|
86470
86468
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
86471
86469
|
exports.Vp9PerTitleConfiguration = void 0;
|
|
86472
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
86473
86470
|
var PerTitleConfiguration_1 = __webpack_require__(/*! ./PerTitleConfiguration */ "./models/PerTitleConfiguration.ts");
|
|
86474
86471
|
/**
|
|
86475
86472
|
* @export
|
|
@@ -86482,7 +86479,6 @@ var Vp9PerTitleConfiguration = /** @class */ (function (_super) {
|
|
|
86482
86479
|
if (!obj) {
|
|
86483
86480
|
return _this;
|
|
86484
86481
|
}
|
|
86485
|
-
_this.targetQualityCrf = (0, Mapper_1.map)(obj.targetQualityCrf);
|
|
86486
86482
|
return _this;
|
|
86487
86483
|
}
|
|
86488
86484
|
return Vp9PerTitleConfiguration;
|