@bitmovin/api-sdk 1.267.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.
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
240
240
  var headers = {
241
241
  'X-Api-Key': apiKey,
242
242
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
243
- 'X-Api-Client-Version': '1.267.0',
243
+ 'X-Api-Client-Version': '1.269.0',
244
244
  'Content-Type': 'application/json'
245
245
  };
246
246
  if (tenantOrgId) {
@@ -68,6 +68,12 @@ export declare class AccountInformation extends BitmovinResource {
68
68
  * @memberof AccountInformation
69
69
  */
70
70
  samlDomain?: string;
71
+ /**
72
+ * Whether the user has accepted the Terms of Service. Users created via SAML SSO start as `false` because the SAML flow bypasses the registration form that normally captures TOS acceptance; all other signup paths default to `true`. Acceptance is one-way: sending `true` accepts the TOS, sending `false` is ignored.
73
+ * @type {boolean}
74
+ * @memberof AccountInformation
75
+ */
76
+ tosAccepted?: boolean;
71
77
  constructor(obj?: Partial<AccountInformation>);
72
78
  }
73
79
  export default AccountInformation;
@@ -41,6 +41,7 @@ var AccountInformation = /** @class */ (function (_super) {
41
41
  _this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
42
42
  _this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
43
43
  _this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
44
+ _this.tosAccepted = (0, Mapper_1.map)(obj.tosAccepted);
44
45
  return _this;
45
46
  }
46
47
  return AccountInformation;
@@ -141,6 +141,7 @@ export declare enum AdAnalyticsAttribute {
141
141
  HOUR = "HOUR",
142
142
  IP_ADDRESS = "IP_ADDRESS",
143
143
  IS_LINEAR = "IS_LINEAR",
144
+ IS_SLATE = "IS_SLATE",
144
145
  ISP = "ISP",
145
146
  LANGUAGE = "LANGUAGE",
146
147
  LICENSE_KEY = "LICENSE_KEY",
@@ -145,6 +145,7 @@ var AdAnalyticsAttribute;
145
145
  AdAnalyticsAttribute["HOUR"] = "HOUR";
146
146
  AdAnalyticsAttribute["IP_ADDRESS"] = "IP_ADDRESS";
147
147
  AdAnalyticsAttribute["IS_LINEAR"] = "IS_LINEAR";
148
+ AdAnalyticsAttribute["IS_SLATE"] = "IS_SLATE";
148
149
  AdAnalyticsAttribute["ISP"] = "ISP";
149
150
  AdAnalyticsAttribute["LANGUAGE"] = "LANGUAGE";
150
151
  AdAnalyticsAttribute["LICENSE_KEY"] = "LICENSE_KEY";
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Azure service principal credentials for Microsoft Entra ID authentication
2
+ * Azure service principal credentials for Microsoft Entra ID authentication. This authentication method is usable from encoder version 2.273.0 onwards.
3
3
  * @export
4
4
  * @class AzureServicePrincipal
5
5
  */
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AzureServicePrincipal = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
5
  /**
6
- * Azure service principal credentials for Microsoft Entra ID authentication
6
+ * Azure service principal credentials for Microsoft Entra ID authentication. This authentication method is usable from encoder version 2.273.0 onwards.
7
7
  * @export
8
8
  * @class AzureServicePrincipal
9
9
  */
@@ -36,6 +36,30 @@ export declare class LiveEncodingHeartbeatIngest {
36
36
  * @memberof LiveEncodingHeartbeatIngest
37
37
  */
38
38
  rtmpUserIngestInfo?: RtmpUserIngestInfo;
39
+ /**
40
+ * Total number of dropped video packets since the live encoding started.
41
+ * @type {number}
42
+ * @memberof LiveEncodingHeartbeatIngest
43
+ */
44
+ droppedPacketsVideo?: number;
45
+ /**
46
+ * Total number of dropped audio packets since the live encoding started.
47
+ * @type {number}
48
+ * @memberof LiveEncodingHeartbeatIngest
49
+ */
50
+ droppedPacketsAudio?: number;
51
+ /**
52
+ * Total number of corrupt video packets since the live encoding started.
53
+ * @type {number}
54
+ * @memberof LiveEncodingHeartbeatIngest
55
+ */
56
+ corruptPacketsVideo?: number;
57
+ /**
58
+ * Total number of corrupt audio packets since the live encoding started.
59
+ * @type {number}
60
+ * @memberof LiveEncodingHeartbeatIngest
61
+ */
62
+ corruptPacketsAudio?: number;
39
63
  constructor(obj?: Partial<LiveEncodingHeartbeatIngest>);
40
64
  }
41
65
  export default LiveEncodingHeartbeatIngest;
@@ -20,6 +20,10 @@ var LiveEncodingHeartbeatIngest = /** @class */ (function () {
20
20
  this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveEncodingHeartbeatIngestPoint_1.default);
21
21
  this.streams = (0, Mapper_1.mapArray)(obj.streams, LiveEncodingHeartbeatIngestStream_1.default);
22
22
  this.rtmpUserIngestInfo = (0, Mapper_1.map)(obj.rtmpUserIngestInfo, RtmpUserIngestInfo_1.default);
23
+ this.droppedPacketsVideo = (0, Mapper_1.map)(obj.droppedPacketsVideo);
24
+ this.droppedPacketsAudio = (0, Mapper_1.map)(obj.droppedPacketsAudio);
25
+ this.corruptPacketsVideo = (0, Mapper_1.map)(obj.corruptPacketsVideo);
26
+ this.corruptPacketsAudio = (0, Mapper_1.map)(obj.corruptPacketsAudio);
23
27
  }
24
28
  return LiveEncodingHeartbeatIngest;
25
29
  }());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.267.0",
3
+ "version": "1.269.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [