@bitmovin/api-sdk 1.228.0 → 1.230.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.228.0
34
+ npm install @bitmovin/api-sdk@1.230.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -7030,7 +7030,7 @@ var HeaderHandler = /** @class */ (function (_super) {
7030
7030
  var headers = {
7031
7031
  'X-Api-Key': apiKey,
7032
7032
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
7033
- 'X-Api-Client-Version': '1.228.0',
7033
+ 'X-Api-Client-Version': '1.230.0',
7034
7034
  'Content-Type': 'application/json'
7035
7035
  };
7036
7036
  if (tenantOrgId) {
@@ -55822,7 +55822,7 @@ var TemplatesApi = /** @class */ (function (_super) {
55822
55822
  });
55823
55823
  };
55824
55824
  /**
55825
- * @summary BETA: Start an Encoding defined with an Encoding Template
55825
+ * @summary Start an Encoding defined with an Encoding Template
55826
55826
  * @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
55827
55827
  * @throws {BitmovinError}
55828
55828
  * @memberof TemplatesApi
@@ -56586,6 +56586,7 @@ var AccountInformation = /** @class */ (function (_super) {
56586
56586
  _this.marketplace = (0, Mapper_1.map)(obj.marketplace);
56587
56587
  _this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
56588
56588
  _this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
56589
+ _this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
56589
56590
  return _this;
56590
56591
  }
56591
56592
  return AccountInformation;
@@ -78200,6 +78201,37 @@ var MessageType;
78200
78201
  exports["default"] = MessageType;
78201
78202
 
78202
78203
 
78204
+ /***/ }),
78205
+
78206
+ /***/ "./models/Metadata.ts":
78207
+ /*!****************************!*\
78208
+ !*** ./models/Metadata.ts ***!
78209
+ \****************************/
78210
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
78211
+
78212
+ "use strict";
78213
+
78214
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
78215
+ exports.Metadata = void 0;
78216
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
78217
+ /**
78218
+ * @export
78219
+ * @class Metadata
78220
+ */
78221
+ var Metadata = /** @class */ (function () {
78222
+ function Metadata(obj) {
78223
+ if (!obj) {
78224
+ return;
78225
+ }
78226
+ this.version = (0, Mapper_1.map)(obj.version);
78227
+ this.disclaimer = (0, Mapper_1.map)(obj.disclaimer);
78228
+ }
78229
+ return Metadata;
78230
+ }());
78231
+ exports.Metadata = Metadata;
78232
+ exports["default"] = Metadata;
78233
+
78234
+
78203
78235
  /***/ }),
78204
78236
 
78205
78237
  /***/ "./models/MinCodingUnitSize.ts":
@@ -83276,6 +83308,7 @@ var Scene = /** @class */ (function () {
83276
83308
  if (!obj) {
83277
83309
  return;
83278
83310
  }
83311
+ this.title = (0, Mapper_1.map)(obj.title);
83279
83312
  this.startInSeconds = (0, Mapper_1.map)(obj.startInSeconds);
83280
83313
  this.endInSeconds = (0, Mapper_1.map)(obj.endInSeconds);
83281
83314
  this.id = (0, Mapper_1.map)(obj.id);
@@ -83304,6 +83337,7 @@ exports["default"] = Scene;
83304
83337
  Object.defineProperty(exports, "__esModule", ({ value: true }));
83305
83338
  exports.SceneAnalysisDetailsResponse = void 0;
83306
83339
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
83340
+ var Metadata_1 = __webpack_require__(/*! ./Metadata */ "./models/Metadata.ts");
83307
83341
  var Rating_1 = __webpack_require__(/*! ./Rating */ "./models/Rating.ts");
83308
83342
  var Scene_1 = __webpack_require__(/*! ./Scene */ "./models/Scene.ts");
83309
83343
  /**
@@ -83321,6 +83355,7 @@ var SceneAnalysisDetailsResponse = /** @class */ (function () {
83321
83355
  this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
83322
83356
  this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
83323
83357
  this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
83358
+ this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
83324
83359
  }
83325
83360
  return SceneAnalysisDetailsResponse;
83326
83361
  }());
@@ -90866,6 +90901,7 @@ __exportStar(__webpack_require__(/*! ./MediaStream */ "./models/MediaStream.ts")
90866
90901
  __exportStar(__webpack_require__(/*! ./MediaType */ "./models/MediaType.ts"), exports);
90867
90902
  __exportStar(__webpack_require__(/*! ./Message */ "./models/Message.ts"), exports);
90868
90903
  __exportStar(__webpack_require__(/*! ./MessageType */ "./models/MessageType.ts"), exports);
90904
+ __exportStar(__webpack_require__(/*! ./Metadata */ "./models/Metadata.ts"), exports);
90869
90905
  __exportStar(__webpack_require__(/*! ./MinCodingUnitSize */ "./models/MinCodingUnitSize.ts"), exports);
90870
90906
  __exportStar(__webpack_require__(/*! ./MjpegVideoConfiguration */ "./models/MjpegVideoConfiguration.ts"), exports);
90871
90907
  __exportStar(__webpack_require__(/*! ./MotionSearch */ "./models/MotionSearch.ts"), exports);