@bitmovin/api-sdk 1.251.0 → 1.252.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.
Files changed (33) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +357 -3
  3. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  4. package/dist/common/RestClient.js +1 -1
  5. package/dist/encoding/encodings/live/LiveApi.d.ts +2 -0
  6. package/dist/encoding/encodings/live/LiveApi.js +2 -0
  7. package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.d.ts +19 -0
  8. package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.js +48 -0
  9. package/dist/models/DashManifest.d.ts +6 -0
  10. package/dist/models/DashManifest.js +1 -0
  11. package/dist/models/LiveEncodingEventName.d.ts +4 -1
  12. package/dist/models/LiveEncodingEventName.js +3 -0
  13. package/dist/models/LiveEncodingHeartbeat.d.ts +29 -0
  14. package/dist/models/LiveEncodingHeartbeat.js +24 -0
  15. package/dist/models/LiveEncodingHeartbeatEvent.d.ts +20 -0
  16. package/dist/models/LiveEncodingHeartbeatEvent.js +21 -0
  17. package/dist/models/LiveEncodingHeartbeatEventDetails.d.ts +20 -0
  18. package/dist/models/LiveEncodingHeartbeatEventDetails.js +20 -0
  19. package/dist/models/LiveEncodingHeartbeatEventType.d.ts +12 -0
  20. package/dist/models/LiveEncodingHeartbeatEventType.js +16 -0
  21. package/dist/models/LiveEncodingHeartbeatIngest.d.ts +41 -0
  22. package/dist/models/LiveEncodingHeartbeatIngest.js +27 -0
  23. package/dist/models/LiveEncodingHeartbeatIngestPoint.d.ts +39 -0
  24. package/dist/models/LiveEncodingHeartbeatIngestPoint.js +24 -0
  25. package/dist/models/LiveEncodingHeartbeatIngestStream.d.ts +117 -0
  26. package/dist/models/LiveEncodingHeartbeatIngestStream.js +37 -0
  27. package/dist/models/LiveEncodingStatsEventDetails.d.ts +3 -9
  28. package/dist/models/LiveEncodingStatsEventDetails.js +1 -2
  29. package/dist/models/RtmpUserIngestInfo.d.ts +45 -0
  30. package/dist/models/RtmpUserIngestInfo.js +25 -0
  31. package/dist/models/index.d.ts +8 -0
  32. package/dist/models/index.js +8 -0
  33. package/package.json +1 -1
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.251.0
34
+ npm install @bitmovin/api-sdk@1.252.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -7218,7 +7218,7 @@ var HeaderHandler = /** @class */ (function (_super) {
7218
7218
  var headers = {
7219
7219
  'X-Api-Key': apiKey,
7220
7220
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
7221
- 'X-Api-Client-Version': '1.251.0',
7221
+ 'X-Api-Client-Version': '1.252.0',
7222
7222
  'Content-Type': 'application/json'
7223
7223
  };
7224
7224
  if (tenantOrgId) {
@@ -16907,6 +16907,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
16907
16907
  var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
16908
16908
  var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
16909
16909
  var ResetLiveManifestTimeshiftApi_1 = __webpack_require__(/*! ./resetLiveManifestTimeshift/ResetLiveManifestTimeshiftApi */ "./encoding/encodings/live/resetLiveManifestTimeshift/ResetLiveManifestTimeshiftApi.ts");
16910
+ var HeartbeatApi_1 = __webpack_require__(/*! ./heartbeat/HeartbeatApi */ "./encoding/encodings/live/heartbeat/HeartbeatApi.ts");
16910
16911
  var HdApi_1 = __webpack_require__(/*! ./hd/HdApi */ "./encoding/encodings/live/hd/HdApi.ts");
16911
16912
  var InsertableContentApi_1 = __webpack_require__(/*! ./insertableContent/InsertableContentApi */ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts");
16912
16913
  var Scte35CueApi_1 = __webpack_require__(/*! ./scte35Cue/Scte35CueApi */ "./encoding/encodings/live/scte35Cue/Scte35CueApi.ts");
@@ -16924,6 +16925,7 @@ var LiveApi = /** @class */ (function (_super) {
16924
16925
  function LiveApi(configuration) {
16925
16926
  var _this = _super.call(this, configuration) || this;
16926
16927
  _this.resetLiveManifestTimeshift = new ResetLiveManifestTimeshiftApi_1.default(configuration);
16928
+ _this.heartbeat = new HeartbeatApi_1.default(configuration);
16927
16929
  _this.hd = new HdApi_1.default(configuration);
16928
16930
  _this.insertableContent = new InsertableContentApi_1.default(configuration);
16929
16931
  _this.scte35Cue = new Scte35CueApi_1.default(configuration);
@@ -17080,6 +17082,65 @@ var HdApi = /** @class */ (function (_super) {
17080
17082
  exports["default"] = HdApi;
17081
17083
 
17082
17084
 
17085
+ /***/ }),
17086
+
17087
+ /***/ "./encoding/encodings/live/heartbeat/HeartbeatApi.ts":
17088
+ /*!***********************************************************!*\
17089
+ !*** ./encoding/encodings/live/heartbeat/HeartbeatApi.ts ***!
17090
+ \***********************************************************/
17091
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
17092
+
17093
+ "use strict";
17094
+
17095
+ var __extends = (this && this.__extends) || (function () {
17096
+ var extendStatics = function (d, b) {
17097
+ extendStatics = Object.setPrototypeOf ||
17098
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
17099
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
17100
+ return extendStatics(d, b);
17101
+ };
17102
+ return function (d, b) {
17103
+ if (typeof b !== "function" && b !== null)
17104
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
17105
+ extendStatics(d, b);
17106
+ function __() { this.constructor = d; }
17107
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
17108
+ };
17109
+ })();
17110
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
17111
+ var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
17112
+ var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
17113
+ var LiveEncodingHeartbeat_1 = __webpack_require__(/*! ../../../../models/LiveEncodingHeartbeat */ "./models/LiveEncodingHeartbeat.ts");
17114
+ /**
17115
+ * HeartbeatApi - object-oriented interface
17116
+ * @export
17117
+ * @class HeartbeatApi
17118
+ * @extends {BaseAPI}
17119
+ */
17120
+ var HeartbeatApi = /** @class */ (function (_super) {
17121
+ __extends(HeartbeatApi, _super);
17122
+ function HeartbeatApi(configuration) {
17123
+ return _super.call(this, configuration) || this;
17124
+ }
17125
+ /**
17126
+ * @summary Live Encoding Heartbeat
17127
+ * @param {string} encodingId Id of the encoding.
17128
+ * @throws {BitmovinError}
17129
+ * @memberof HeartbeatApi
17130
+ */
17131
+ HeartbeatApi.prototype.get = function (encodingId) {
17132
+ var pathParamMap = {
17133
+ encoding_id: encodingId
17134
+ };
17135
+ return this.restClient.get('/encoding/encodings/{encoding_id}/live/heartbeat', pathParamMap).then(function (response) {
17136
+ return (0, Mapper_1.map)(response, LiveEncodingHeartbeat_1.default);
17137
+ });
17138
+ };
17139
+ return HeartbeatApi;
17140
+ }(BaseAPI_1.BaseAPI));
17141
+ exports["default"] = HeartbeatApi;
17142
+
17143
+
17083
17144
  /***/ }),
17084
17145
 
17085
17146
  /***/ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts":
@@ -67881,6 +67942,7 @@ var DashManifest = /** @class */ (function (_super) {
67881
67942
  _this.utcTimings = (0, Mapper_1.mapArray)(obj.utcTimings, UtcTiming_1.default);
67882
67943
  _this.dashEditionCompatibility = (0, Mapper_1.map)(obj.dashEditionCompatibility);
67883
67944
  _this.iso8601TimestampFormat = (0, Mapper_1.map)(obj.iso8601TimestampFormat);
67945
+ _this.minBufferTime = (0, Mapper_1.map)(obj.minBufferTime);
67884
67946
  return _this;
67885
67947
  }
67886
67948
  return DashManifest;
@@ -77160,10 +77222,259 @@ var LiveEncodingEventName;
77160
77222
  LiveEncodingEventName["RESYNCING"] = "RESYNCING";
77161
77223
  LiveEncodingEventName["IDLE"] = "IDLE";
77162
77224
  LiveEncodingEventName["ERROR"] = "ERROR";
77225
+ LiveEncodingEventName["WARNING"] = "WARNING";
77226
+ LiveEncodingEventName["PICTURE_TIMING"] = "PICTURE_TIMING";
77227
+ LiveEncodingEventName["INFO"] = "INFO";
77163
77228
  })(LiveEncodingEventName || (exports.LiveEncodingEventName = LiveEncodingEventName = {}));
77164
77229
  exports["default"] = LiveEncodingEventName;
77165
77230
 
77166
77231
 
77232
+ /***/ }),
77233
+
77234
+ /***/ "./models/LiveEncodingHeartbeat.ts":
77235
+ /*!*****************************************!*\
77236
+ !*** ./models/LiveEncodingHeartbeat.ts ***!
77237
+ \*****************************************/
77238
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77239
+
77240
+ "use strict";
77241
+
77242
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77243
+ exports.LiveEncodingHeartbeat = void 0;
77244
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77245
+ var LiveEncodingHeartbeatEvent_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatEvent */ "./models/LiveEncodingHeartbeatEvent.ts");
77246
+ var LiveEncodingHeartbeatIngest_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngest */ "./models/LiveEncodingHeartbeatIngest.ts");
77247
+ /**
77248
+ * Heartbeat data for a Live Encoding.
77249
+ * @export
77250
+ * @class LiveEncodingHeartbeat
77251
+ */
77252
+ var LiveEncodingHeartbeat = /** @class */ (function () {
77253
+ function LiveEncodingHeartbeat(obj) {
77254
+ if (!obj) {
77255
+ return;
77256
+ }
77257
+ this.timestamp = (0, Mapper_1.map)(obj.timestamp, Date);
77258
+ this.ingest = (0, Mapper_1.map)(obj.ingest, LiveEncodingHeartbeatIngest_1.default);
77259
+ this.events = (0, Mapper_1.mapArray)(obj.events, LiveEncodingHeartbeatEvent_1.default);
77260
+ }
77261
+ return LiveEncodingHeartbeat;
77262
+ }());
77263
+ exports.LiveEncodingHeartbeat = LiveEncodingHeartbeat;
77264
+ exports["default"] = LiveEncodingHeartbeat;
77265
+
77266
+
77267
+ /***/ }),
77268
+
77269
+ /***/ "./models/LiveEncodingHeartbeatEvent.ts":
77270
+ /*!**********************************************!*\
77271
+ !*** ./models/LiveEncodingHeartbeatEvent.ts ***!
77272
+ \**********************************************/
77273
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77274
+
77275
+ "use strict";
77276
+
77277
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77278
+ exports.LiveEncodingHeartbeatEvent = void 0;
77279
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77280
+ var LiveEncodingHeartbeatEventDetails_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatEventDetails */ "./models/LiveEncodingHeartbeatEventDetails.ts");
77281
+ /**
77282
+ * @export
77283
+ * @class LiveEncodingHeartbeatEvent
77284
+ */
77285
+ var LiveEncodingHeartbeatEvent = /** @class */ (function () {
77286
+ function LiveEncodingHeartbeatEvent(obj) {
77287
+ if (!obj) {
77288
+ return;
77289
+ }
77290
+ this.time = (0, Mapper_1.map)(obj.time, Date);
77291
+ this.details = (0, Mapper_1.map)(obj.details, LiveEncodingHeartbeatEventDetails_1.default);
77292
+ }
77293
+ return LiveEncodingHeartbeatEvent;
77294
+ }());
77295
+ exports.LiveEncodingHeartbeatEvent = LiveEncodingHeartbeatEvent;
77296
+ exports["default"] = LiveEncodingHeartbeatEvent;
77297
+
77298
+
77299
+ /***/ }),
77300
+
77301
+ /***/ "./models/LiveEncodingHeartbeatEventDetails.ts":
77302
+ /*!*****************************************************!*\
77303
+ !*** ./models/LiveEncodingHeartbeatEventDetails.ts ***!
77304
+ \*****************************************************/
77305
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77306
+
77307
+ "use strict";
77308
+
77309
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77310
+ exports.LiveEncodingHeartbeatEventDetails = void 0;
77311
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77312
+ /**
77313
+ * @export
77314
+ * @class LiveEncodingHeartbeatEventDetails
77315
+ */
77316
+ var LiveEncodingHeartbeatEventDetails = /** @class */ (function () {
77317
+ function LiveEncodingHeartbeatEventDetails(obj) {
77318
+ if (!obj) {
77319
+ return;
77320
+ }
77321
+ this.eventType = (0, Mapper_1.map)(obj.eventType);
77322
+ this.message = (0, Mapper_1.map)(obj.message);
77323
+ }
77324
+ return LiveEncodingHeartbeatEventDetails;
77325
+ }());
77326
+ exports.LiveEncodingHeartbeatEventDetails = LiveEncodingHeartbeatEventDetails;
77327
+ exports["default"] = LiveEncodingHeartbeatEventDetails;
77328
+
77329
+
77330
+ /***/ }),
77331
+
77332
+ /***/ "./models/LiveEncodingHeartbeatEventType.ts":
77333
+ /*!**************************************************!*\
77334
+ !*** ./models/LiveEncodingHeartbeatEventType.ts ***!
77335
+ \**************************************************/
77336
+ /***/ ((__unused_webpack_module, exports) => {
77337
+
77338
+ "use strict";
77339
+
77340
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77341
+ exports.LiveEncodingHeartbeatEventType = void 0;
77342
+ /**
77343
+ * @export
77344
+ * @enum {string}
77345
+ */
77346
+ var LiveEncodingHeartbeatEventType;
77347
+ (function (LiveEncodingHeartbeatEventType) {
77348
+ LiveEncodingHeartbeatEventType["FIRST_CONNECT"] = "FIRST_CONNECT";
77349
+ LiveEncodingHeartbeatEventType["DISCONNECT"] = "DISCONNECT";
77350
+ LiveEncodingHeartbeatEventType["RECONNECT"] = "RECONNECT";
77351
+ LiveEncodingHeartbeatEventType["WARNING"] = "WARNING";
77352
+ LiveEncodingHeartbeatEventType["ERROR"] = "ERROR";
77353
+ })(LiveEncodingHeartbeatEventType || (exports.LiveEncodingHeartbeatEventType = LiveEncodingHeartbeatEventType = {}));
77354
+ exports["default"] = LiveEncodingHeartbeatEventType;
77355
+
77356
+
77357
+ /***/ }),
77358
+
77359
+ /***/ "./models/LiveEncodingHeartbeatIngest.ts":
77360
+ /*!***********************************************!*\
77361
+ !*** ./models/LiveEncodingHeartbeatIngest.ts ***!
77362
+ \***********************************************/
77363
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77364
+
77365
+ "use strict";
77366
+
77367
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77368
+ exports.LiveEncodingHeartbeatIngest = void 0;
77369
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77370
+ var LiveEncodingHeartbeatIngestPoint_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngestPoint */ "./models/LiveEncodingHeartbeatIngestPoint.ts");
77371
+ var LiveEncodingHeartbeatIngestStream_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngestStream */ "./models/LiveEncodingHeartbeatIngestStream.ts");
77372
+ var RtmpUserIngestInfo_1 = __webpack_require__(/*! ./RtmpUserIngestInfo */ "./models/RtmpUserIngestInfo.ts");
77373
+ /**
77374
+ * Information about the live ingestion status
77375
+ * @export
77376
+ * @class LiveEncodingHeartbeatIngest
77377
+ */
77378
+ var LiveEncodingHeartbeatIngest = /** @class */ (function () {
77379
+ function LiveEncodingHeartbeatIngest(obj) {
77380
+ if (!obj) {
77381
+ return;
77382
+ }
77383
+ this.status = (0, Mapper_1.map)(obj.status);
77384
+ this.healthy = (0, Mapper_1.map)(obj.healthy);
77385
+ this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveEncodingHeartbeatIngestPoint_1.default);
77386
+ this.streams = (0, Mapper_1.mapArray)(obj.streams, LiveEncodingHeartbeatIngestStream_1.default);
77387
+ this.rtmpUserIngestInfo = (0, Mapper_1.map)(obj.rtmpUserIngestInfo, RtmpUserIngestInfo_1.default);
77388
+ }
77389
+ return LiveEncodingHeartbeatIngest;
77390
+ }());
77391
+ exports.LiveEncodingHeartbeatIngest = LiveEncodingHeartbeatIngest;
77392
+ exports["default"] = LiveEncodingHeartbeatIngest;
77393
+
77394
+
77395
+ /***/ }),
77396
+
77397
+ /***/ "./models/LiveEncodingHeartbeatIngestPoint.ts":
77398
+ /*!****************************************************!*\
77399
+ !*** ./models/LiveEncodingHeartbeatIngestPoint.ts ***!
77400
+ \****************************************************/
77401
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77402
+
77403
+ "use strict";
77404
+
77405
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77406
+ exports.LiveEncodingHeartbeatIngestPoint = void 0;
77407
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77408
+ /**
77409
+ * Details about an individual ingestPoint within the live ingest.
77410
+ * @export
77411
+ * @class LiveEncodingHeartbeatIngestPoint
77412
+ */
77413
+ var LiveEncodingHeartbeatIngestPoint = /** @class */ (function () {
77414
+ function LiveEncodingHeartbeatIngestPoint(obj) {
77415
+ if (!obj) {
77416
+ return;
77417
+ }
77418
+ this.name = (0, Mapper_1.map)(obj.name);
77419
+ this.inputId = (0, Mapper_1.map)(obj.inputId);
77420
+ this.inputType = (0, Mapper_1.map)(obj.inputType);
77421
+ this.isActive = (0, Mapper_1.map)(obj.isActive);
77422
+ this.isBackup = (0, Mapper_1.map)(obj.isBackup);
77423
+ }
77424
+ return LiveEncodingHeartbeatIngestPoint;
77425
+ }());
77426
+ exports.LiveEncodingHeartbeatIngestPoint = LiveEncodingHeartbeatIngestPoint;
77427
+ exports["default"] = LiveEncodingHeartbeatIngestPoint;
77428
+
77429
+
77430
+ /***/ }),
77431
+
77432
+ /***/ "./models/LiveEncodingHeartbeatIngestStream.ts":
77433
+ /*!*****************************************************!*\
77434
+ !*** ./models/LiveEncodingHeartbeatIngestStream.ts ***!
77435
+ \*****************************************************/
77436
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
77437
+
77438
+ "use strict";
77439
+
77440
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
77441
+ exports.LiveEncodingHeartbeatIngestStream = void 0;
77442
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
77443
+ /**
77444
+ * Details about an individual stream within the live ingest.
77445
+ * @export
77446
+ * @class LiveEncodingHeartbeatIngestStream
77447
+ */
77448
+ var LiveEncodingHeartbeatIngestStream = /** @class */ (function () {
77449
+ function LiveEncodingHeartbeatIngestStream(obj) {
77450
+ if (!obj) {
77451
+ return;
77452
+ }
77453
+ this.streamId = (0, Mapper_1.map)(obj.streamId);
77454
+ this.mediaType = (0, Mapper_1.map)(obj.mediaType);
77455
+ this.width = (0, Mapper_1.map)(obj.width);
77456
+ this.height = (0, Mapper_1.map)(obj.height);
77457
+ this.rate = (0, Mapper_1.map)(obj.rate);
77458
+ this.codec = (0, Mapper_1.map)(obj.codec);
77459
+ this.aspectRatio = (0, Mapper_1.map)(obj.aspectRatio);
77460
+ this.bitrate = (0, Mapper_1.map)(obj.bitrate);
77461
+ this.samplesReadPerSecondAvg = (0, Mapper_1.map)(obj.samplesReadPerSecondAvg);
77462
+ this.incomingBitrate = (0, Mapper_1.map)(obj.incomingBitrate);
77463
+ this.keyFrameIntervalMax = (0, Mapper_1.map)(obj.keyFrameIntervalMax);
77464
+ this.keyFrameIntervalAvg = (0, Mapper_1.map)(obj.keyFrameIntervalAvg);
77465
+ this.lastTimestamp = (0, Mapper_1.map)(obj.lastTimestamp);
77466
+ this.lastTimestampTimescale = (0, Mapper_1.map)(obj.lastTimestampTimescale);
77467
+ this.numberOfAudioChannels = (0, Mapper_1.map)(obj.numberOfAudioChannels);
77468
+ this.audioChannelFormat = (0, Mapper_1.map)(obj.audioChannelFormat);
77469
+ this.lastArrivalTime = (0, Mapper_1.map)(obj.lastArrivalTime, Date);
77470
+ this.healthy = (0, Mapper_1.map)(obj.healthy);
77471
+ }
77472
+ return LiveEncodingHeartbeatIngestStream;
77473
+ }());
77474
+ exports.LiveEncodingHeartbeatIngestStream = LiveEncodingHeartbeatIngestStream;
77475
+ exports["default"] = LiveEncodingHeartbeatIngestStream;
77476
+
77477
+
77167
77478
  /***/ }),
77168
77479
 
77169
77480
  /***/ "./models/LiveEncodingHeartbeatWebhook.ts":
@@ -77335,8 +77646,7 @@ var LiveEncodingStatsEventDetails = /** @class */ (function () {
77335
77646
  }
77336
77647
  this.eventType = (0, Mapper_1.map)(obj.eventType);
77337
77648
  this.message = (0, Mapper_1.map)(obj.message);
77338
- this.midRollAssetNames = (0, Mapper_1.mapArray)(obj.midRollAssetNames);
77339
- this.durationInSeconds = (0, Mapper_1.map)(obj.durationInSeconds);
77649
+ this.additionalProperties = (0, Mapper_1.map)(obj.additionalProperties);
77340
77650
  }
77341
77651
  return LiveEncodingStatsEventDetails;
77342
77652
  }());
@@ -83410,6 +83720,42 @@ exports.RtmpInput = RtmpInput;
83410
83720
  exports["default"] = RtmpInput;
83411
83721
 
83412
83722
 
83723
+ /***/ }),
83724
+
83725
+ /***/ "./models/RtmpUserIngestInfo.ts":
83726
+ /*!**************************************!*\
83727
+ !*** ./models/RtmpUserIngestInfo.ts ***!
83728
+ \**************************************/
83729
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
83730
+
83731
+ "use strict";
83732
+
83733
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
83734
+ exports.RtmpUserIngestInfo = void 0;
83735
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
83736
+ /**
83737
+ * Details about user info from rtmp ingest.
83738
+ * @export
83739
+ * @class RtmpUserIngestInfo
83740
+ */
83741
+ var RtmpUserIngestInfo = /** @class */ (function () {
83742
+ function RtmpUserIngestInfo(obj) {
83743
+ if (!obj) {
83744
+ return;
83745
+ }
83746
+ this.address = (0, Mapper_1.map)(obj.address);
83747
+ this.app = (0, Mapper_1.map)(obj.app);
83748
+ this.streamKey = (0, Mapper_1.map)(obj.streamKey);
83749
+ this.flashVersion = (0, Mapper_1.map)(obj.flashVersion);
83750
+ this.clientId = (0, Mapper_1.map)(obj.clientId);
83751
+ this.eventType = (0, Mapper_1.map)(obj.eventType);
83752
+ }
83753
+ return RtmpUserIngestInfo;
83754
+ }());
83755
+ exports.RtmpUserIngestInfo = RtmpUserIngestInfo;
83756
+ exports["default"] = RtmpUserIngestInfo;
83757
+
83758
+
83413
83759
  /***/ }),
83414
83760
 
83415
83761
  /***/ "./models/S3AccessStyle.ts":
@@ -91628,6 +91974,13 @@ __exportStar(__webpack_require__(/*! ./LiveDashManifest */ "./models/LiveDashMan
91628
91974
  __exportStar(__webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts"), exports);
91629
91975
  __exportStar(__webpack_require__(/*! ./LiveEncodingCodec */ "./models/LiveEncodingCodec.ts"), exports);
91630
91976
  __exportStar(__webpack_require__(/*! ./LiveEncodingEventName */ "./models/LiveEncodingEventName.ts"), exports);
91977
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeat */ "./models/LiveEncodingHeartbeat.ts"), exports);
91978
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEvent */ "./models/LiveEncodingHeartbeatEvent.ts"), exports);
91979
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEventDetails */ "./models/LiveEncodingHeartbeatEventDetails.ts"), exports);
91980
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEventType */ "./models/LiveEncodingHeartbeatEventType.ts"), exports);
91981
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngest */ "./models/LiveEncodingHeartbeatIngest.ts"), exports);
91982
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngestPoint */ "./models/LiveEncodingHeartbeatIngestPoint.ts"), exports);
91983
+ __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngestStream */ "./models/LiveEncodingHeartbeatIngestStream.ts"), exports);
91631
91984
  __exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatWebhook */ "./models/LiveEncodingHeartbeatWebhook.ts"), exports);
91632
91985
  __exportStar(__webpack_require__(/*! ./LiveEncodingOptionsStatistics */ "./models/LiveEncodingOptionsStatistics.ts"), exports);
91633
91986
  __exportStar(__webpack_require__(/*! ./LiveEncodingStats */ "./models/LiveEncodingStats.ts"), exports);
@@ -91794,6 +92147,7 @@ __exportStar(__webpack_require__(/*! ./ReuploadSettings */ "./models/ReuploadSet
91794
92147
  __exportStar(__webpack_require__(/*! ./RotateFilter */ "./models/RotateFilter.ts"), exports);
91795
92148
  __exportStar(__webpack_require__(/*! ./RtmpIngestPoint */ "./models/RtmpIngestPoint.ts"), exports);
91796
92149
  __exportStar(__webpack_require__(/*! ./RtmpInput */ "./models/RtmpInput.ts"), exports);
92150
+ __exportStar(__webpack_require__(/*! ./RtmpUserIngestInfo */ "./models/RtmpUserIngestInfo.ts"), exports);
91797
92151
  __exportStar(__webpack_require__(/*! ./S3AccessStyle */ "./models/S3AccessStyle.ts"), exports);
91798
92152
  __exportStar(__webpack_require__(/*! ./S3Input */ "./models/S3Input.ts"), exports);
91799
92153
  __exportStar(__webpack_require__(/*! ./S3Output */ "./models/S3Output.ts"), exports);