@bitmovin/api-sdk 1.268.0 → 1.269.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.268.0
34
+ npm install @bitmovin/api-sdk@1.269.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -6804,7 +6804,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6804
6804
  var headers = {
6805
6805
  'X-Api-Key': apiKey,
6806
6806
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6807
- 'X-Api-Client-Version': '1.268.0',
6807
+ 'X-Api-Client-Version': '1.269.0',
6808
6808
  'Content-Type': 'application/json'
6809
6809
  };
6810
6810
  if (tenantOrgId) {
@@ -57164,6 +57164,7 @@ var AccountInformation = /** @class */ (function (_super) {
57164
57164
  _this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
57165
57165
  _this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
57166
57166
  _this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
57167
+ _this.tosAccepted = (0, Mapper_1.map)(obj.tosAccepted);
57167
57168
  return _this;
57168
57169
  }
57169
57170
  return AccountInformation;
@@ -57476,6 +57477,7 @@ var AdAnalyticsAttribute;
57476
57477
  AdAnalyticsAttribute["HOUR"] = "HOUR";
57477
57478
  AdAnalyticsAttribute["IP_ADDRESS"] = "IP_ADDRESS";
57478
57479
  AdAnalyticsAttribute["IS_LINEAR"] = "IS_LINEAR";
57480
+ AdAnalyticsAttribute["IS_SLATE"] = "IS_SLATE";
57479
57481
  AdAnalyticsAttribute["ISP"] = "ISP";
57480
57482
  AdAnalyticsAttribute["LANGUAGE"] = "LANGUAGE";
57481
57483
  AdAnalyticsAttribute["LICENSE_KEY"] = "LICENSE_KEY";
@@ -64473,7 +64475,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
64473
64475
  exports.AzureServicePrincipal = void 0;
64474
64476
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
64475
64477
  /**
64476
- * Azure service principal credentials for Microsoft Entra ID authentication
64478
+ * Azure service principal credentials for Microsoft Entra ID authentication. This authentication method is usable from encoder version 2.273.0 onwards.
64477
64479
  * @export
64478
64480
  * @class AzureServicePrincipal
64479
64481
  */
@@ -78579,6 +78581,10 @@ var LiveEncodingHeartbeatIngest = /** @class */ (function () {
78579
78581
  this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveEncodingHeartbeatIngestPoint_1.default);
78580
78582
  this.streams = (0, Mapper_1.mapArray)(obj.streams, LiveEncodingHeartbeatIngestStream_1.default);
78581
78583
  this.rtmpUserIngestInfo = (0, Mapper_1.map)(obj.rtmpUserIngestInfo, RtmpUserIngestInfo_1.default);
78584
+ this.droppedPacketsVideo = (0, Mapper_1.map)(obj.droppedPacketsVideo);
78585
+ this.droppedPacketsAudio = (0, Mapper_1.map)(obj.droppedPacketsAudio);
78586
+ this.corruptPacketsVideo = (0, Mapper_1.map)(obj.corruptPacketsVideo);
78587
+ this.corruptPacketsAudio = (0, Mapper_1.map)(obj.corruptPacketsAudio);
78582
78588
  }
78583
78589
  return LiveEncodingHeartbeatIngest;
78584
78590
  }());