@bitmovin/api-sdk 1.103.0 → 1.104.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 CHANGED
@@ -31,7 +31,7 @@ If you have any questions regarding the SDK, provided examples or our services,
31
31
  ## Installation
32
32
 
33
33
  ``` bash
34
- npm install @bitmovin/api-sdk@1.103.0
34
+ npm install @bitmovin/api-sdk@1.104.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -6974,7 +6974,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6974
6974
  var headers = {
6975
6975
  'X-Api-Key': apiKey,
6976
6976
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6977
- 'X-Api-Client-Version': '1.103.0',
6977
+ 'X-Api-Client-Version': '1.104.0',
6978
6978
  'Content-Type': 'application/json'
6979
6979
  };
6980
6980
  if (tenantOrgId) {
@@ -59879,6 +59879,54 @@ exports.AutoRestartConfiguration = AutoRestartConfiguration;
59879
59879
  exports.default = AutoRestartConfiguration;
59880
59880
 
59881
59881
 
59882
+ /***/ }),
59883
+
59884
+ /***/ "./models/Av1PerTitleConfiguration.ts":
59885
+ /*!********************************************!*\
59886
+ !*** ./models/Av1PerTitleConfiguration.ts ***!
59887
+ \********************************************/
59888
+ /*! no static exports found */
59889
+ /***/ (function(module, exports, __webpack_require__) {
59890
+
59891
+ "use strict";
59892
+
59893
+ var __extends = (this && this.__extends) || (function () {
59894
+ var extendStatics = function (d, b) {
59895
+ extendStatics = Object.setPrototypeOf ||
59896
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
59897
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
59898
+ return extendStatics(d, b);
59899
+ };
59900
+ return function (d, b) {
59901
+ extendStatics(d, b);
59902
+ function __() { this.constructor = d; }
59903
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
59904
+ };
59905
+ })();
59906
+ Object.defineProperty(exports, "__esModule", { value: true });
59907
+ exports.Av1PerTitleConfiguration = void 0;
59908
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
59909
+ var PerTitleConfiguration_1 = __webpack_require__(/*! ./PerTitleConfiguration */ "./models/PerTitleConfiguration.ts");
59910
+ /**
59911
+ * @export
59912
+ * @class Av1PerTitleConfiguration
59913
+ */
59914
+ var Av1PerTitleConfiguration = /** @class */ (function (_super) {
59915
+ __extends(Av1PerTitleConfiguration, _super);
59916
+ function Av1PerTitleConfiguration(obj) {
59917
+ var _this = _super.call(this, obj) || this;
59918
+ if (!obj) {
59919
+ return _this;
59920
+ }
59921
+ _this.targetQualityCrf = Mapper_1.map(obj.targetQualityCrf);
59922
+ return _this;
59923
+ }
59924
+ return Av1PerTitleConfiguration;
59925
+ }(PerTitleConfiguration_1.default));
59926
+ exports.Av1PerTitleConfiguration = Av1PerTitleConfiguration;
59927
+ exports.default = Av1PerTitleConfiguration;
59928
+
59929
+
59882
59930
  /***/ }),
59883
59931
 
59884
59932
  /***/ "./models/Av1VideoConfiguration.ts":
@@ -68155,6 +68203,31 @@ exports.EncodingStreamInputDetails = EncodingStreamInputDetails;
68155
68203
  exports.default = EncodingStreamInputDetails;
68156
68204
 
68157
68205
 
68206
+ /***/ }),
68207
+
68208
+ /***/ "./models/EncodingTemplate.ts":
68209
+ /*!************************************!*\
68210
+ !*** ./models/EncodingTemplate.ts ***!
68211
+ \************************************/
68212
+ /*! no static exports found */
68213
+ /***/ (function(module, exports, __webpack_require__) {
68214
+
68215
+ "use strict";
68216
+
68217
+ Object.defineProperty(exports, "__esModule", { value: true });
68218
+ exports.EncodingTemplate = void 0;
68219
+ /**
68220
+ * @export
68221
+ * @enum {string}
68222
+ */
68223
+ var EncodingTemplate;
68224
+ (function (EncodingTemplate) {
68225
+ EncodingTemplate["H264"] = "H264";
68226
+ EncodingTemplate["AV1"] = "AV1";
68227
+ })(EncodingTemplate = exports.EncodingTemplate || (exports.EncodingTemplate = {}));
68228
+ exports.default = EncodingTemplate;
68229
+
68230
+
68158
68231
  /***/ }),
68159
68232
 
68160
68233
  /***/ "./models/EncodingType.ts":
@@ -75381,6 +75454,7 @@ exports.default = PcmSampleFormat;
75381
75454
  Object.defineProperty(exports, "__esModule", { value: true });
75382
75455
  exports.PerTitle = void 0;
75383
75456
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
75457
+ var Av1PerTitleConfiguration_1 = __webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts");
75384
75458
  var H264PerTitleConfiguration_1 = __webpack_require__(/*! ./H264PerTitleConfiguration */ "./models/H264PerTitleConfiguration.ts");
75385
75459
  var H265PerTitleConfiguration_1 = __webpack_require__(/*! ./H265PerTitleConfiguration */ "./models/H265PerTitleConfiguration.ts");
75386
75460
  var Vp9PerTitleConfiguration_1 = __webpack_require__(/*! ./Vp9PerTitleConfiguration */ "./models/Vp9PerTitleConfiguration.ts");
@@ -75396,6 +75470,7 @@ var PerTitle = /** @class */ (function () {
75396
75470
  this.h264Configuration = Mapper_1.map(obj.h264Configuration, H264PerTitleConfiguration_1.default);
75397
75471
  this.h265Configuration = Mapper_1.map(obj.h265Configuration, H265PerTitleConfiguration_1.default);
75398
75472
  this.vp9Configuration = Mapper_1.map(obj.vp9Configuration, Vp9PerTitleConfiguration_1.default);
75473
+ this.av1Configuration = Mapper_1.map(obj.av1Configuration, Av1PerTitleConfiguration_1.default);
75399
75474
  }
75400
75475
  return PerTitle;
75401
75476
  }());
@@ -78821,6 +78896,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
78821
78896
  if (!obj) {
78822
78897
  return;
78823
78898
  }
78899
+ this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
78824
78900
  this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
78825
78901
  this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobUrlOutput_1.default);
78826
78902
  this.name = Mapper_1.map(obj.name);
@@ -84527,6 +84603,7 @@ __exportStar(__webpack_require__(/*! ./AudioVolumeFormat */ "./models/AudioVolum
84527
84603
  __exportStar(__webpack_require__(/*! ./AudioVolumeUnit */ "./models/AudioVolumeUnit.ts"), exports);
84528
84604
  __exportStar(__webpack_require__(/*! ./AutoRepresentation */ "./models/AutoRepresentation.ts"), exports);
84529
84605
  __exportStar(__webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts"), exports);
84606
+ __exportStar(__webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts"), exports);
84530
84607
  __exportStar(__webpack_require__(/*! ./Av1VideoConfiguration */ "./models/Av1VideoConfiguration.ts"), exports);
84531
84608
  __exportStar(__webpack_require__(/*! ./AvailabilityStartTimeMode */ "./models/AvailabilityStartTimeMode.ts"), exports);
84532
84609
  __exportStar(__webpack_require__(/*! ./AwsAccount */ "./models/AwsAccount.ts"), exports);
@@ -84723,6 +84800,7 @@ __exportStar(__webpack_require__(/*! ./EncodingStatisticsVod */ "./models/Encodi
84723
84800
  __exportStar(__webpack_require__(/*! ./EncodingStats */ "./models/EncodingStats.ts"), exports);
84724
84801
  __exportStar(__webpack_require__(/*! ./EncodingStreamInput */ "./models/EncodingStreamInput.ts"), exports);
84725
84802
  __exportStar(__webpack_require__(/*! ./EncodingStreamInputDetails */ "./models/EncodingStreamInputDetails.ts"), exports);
84803
+ __exportStar(__webpack_require__(/*! ./EncodingTemplate */ "./models/EncodingTemplate.ts"), exports);
84726
84804
  __exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
84727
84805
  __exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
84728
84806
  __exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);