@bitmovin/api-sdk 1.104.0 → 1.105.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.104.0
34
+ npm install @bitmovin/api-sdk@1.105.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.104.0',
6977
+ 'X-Api-Client-Version': '1.105.0',
6978
6978
  'Content-Type': 'application/json'
6979
6979
  };
6980
6980
  if (tenantOrgId) {
@@ -59927,6 +59927,32 @@ exports.Av1PerTitleConfiguration = Av1PerTitleConfiguration;
59927
59927
  exports.default = Av1PerTitleConfiguration;
59928
59928
 
59929
59929
 
59930
+ /***/ }),
59931
+
59932
+ /***/ "./models/Av1PresetConfiguration.ts":
59933
+ /*!******************************************!*\
59934
+ !*** ./models/Av1PresetConfiguration.ts ***!
59935
+ \******************************************/
59936
+ /*! no static exports found */
59937
+ /***/ (function(module, exports, __webpack_require__) {
59938
+
59939
+ "use strict";
59940
+
59941
+ Object.defineProperty(exports, "__esModule", { value: true });
59942
+ exports.Av1PresetConfiguration = void 0;
59943
+ /**
59944
+ * @export
59945
+ * @enum {string}
59946
+ */
59947
+ var Av1PresetConfiguration;
59948
+ (function (Av1PresetConfiguration) {
59949
+ Av1PresetConfiguration["VOD_QUALITY"] = "VOD_QUALITY";
59950
+ Av1PresetConfiguration["VOD_STANDARD"] = "VOD_STANDARD";
59951
+ Av1PresetConfiguration["VOD_SPEED"] = "VOD_SPEED";
59952
+ })(Av1PresetConfiguration = exports.Av1PresetConfiguration || (exports.Av1PresetConfiguration = {}));
59953
+ exports.default = Av1PresetConfiguration;
59954
+
59955
+
59930
59956
  /***/ }),
59931
59957
 
59932
59958
  /***/ "./models/Av1VideoConfiguration.ts":
@@ -59953,6 +59979,7 @@ var __extends = (this && this.__extends) || (function () {
59953
59979
  })();
59954
59980
  Object.defineProperty(exports, "__esModule", { value: true });
59955
59981
  exports.Av1VideoConfiguration = void 0;
59982
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
59956
59983
  var CodecConfigType_1 = __webpack_require__(/*! ./CodecConfigType */ "./models/CodecConfigType.ts");
59957
59984
  var VideoConfiguration_1 = __webpack_require__(/*! ./VideoConfiguration */ "./models/VideoConfiguration.ts");
59958
59985
  /**
@@ -59972,6 +59999,7 @@ var Av1VideoConfiguration = /** @class */ (function (_super) {
59972
59999
  if (!obj) {
59973
60000
  return _this;
59974
60001
  }
60002
+ _this.presetConfiguration = Mapper_1.map(obj.presetConfiguration);
59975
60003
  return _this;
59976
60004
  }
59977
60005
  return Av1VideoConfiguration;
@@ -65119,6 +65147,59 @@ exports.DenoiseHqdn3dFilter = DenoiseHqdn3dFilter;
65119
65147
  exports.default = DenoiseHqdn3dFilter;
65120
65148
 
65121
65149
 
65150
+ /***/ }),
65151
+
65152
+ /***/ "./models/DirectFileUploadInput.ts":
65153
+ /*!*****************************************!*\
65154
+ !*** ./models/DirectFileUploadInput.ts ***!
65155
+ \*****************************************/
65156
+ /*! no static exports found */
65157
+ /***/ (function(module, exports, __webpack_require__) {
65158
+
65159
+ "use strict";
65160
+
65161
+ var __extends = (this && this.__extends) || (function () {
65162
+ var extendStatics = function (d, b) {
65163
+ extendStatics = Object.setPrototypeOf ||
65164
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
65165
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
65166
+ return extendStatics(d, b);
65167
+ };
65168
+ return function (d, b) {
65169
+ extendStatics(d, b);
65170
+ function __() { this.constructor = d; }
65171
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
65172
+ };
65173
+ })();
65174
+ Object.defineProperty(exports, "__esModule", { value: true });
65175
+ exports.DirectFileUploadInput = void 0;
65176
+ var Input_1 = __webpack_require__(/*! ./Input */ "./models/Input.ts");
65177
+ var InputType_1 = __webpack_require__(/*! ./InputType */ "./models/InputType.ts");
65178
+ /**
65179
+ * @export
65180
+ * @class DirectFileUploadInput
65181
+ */
65182
+ var DirectFileUploadInput = /** @class */ (function (_super) {
65183
+ __extends(DirectFileUploadInput, _super);
65184
+ function DirectFileUploadInput(obj) {
65185
+ var _this = _super.call(this, obj) || this;
65186
+ /**
65187
+ * Discriminator property for Input
65188
+ * @type {string}
65189
+ * @memberof DirectFileUploadInput
65190
+ */
65191
+ _this.type = InputType_1.default.DIRECT_FILE_UPLOAD;
65192
+ if (!obj) {
65193
+ return _this;
65194
+ }
65195
+ return _this;
65196
+ }
65197
+ return DirectFileUploadInput;
65198
+ }(Input_1.default));
65199
+ exports.DirectFileUploadInput = DirectFileUploadInput;
65200
+ exports.default = DirectFileUploadInput;
65201
+
65202
+
65122
65203
  /***/ }),
65123
65204
 
65124
65205
  /***/ "./models/DisplayAspectRatio.ts":
@@ -71491,7 +71572,8 @@ var Input = /** @class */ (function (_super) {
71491
71572
  UDP_MULTICAST: 'UdpMulticastInput',
71492
71573
  ZIXI: 'ZixiInput',
71493
71574
  SRT: 'SrtInput',
71494
- GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput'
71575
+ GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput',
71576
+ DIRECT_FILE_UPLOAD: 'DirectFileUploadInput'
71495
71577
  };
71496
71578
  return Input;
71497
71579
  }(BitmovinResource_1.default));
@@ -71862,6 +71944,7 @@ var InputType;
71862
71944
  InputType["ZIXI"] = "ZIXI";
71863
71945
  InputType["SRT"] = "SRT";
71864
71946
  InputType["GCS_SERVICE_ACCOUNT"] = "GCS_SERVICE_ACCOUNT";
71947
+ InputType["DIRECT_FILE_UPLOAD"] = "DIRECT_FILE_UPLOAD";
71865
71948
  })(InputType = exports.InputType || (exports.InputType = {}));
71866
71949
  exports.default = InputType;
71867
71950
 
@@ -78935,6 +79018,7 @@ var SimpleEncodingVodJobResponse = /** @class */ (function () {
78935
79018
  }
78936
79019
  this.id = Mapper_1.map(obj.id);
78937
79020
  this.status = Mapper_1.map(obj.status);
79021
+ this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
78938
79022
  this.encodingId = Mapper_1.map(obj.encodingId);
78939
79023
  this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
78940
79024
  this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobUrlOutput_1.default);
@@ -84604,6 +84688,7 @@ __exportStar(__webpack_require__(/*! ./AudioVolumeUnit */ "./models/AudioVolumeU
84604
84688
  __exportStar(__webpack_require__(/*! ./AutoRepresentation */ "./models/AutoRepresentation.ts"), exports);
84605
84689
  __exportStar(__webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts"), exports);
84606
84690
  __exportStar(__webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts"), exports);
84691
+ __exportStar(__webpack_require__(/*! ./Av1PresetConfiguration */ "./models/Av1PresetConfiguration.ts"), exports);
84607
84692
  __exportStar(__webpack_require__(/*! ./Av1VideoConfiguration */ "./models/Av1VideoConfiguration.ts"), exports);
84608
84693
  __exportStar(__webpack_require__(/*! ./AvailabilityStartTimeMode */ "./models/AvailabilityStartTimeMode.ts"), exports);
84609
84694
  __exportStar(__webpack_require__(/*! ./AwsAccount */ "./models/AwsAccount.ts"), exports);
@@ -84717,6 +84802,7 @@ __exportStar(__webpack_require__(/*! ./DeinterlaceFilter */ "./models/Deinterlac
84717
84802
  __exportStar(__webpack_require__(/*! ./DeinterlaceFrameSelectionMode */ "./models/DeinterlaceFrameSelectionMode.ts"), exports);
84718
84803
  __exportStar(__webpack_require__(/*! ./DeinterlaceMode */ "./models/DeinterlaceMode.ts"), exports);
84719
84804
  __exportStar(__webpack_require__(/*! ./DenoiseHqdn3dFilter */ "./models/DenoiseHqdn3dFilter.ts"), exports);
84805
+ __exportStar(__webpack_require__(/*! ./DirectFileUploadInput */ "./models/DirectFileUploadInput.ts"), exports);
84720
84806
  __exportStar(__webpack_require__(/*! ./DisplayAspectRatio */ "./models/DisplayAspectRatio.ts"), exports);
84721
84807
  __exportStar(__webpack_require__(/*! ./DolbyAtmosAudioConfiguration */ "./models/DolbyAtmosAudioConfiguration.ts"), exports);
84722
84808
  __exportStar(__webpack_require__(/*! ./DolbyAtmosDialogueIntelligence */ "./models/DolbyAtmosDialogueIntelligence.ts"), exports);