@bitmovin/api-sdk 1.185.0 → 1.186.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.185.0
34
+ npm install @bitmovin/api-sdk@1.186.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -6109,7 +6109,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6109
6109
  var headers = {
6110
6110
  'X-Api-Key': apiKey,
6111
6111
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6112
- 'X-Api-Client-Version': '1.185.0',
6112
+ 'X-Api-Client-Version': '1.186.0',
6113
6113
  'Content-Type': 'application/json'
6114
6114
  };
6115
6115
  if (tenantOrgId) {
@@ -57339,6 +57339,7 @@ var AnalyticsLicense = /** @class */ (function () {
57339
57339
  this.maxImpressions = (0, Mapper_1.map)(obj.maxImpressions);
57340
57340
  this.timeZone = (0, Mapper_1.map)(obj.timeZone);
57341
57341
  this.retentionTime = (0, Mapper_1.map)(obj.retentionTime);
57342
+ this.compressedRetentionTime = (0, Mapper_1.map)(obj.compressedRetentionTime);
57342
57343
  this.domains = (0, Mapper_1.mapArray)(obj.domains, AnalyticsLicenseDomain_1.default);
57343
57344
  this.includeInInsights = (0, Mapper_1.map)(obj.includeInInsights);
57344
57345
  this.customDataFieldLabels = (0, Mapper_1.map)(obj.customDataFieldLabels, AnalyticsLicenseCustomDataFieldLabels_1.default);
@@ -58495,6 +58496,7 @@ var AnalyticsVirtualLicense = /** @class */ (function () {
58495
58496
  this.name = (0, Mapper_1.map)(obj.name);
58496
58497
  this.timezone = (0, Mapper_1.map)(obj.timezone);
58497
58498
  this.retentionTime = (0, Mapper_1.map)(obj.retentionTime);
58499
+ this.compressedRetentionTime = (0, Mapper_1.map)(obj.compressedRetentionTime);
58498
58500
  this.licenses = (0, Mapper_1.mapArray)(obj.licenses, AnalyticsVirtualLicenseLicensesListItem_1.default);
58499
58501
  this.customDataFieldsCount = (0, Mapper_1.map)(obj.customDataFieldsCount);
58500
58502
  this.customDataFieldLabels = (0, Mapper_1.map)(obj.customDataFieldLabels, AnalyticsLicenseCustomDataFieldLabels_1.default);
@@ -62915,6 +62917,45 @@ exports.Condition = Condition;
62915
62917
  exports["default"] = Condition;
62916
62918
 
62917
62919
 
62920
+ /***/ }),
62921
+
62922
+ /***/ "./models/ConditionAttribute.ts":
62923
+ /*!**************************************!*\
62924
+ !*** ./models/ConditionAttribute.ts ***!
62925
+ \**************************************/
62926
+ /***/ ((__unused_webpack_module, exports) => {
62927
+
62928
+ "use strict";
62929
+
62930
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
62931
+ exports.ConditionAttribute = void 0;
62932
+ /**
62933
+ * The attribute that should be checked
62934
+ * @export
62935
+ * @enum {string}
62936
+ */
62937
+ var ConditionAttribute;
62938
+ (function (ConditionAttribute) {
62939
+ ConditionAttribute["HEIGHT"] = "HEIGHT";
62940
+ ConditionAttribute["WIDTH"] = "WIDTH";
62941
+ ConditionAttribute["BITRATE"] = "BITRATE";
62942
+ ConditionAttribute["FPS"] = "FPS";
62943
+ ConditionAttribute["ASPECTRATIO"] = "ASPECTRATIO";
62944
+ ConditionAttribute["INPUTSTREAM"] = "INPUTSTREAM";
62945
+ ConditionAttribute["LANGUAGE"] = "LANGUAGE";
62946
+ ConditionAttribute["CHANNELFORMAT"] = "CHANNELFORMAT";
62947
+ ConditionAttribute["CHANNELLAYOUT"] = "CHANNELLAYOUT";
62948
+ ConditionAttribute["STREAMCOUNT"] = "STREAMCOUNT";
62949
+ ConditionAttribute["AUDIOSTREAMCOUNT"] = "AUDIOSTREAMCOUNT";
62950
+ ConditionAttribute["VIDEOSTREAMCOUNT"] = "VIDEOSTREAMCOUNT";
62951
+ ConditionAttribute["DURATION"] = "DURATION";
62952
+ ConditionAttribute["ROTATION"] = "ROTATION";
62953
+ ConditionAttribute["CONNECTION_STATUS"] = "CONNECTION_STATUS";
62954
+ ConditionAttribute["CONNECTION_STATUS_JUST_CHANGED"] = "CONNECTION_STATUS_JUST_CHANGED";
62955
+ })(ConditionAttribute || (exports.ConditionAttribute = ConditionAttribute = {}));
62956
+ exports["default"] = ConditionAttribute;
62957
+
62958
+
62918
62959
  /***/ }),
62919
62960
 
62920
62961
  /***/ "./models/ConditionOperator.ts":
@@ -86537,6 +86578,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
86537
86578
  exports.WebhookNotification = void 0;
86538
86579
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
86539
86580
  var Notification_1 = __webpack_require__(/*! ./Notification */ "./models/Notification.ts");
86581
+ var WebhookSignature_1 = __webpack_require__(/*! ./WebhookSignature */ "./models/WebhookSignature.ts");
86540
86582
  /**
86541
86583
  * @export
86542
86584
  * @class WebhookNotification
@@ -86549,6 +86591,9 @@ var WebhookNotification = /** @class */ (function (_super) {
86549
86591
  return _this;
86550
86592
  }
86551
86593
  _this.url = (0, Mapper_1.map)(obj.url);
86594
+ _this.method = (0, Mapper_1.map)(obj.method);
86595
+ _this.insecureSsl = (0, Mapper_1.map)(obj.insecureSsl);
86596
+ _this.signature = (0, Mapper_1.map)(obj.signature, WebhookSignature_1.default);
86552
86597
  return _this;
86553
86598
  }
86554
86599
  return WebhookNotification;
@@ -87160,6 +87205,7 @@ __exportStar(__webpack_require__(/*! ./ColorTransfer */ "./models/ColorTransfer.
87160
87205
  __exportStar(__webpack_require__(/*! ./ConcatenationInputConfiguration */ "./models/ConcatenationInputConfiguration.ts"), exports);
87161
87206
  __exportStar(__webpack_require__(/*! ./ConcatenationInputStream */ "./models/ConcatenationInputStream.ts"), exports);
87162
87207
  __exportStar(__webpack_require__(/*! ./Condition */ "./models/Condition.ts"), exports);
87208
+ __exportStar(__webpack_require__(/*! ./ConditionAttribute */ "./models/ConditionAttribute.ts"), exports);
87163
87209
  __exportStar(__webpack_require__(/*! ./ConditionOperator */ "./models/ConditionOperator.ts"), exports);
87164
87210
  __exportStar(__webpack_require__(/*! ./ConditionType */ "./models/ConditionType.ts"), exports);
87165
87211
  __exportStar(__webpack_require__(/*! ./ConformFilter */ "./models/ConformFilter.ts"), exports);