@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 +1 -1
- package/dist/bitmovin-api-sdk.browser.js +8 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AccountInformation.d.ts +6 -0
- package/dist/models/AccountInformation.js +1 -0
- package/dist/models/AdAnalyticsAttribute.d.ts +1 -0
- package/dist/models/AdAnalyticsAttribute.js +1 -0
- package/dist/models/AzureServicePrincipal.d.ts +1 -1
- package/dist/models/AzureServicePrincipal.js +1 -1
- package/dist/models/LiveEncodingHeartbeatIngest.d.ts +24 -0
- package/dist/models/LiveEncodingHeartbeatIngest.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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.
|
|
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
|
}());
|