@bitmovin/api-sdk 1.167.0 → 1.168.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 (37) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +414 -1
  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/hd/HdApi.d.ts +19 -0
  8. package/dist/encoding/encodings/live/hd/HdApi.js +48 -0
  9. package/dist/encoding/statistics/encodings/live/LiveApi.d.ts +2 -0
  10. package/dist/encoding/statistics/encodings/live/LiveApi.js +2 -0
  11. package/dist/encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.d.ts +50 -0
  12. package/dist/encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.js +45 -0
  13. package/dist/encoding/statistics/encodings/live/options/OptionsApi.d.ts +28 -0
  14. package/dist/encoding/statistics/encodings/live/options/OptionsApi.js +68 -0
  15. package/dist/models/AdAnalyticsAttribute.d.ts +1 -0
  16. package/dist/models/AdAnalyticsAttribute.js +1 -0
  17. package/dist/models/AnalyticsAdsImpressionSample.d.ts +6 -0
  18. package/dist/models/AnalyticsAdsImpressionSample.js +1 -0
  19. package/dist/models/AnalyticsAttribute.d.ts +1 -0
  20. package/dist/models/AnalyticsAttribute.js +1 -0
  21. package/dist/models/AnalyticsImpressionSample.d.ts +6 -0
  22. package/dist/models/AnalyticsImpressionSample.js +1 -0
  23. package/dist/models/LiveEncodingOptionsStatistics.d.ts +26 -0
  24. package/dist/models/LiveEncodingOptionsStatistics.js +21 -0
  25. package/dist/models/LiveOptionsBreakdownEntry.d.ts +20 -0
  26. package/dist/models/LiveOptionsBreakdownEntry.js +21 -0
  27. package/dist/models/LiveOptionsEntry.d.ts +14 -0
  28. package/dist/models/LiveOptionsEntry.js +19 -0
  29. package/dist/models/LiveOptionsStatistics.d.ts +21 -0
  30. package/dist/models/LiveOptionsStatistics.js +22 -0
  31. package/dist/models/LiveOptionsSummary.d.ts +14 -0
  32. package/dist/models/LiveOptionsSummary.js +20 -0
  33. package/dist/models/StartLiveChannelEncodingRequest.d.ts +9 -0
  34. package/dist/models/StartLiveChannelEncodingRequest.js +36 -0
  35. package/dist/models/index.d.ts +6 -0
  36. package/dist/models/index.js +6 -0
  37. 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.167.0
34
+ npm install @bitmovin/api-sdk@1.168.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -5987,7 +5987,7 @@ var HeaderHandler = /** @class */ (function (_super) {
5987
5987
  var headers = {
5988
5988
  'X-Api-Key': apiKey,
5989
5989
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
5990
- 'X-Api-Client-Version': '1.167.0',
5990
+ 'X-Api-Client-Version': '1.168.0',
5991
5991
  'Content-Type': 'application/json'
5992
5992
  };
5993
5993
  if (tenantOrgId) {
@@ -15667,6 +15667,7 @@ var __extends = (this && this.__extends) || (function () {
15667
15667
  Object.defineProperty(exports, "__esModule", ({ value: true }));
15668
15668
  var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
15669
15669
  var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
15670
+ var HdApi_1 = __webpack_require__(/*! ./hd/HdApi */ "./encoding/encodings/live/hd/HdApi.ts");
15670
15671
  var InsertableContentApi_1 = __webpack_require__(/*! ./insertableContent/InsertableContentApi */ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts");
15671
15672
  var Scte35CueApi_1 = __webpack_require__(/*! ./scte35Cue/Scte35CueApi */ "./encoding/encodings/live/scte35Cue/Scte35CueApi.ts");
15672
15673
  var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
@@ -15682,6 +15683,7 @@ var LiveApi = /** @class */ (function (_super) {
15682
15683
  __extends(LiveApi, _super);
15683
15684
  function LiveApi(configuration) {
15684
15685
  var _this = _super.call(this, configuration) || this;
15686
+ _this.hd = new HdApi_1.default(configuration);
15685
15687
  _this.insertableContent = new InsertableContentApi_1.default(configuration);
15686
15688
  _this.scte35Cue = new Scte35CueApi_1.default(configuration);
15687
15689
  return _this;
@@ -15762,6 +15764,65 @@ var LiveApi = /** @class */ (function (_super) {
15762
15764
  exports["default"] = LiveApi;
15763
15765
 
15764
15766
 
15767
+ /***/ }),
15768
+
15769
+ /***/ "./encoding/encodings/live/hd/HdApi.ts":
15770
+ /*!*********************************************!*\
15771
+ !*** ./encoding/encodings/live/hd/HdApi.ts ***!
15772
+ \*********************************************/
15773
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
15774
+
15775
+ "use strict";
15776
+
15777
+ var __extends = (this && this.__extends) || (function () {
15778
+ var extendStatics = function (d, b) {
15779
+ extendStatics = Object.setPrototypeOf ||
15780
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
15781
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
15782
+ return extendStatics(d, b);
15783
+ };
15784
+ return function (d, b) {
15785
+ if (typeof b !== "function" && b !== null)
15786
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15787
+ extendStatics(d, b);
15788
+ function __() { this.constructor = d; }
15789
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15790
+ };
15791
+ })();
15792
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
15793
+ var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
15794
+ var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
15795
+ var StartLiveChannelEncodingRequest_1 = __webpack_require__(/*! ../../../../models/StartLiveChannelEncodingRequest */ "./models/StartLiveChannelEncodingRequest.ts");
15796
+ /**
15797
+ * HdApi - object-oriented interface
15798
+ * @export
15799
+ * @class HdApi
15800
+ * @extends {BaseAPI}
15801
+ */
15802
+ var HdApi = /** @class */ (function (_super) {
15803
+ __extends(HdApi, _super);
15804
+ function HdApi(configuration) {
15805
+ return _super.call(this, configuration) || this;
15806
+ }
15807
+ /**
15808
+ * @summary Live Encoding Start Details
15809
+ * @param {string} encodingId Id of the encoding
15810
+ * @throws {BitmovinError}
15811
+ * @memberof HdApi
15812
+ */
15813
+ HdApi.prototype.getStartRequest = function (encodingId) {
15814
+ var pathParamMap = {
15815
+ encoding_id: encodingId
15816
+ };
15817
+ return this.restClient.get('/encoding/encodings/{encoding_id}/live/hd/start', pathParamMap).then(function (response) {
15818
+ return (0, Mapper_1.map)(response, StartLiveChannelEncodingRequest_1.default);
15819
+ });
15820
+ };
15821
+ return HdApi;
15822
+ }(BaseAPI_1.BaseAPI));
15823
+ exports["default"] = HdApi;
15824
+
15825
+
15765
15826
  /***/ }),
15766
15827
 
15767
15828
  /***/ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts":
@@ -51223,6 +51284,7 @@ var __extends = (this && this.__extends) || (function () {
51223
51284
  Object.defineProperty(exports, "__esModule", ({ value: true }));
51224
51285
  var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
51225
51286
  var DailyApi_1 = __webpack_require__(/*! ./daily/DailyApi */ "./encoding/statistics/encodings/live/daily/DailyApi.ts");
51287
+ var OptionsApi_1 = __webpack_require__(/*! ./options/OptionsApi */ "./encoding/statistics/encodings/live/options/OptionsApi.ts");
51226
51288
  var EncodingStatisticsLive_1 = __webpack_require__(/*! ../../../../models/EncodingStatisticsLive */ "./models/EncodingStatisticsLive.ts");
51227
51289
  var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
51228
51290
  var EncodingStatisticsLiveListQueryParams_1 = __webpack_require__(/*! ./EncodingStatisticsLiveListQueryParams */ "./encoding/statistics/encodings/live/EncodingStatisticsLiveListQueryParams.ts");
@@ -51238,6 +51300,7 @@ var LiveApi = /** @class */ (function (_super) {
51238
51300
  function LiveApi(configuration) {
51239
51301
  var _this = _super.call(this, configuration) || this;
51240
51302
  _this.daily = new DailyApi_1.default(configuration);
51303
+ _this.options = new OptionsApi_1.default(configuration);
51241
51304
  return _this;
51242
51305
  }
51243
51306
  /**
@@ -51348,6 +51411,141 @@ var DailyApi = /** @class */ (function (_super) {
51348
51411
  exports["default"] = DailyApi;
51349
51412
 
51350
51413
 
51414
+ /***/ }),
51415
+
51416
+ /***/ "./encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.ts":
51417
+ /*!*******************************************************************************************************!*\
51418
+ !*** ./encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.ts ***!
51419
+ \*******************************************************************************************************/
51420
+ /***/ ((__unused_webpack_module, exports) => {
51421
+
51422
+ "use strict";
51423
+
51424
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
51425
+ exports.LiveOptionsStatisticsListByDateRangeQueryParamsBuilder = void 0;
51426
+ var LiveOptionsStatisticsListByDateRangeQueryParamsBuilder = /** @class */ (function () {
51427
+ function LiveOptionsStatisticsListByDateRangeQueryParamsBuilder() {
51428
+ this.internalParams = {};
51429
+ }
51430
+ /**
51431
+ *
51432
+ * @param from Start date, format: yyyy-MM-dd
51433
+ */
51434
+ LiveOptionsStatisticsListByDateRangeQueryParamsBuilder.prototype.from = function (from) {
51435
+ this.internalParams.from = from;
51436
+ return this;
51437
+ };
51438
+ /**
51439
+ *
51440
+ * @param to End date, format: yyyy-MM-dd
51441
+ */
51442
+ LiveOptionsStatisticsListByDateRangeQueryParamsBuilder.prototype.to = function (to) {
51443
+ this.internalParams.to = to;
51444
+ return this;
51445
+ };
51446
+ /**
51447
+ *
51448
+ * @param offset Index of the first item to return, starting at 0. Default is 0
51449
+ */
51450
+ LiveOptionsStatisticsListByDateRangeQueryParamsBuilder.prototype.offset = function (offset) {
51451
+ this.internalParams.offset = offset;
51452
+ return this;
51453
+ };
51454
+ /**
51455
+ *
51456
+ * @param limit Maximum number of items to return. Default is 25, maximum is 100
51457
+ */
51458
+ LiveOptionsStatisticsListByDateRangeQueryParamsBuilder.prototype.limit = function (limit) {
51459
+ this.internalParams.limit = limit;
51460
+ return this;
51461
+ };
51462
+ LiveOptionsStatisticsListByDateRangeQueryParamsBuilder.prototype.buildQueryParams = function () {
51463
+ return this.internalParams;
51464
+ };
51465
+ return LiveOptionsStatisticsListByDateRangeQueryParamsBuilder;
51466
+ }());
51467
+ exports.LiveOptionsStatisticsListByDateRangeQueryParamsBuilder = LiveOptionsStatisticsListByDateRangeQueryParamsBuilder;
51468
+
51469
+
51470
+ /***/ }),
51471
+
51472
+ /***/ "./encoding/statistics/encodings/live/options/OptionsApi.ts":
51473
+ /*!******************************************************************!*\
51474
+ !*** ./encoding/statistics/encodings/live/options/OptionsApi.ts ***!
51475
+ \******************************************************************/
51476
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
51477
+
51478
+ "use strict";
51479
+
51480
+ var __extends = (this && this.__extends) || (function () {
51481
+ var extendStatics = function (d, b) {
51482
+ extendStatics = Object.setPrototypeOf ||
51483
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
51484
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
51485
+ return extendStatics(d, b);
51486
+ };
51487
+ return function (d, b) {
51488
+ if (typeof b !== "function" && b !== null)
51489
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
51490
+ extendStatics(d, b);
51491
+ function __() { this.constructor = d; }
51492
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
51493
+ };
51494
+ })();
51495
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
51496
+ var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
51497
+ var Mapper_1 = __webpack_require__(/*! ../../../../../common/Mapper */ "./common/Mapper.ts");
51498
+ var LiveEncodingOptionsStatistics_1 = __webpack_require__(/*! ../../../../../models/LiveEncodingOptionsStatistics */ "./models/LiveEncodingOptionsStatistics.ts");
51499
+ var LiveOptionsStatistics_1 = __webpack_require__(/*! ../../../../../models/LiveOptionsStatistics */ "./models/LiveOptionsStatistics.ts");
51500
+ var LiveOptionsStatisticsListByDateRangeQueryParams_1 = __webpack_require__(/*! ./LiveOptionsStatisticsListByDateRangeQueryParams */ "./encoding/statistics/encodings/live/options/LiveOptionsStatisticsListByDateRangeQueryParams.ts");
51501
+ /**
51502
+ * OptionsApi - object-oriented interface
51503
+ * @export
51504
+ * @class OptionsApi
51505
+ * @extends {BaseAPI}
51506
+ */
51507
+ var OptionsApi = /** @class */ (function (_super) {
51508
+ __extends(OptionsApi, _super);
51509
+ function OptionsApi(configuration) {
51510
+ return _super.call(this, configuration) || this;
51511
+ }
51512
+ /**
51513
+ * @summary List live options encoding statistics for a given encoding
51514
+ * @param {string} encodingId Id of the encoding
51515
+ * @throws {BitmovinError}
51516
+ * @memberof OptionsApi
51517
+ */
51518
+ OptionsApi.prototype.get = function (encodingId) {
51519
+ var pathParamMap = {
51520
+ encoding_id: encodingId
51521
+ };
51522
+ return this.restClient.get('/encoding/statistics/encodings/live/{encoding_id}/options', pathParamMap).then(function (response) {
51523
+ return (0, Mapper_1.map)(response, LiveEncodingOptionsStatistics_1.default);
51524
+ });
51525
+ };
51526
+ /**
51527
+ * @summary List live options encoding statistics within specific dates
51528
+ * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
51529
+ * @throws {BitmovinError}
51530
+ * @memberof OptionsApi
51531
+ */
51532
+ OptionsApi.prototype.listByDateRange = function (queryParameters) {
51533
+ var queryParams = {};
51534
+ if (typeof queryParameters === 'function') {
51535
+ queryParams = queryParameters(new LiveOptionsStatisticsListByDateRangeQueryParams_1.LiveOptionsStatisticsListByDateRangeQueryParamsBuilder()).buildQueryParams();
51536
+ }
51537
+ else if (queryParameters) {
51538
+ queryParams = queryParameters;
51539
+ }
51540
+ return this.restClient.get('/encoding/statistics/encodings/live/options', {}, queryParams).then(function (response) {
51541
+ return (0, Mapper_1.map)(response, LiveOptionsStatistics_1.default);
51542
+ });
51543
+ };
51544
+ return OptionsApi;
51545
+ }(BaseAPI_1.BaseAPI));
51546
+ exports["default"] = OptionsApi;
51547
+
51548
+
51351
51549
  /***/ }),
51352
51550
 
51353
51551
  /***/ "./encoding/statistics/encodings/liveStatistics/LiveStatisticsApi.ts":
@@ -53451,6 +53649,7 @@ var AdAnalyticsAttribute;
53451
53649
  AdAnalyticsAttribute["SCALE_FACTOR"] = "SCALE_FACTOR";
53452
53650
  AdAnalyticsAttribute["SCREEN_HEIGHT"] = "SCREEN_HEIGHT";
53453
53651
  AdAnalyticsAttribute["SCREEN_WIDTH"] = "SCREEN_WIDTH";
53652
+ AdAnalyticsAttribute["SCREEN_ORIENTATION"] = "SCREEN_ORIENTATION";
53454
53653
  AdAnalyticsAttribute["SIZE"] = "SIZE";
53455
53654
  AdAnalyticsAttribute["SKIP_PERCENTAGE"] = "SKIP_PERCENTAGE";
53456
53655
  AdAnalyticsAttribute["SKIP_POSITION"] = "SKIP_POSITION";
@@ -55160,6 +55359,7 @@ var AnalyticsAdsImpressionSample = /** @class */ (function () {
55160
55359
  this.region = (0, Mapper_1.map)(obj.region);
55161
55360
  this.screenHeight = (0, Mapper_1.map)(obj.screenHeight);
55162
55361
  this.screenWidth = (0, Mapper_1.map)(obj.screenWidth);
55362
+ this.screenOrientation = (0, Mapper_1.map)(obj.screenOrientation);
55163
55363
  this.size = (0, Mapper_1.map)(obj.size);
55164
55364
  this.skipPercentage = (0, Mapper_1.map)(obj.skipPercentage);
55165
55365
  this.skipPosition = (0, Mapper_1.map)(obj.skipPosition);
@@ -55329,6 +55529,7 @@ var AnalyticsAttribute;
55329
55529
  AnalyticsAttribute["SCALE_FACTOR"] = "SCALE_FACTOR";
55330
55530
  AnalyticsAttribute["SCREEN_HEIGHT"] = "SCREEN_HEIGHT";
55331
55531
  AnalyticsAttribute["SCREEN_WIDTH"] = "SCREEN_WIDTH";
55532
+ AnalyticsAttribute["SCREEN_ORIENTATION"] = "SCREEN_ORIENTATION";
55332
55533
  AnalyticsAttribute["SEEKED"] = "SEEKED";
55333
55534
  AnalyticsAttribute["SEQUENCE_NUMBER"] = "SEQUENCE_NUMBER";
55334
55535
  AnalyticsAttribute["SIZE"] = "SIZE";
@@ -56443,6 +56644,7 @@ var AnalyticsImpressionSample = /** @class */ (function () {
56443
56644
  this.region = (0, Mapper_1.map)(obj.region);
56444
56645
  this.screenHeight = (0, Mapper_1.map)(obj.screenHeight);
56445
56646
  this.screenWidth = (0, Mapper_1.map)(obj.screenWidth);
56647
+ this.screenOrientation = (0, Mapper_1.map)(obj.screenOrientation);
56446
56648
  this.seeked = (0, Mapper_1.map)(obj.seeked);
56447
56649
  this.segmentDownloadCount = (0, Mapper_1.map)(obj.segmentDownloadCount);
56448
56650
  this.segmentDownloadSize = (0, Mapper_1.map)(obj.segmentDownloadSize);
@@ -72513,6 +72715,38 @@ var LiveEncodingEventName;
72513
72715
  exports["default"] = LiveEncodingEventName;
72514
72716
 
72515
72717
 
72718
+ /***/ }),
72719
+
72720
+ /***/ "./models/LiveEncodingOptionsStatistics.ts":
72721
+ /*!*************************************************!*\
72722
+ !*** ./models/LiveEncodingOptionsStatistics.ts ***!
72723
+ \*************************************************/
72724
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
72725
+
72726
+ "use strict";
72727
+
72728
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
72729
+ exports.LiveEncodingOptionsStatistics = void 0;
72730
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
72731
+ /**
72732
+ * @export
72733
+ * @class LiveEncodingOptionsStatistics
72734
+ */
72735
+ var LiveEncodingOptionsStatistics = /** @class */ (function () {
72736
+ function LiveEncodingOptionsStatistics(obj) {
72737
+ if (!obj) {
72738
+ return;
72739
+ }
72740
+ this.encodingId = (0, Mapper_1.map)(obj.encodingId);
72741
+ this.unitsUsed = (0, Mapper_1.map)(obj.unitsUsed);
72742
+ this.type = (0, Mapper_1.map)(obj.type);
72743
+ }
72744
+ return LiveEncodingOptionsStatistics;
72745
+ }());
72746
+ exports.LiveEncodingOptionsStatistics = LiveEncodingOptionsStatistics;
72747
+ exports["default"] = LiveEncodingOptionsStatistics;
72748
+
72749
+
72516
72750
  /***/ }),
72517
72751
 
72518
72752
  /***/ "./models/LiveEncodingStats.ts":
@@ -72729,6 +72963,132 @@ exports.LiveMediaIngestOutput = LiveMediaIngestOutput;
72729
72963
  exports["default"] = LiveMediaIngestOutput;
72730
72964
 
72731
72965
 
72966
+ /***/ }),
72967
+
72968
+ /***/ "./models/LiveOptionsBreakdownEntry.ts":
72969
+ /*!*********************************************!*\
72970
+ !*** ./models/LiveOptionsBreakdownEntry.ts ***!
72971
+ \*********************************************/
72972
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
72973
+
72974
+ "use strict";
72975
+
72976
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
72977
+ exports.LiveOptionsBreakdownEntry = void 0;
72978
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
72979
+ var LiveOptionsEntry_1 = __webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptionsEntry.ts");
72980
+ /**
72981
+ * @export
72982
+ * @class LiveOptionsBreakdownEntry
72983
+ */
72984
+ var LiveOptionsBreakdownEntry = /** @class */ (function () {
72985
+ function LiveOptionsBreakdownEntry(obj) {
72986
+ if (!obj) {
72987
+ return;
72988
+ }
72989
+ this.date = (0, Mapper_1.map)(obj.date, Date);
72990
+ this.hd = (0, Mapper_1.map)(obj.hd, LiveOptionsEntry_1.default);
72991
+ }
72992
+ return LiveOptionsBreakdownEntry;
72993
+ }());
72994
+ exports.LiveOptionsBreakdownEntry = LiveOptionsBreakdownEntry;
72995
+ exports["default"] = LiveOptionsBreakdownEntry;
72996
+
72997
+
72998
+ /***/ }),
72999
+
73000
+ /***/ "./models/LiveOptionsEntry.ts":
73001
+ /*!************************************!*\
73002
+ !*** ./models/LiveOptionsEntry.ts ***!
73003
+ \************************************/
73004
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
73005
+
73006
+ "use strict";
73007
+
73008
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
73009
+ exports.LiveOptionsEntry = void 0;
73010
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
73011
+ /**
73012
+ * @export
73013
+ * @class LiveOptionsEntry
73014
+ */
73015
+ var LiveOptionsEntry = /** @class */ (function () {
73016
+ function LiveOptionsEntry(obj) {
73017
+ if (!obj) {
73018
+ return;
73019
+ }
73020
+ this.unitsUsed = (0, Mapper_1.map)(obj.unitsUsed);
73021
+ }
73022
+ return LiveOptionsEntry;
73023
+ }());
73024
+ exports.LiveOptionsEntry = LiveOptionsEntry;
73025
+ exports["default"] = LiveOptionsEntry;
73026
+
73027
+
73028
+ /***/ }),
73029
+
73030
+ /***/ "./models/LiveOptionsStatistics.ts":
73031
+ /*!*****************************************!*\
73032
+ !*** ./models/LiveOptionsStatistics.ts ***!
73033
+ \*****************************************/
73034
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
73035
+
73036
+ "use strict";
73037
+
73038
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
73039
+ exports.LiveOptionsStatistics = void 0;
73040
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
73041
+ var LiveOptionsBreakdownEntry_1 = __webpack_require__(/*! ./LiveOptionsBreakdownEntry */ "./models/LiveOptionsBreakdownEntry.ts");
73042
+ var LiveOptionsSummary_1 = __webpack_require__(/*! ./LiveOptionsSummary */ "./models/LiveOptionsSummary.ts");
73043
+ /**
73044
+ * @export
73045
+ * @class LiveOptionsStatistics
73046
+ */
73047
+ var LiveOptionsStatistics = /** @class */ (function () {
73048
+ function LiveOptionsStatistics(obj) {
73049
+ if (!obj) {
73050
+ return;
73051
+ }
73052
+ this.summary = (0, Mapper_1.map)(obj.summary, LiveOptionsSummary_1.default);
73053
+ this.breakdown = (0, Mapper_1.mapArray)(obj.breakdown, LiveOptionsBreakdownEntry_1.default);
73054
+ }
73055
+ return LiveOptionsStatistics;
73056
+ }());
73057
+ exports.LiveOptionsStatistics = LiveOptionsStatistics;
73058
+ exports["default"] = LiveOptionsStatistics;
73059
+
73060
+
73061
+ /***/ }),
73062
+
73063
+ /***/ "./models/LiveOptionsSummary.ts":
73064
+ /*!**************************************!*\
73065
+ !*** ./models/LiveOptionsSummary.ts ***!
73066
+ \**************************************/
73067
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
73068
+
73069
+ "use strict";
73070
+
73071
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
73072
+ exports.LiveOptionsSummary = void 0;
73073
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
73074
+ var LiveOptionsEntry_1 = __webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptionsEntry.ts");
73075
+ /**
73076
+ * @export
73077
+ * @class LiveOptionsSummary
73078
+ */
73079
+ var LiveOptionsSummary = /** @class */ (function () {
73080
+ function LiveOptionsSummary(obj) {
73081
+ if (!obj) {
73082
+ return;
73083
+ }
73084
+ this.hd = (0, Mapper_1.map)(obj.hd, LiveOptionsEntry_1.default);
73085
+ }
73086
+ return LiveOptionsSummary;
73087
+ }());
73088
+ exports.LiveOptionsSummary = LiveOptionsSummary;
73089
+ exports["default"] = LiveOptionsSummary;
73090
+
73091
+
72732
73092
  /***/ }),
72733
73093
 
72734
73094
  /***/ "./models/LiveOptionsType.ts":
@@ -80931,6 +81291,53 @@ exports.StartEncodingRequest = StartEncodingRequest;
80931
81291
  exports["default"] = StartEncodingRequest;
80932
81292
 
80933
81293
 
81294
+ /***/ }),
81295
+
81296
+ /***/ "./models/StartLiveChannelEncodingRequest.ts":
81297
+ /*!***************************************************!*\
81298
+ !*** ./models/StartLiveChannelEncodingRequest.ts ***!
81299
+ \***************************************************/
81300
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
81301
+
81302
+ "use strict";
81303
+
81304
+ var __extends = (this && this.__extends) || (function () {
81305
+ var extendStatics = function (d, b) {
81306
+ extendStatics = Object.setPrototypeOf ||
81307
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
81308
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
81309
+ return extendStatics(d, b);
81310
+ };
81311
+ return function (d, b) {
81312
+ if (typeof b !== "function" && b !== null)
81313
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
81314
+ extendStatics(d, b);
81315
+ function __() { this.constructor = d; }
81316
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
81317
+ };
81318
+ })();
81319
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
81320
+ exports.StartLiveChannelEncodingRequest = void 0;
81321
+ var StartLiveEncodingRequest_1 = __webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/StartLiveEncodingRequest.ts");
81322
+ /**
81323
+ * @export
81324
+ * @class StartLiveChannelEncodingRequest
81325
+ */
81326
+ var StartLiveChannelEncodingRequest = /** @class */ (function (_super) {
81327
+ __extends(StartLiveChannelEncodingRequest, _super);
81328
+ function StartLiveChannelEncodingRequest(obj) {
81329
+ var _this = _super.call(this, obj) || this;
81330
+ if (!obj) {
81331
+ return _this;
81332
+ }
81333
+ return _this;
81334
+ }
81335
+ return StartLiveChannelEncodingRequest;
81336
+ }(StartLiveEncodingRequest_1.default));
81337
+ exports.StartLiveChannelEncodingRequest = StartLiveChannelEncodingRequest;
81338
+ exports["default"] = StartLiveChannelEncodingRequest;
81339
+
81340
+
80934
81341
  /***/ }),
80935
81342
 
80936
81343
  /***/ "./models/StartLiveEncodingRequest.ts":
@@ -86071,12 +86478,17 @@ __exportStar(__webpack_require__(/*! ./LiveDashManifest */ "./models/LiveDashMan
86071
86478
  __exportStar(__webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts"), exports);
86072
86479
  __exportStar(__webpack_require__(/*! ./LiveEncodingCodec */ "./models/LiveEncodingCodec.ts"), exports);
86073
86480
  __exportStar(__webpack_require__(/*! ./LiveEncodingEventName */ "./models/LiveEncodingEventName.ts"), exports);
86481
+ __exportStar(__webpack_require__(/*! ./LiveEncodingOptionsStatistics */ "./models/LiveEncodingOptionsStatistics.ts"), exports);
86074
86482
  __exportStar(__webpack_require__(/*! ./LiveEncodingStats */ "./models/LiveEncodingStats.ts"), exports);
86075
86483
  __exportStar(__webpack_require__(/*! ./LiveEncodingStatsEvent */ "./models/LiveEncodingStatsEvent.ts"), exports);
86076
86484
  __exportStar(__webpack_require__(/*! ./LiveEncodingStatsEventDetails */ "./models/LiveEncodingStatsEventDetails.ts"), exports);
86077
86485
  __exportStar(__webpack_require__(/*! ./LiveEncodingStatus */ "./models/LiveEncodingStatus.ts"), exports);
86078
86486
  __exportStar(__webpack_require__(/*! ./LiveHlsManifest */ "./models/LiveHlsManifest.ts"), exports);
86079
86487
  __exportStar(__webpack_require__(/*! ./LiveMediaIngestOutput */ "./models/LiveMediaIngestOutput.ts"), exports);
86488
+ __exportStar(__webpack_require__(/*! ./LiveOptionsBreakdownEntry */ "./models/LiveOptionsBreakdownEntry.ts"), exports);
86489
+ __exportStar(__webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptionsEntry.ts"), exports);
86490
+ __exportStar(__webpack_require__(/*! ./LiveOptionsStatistics */ "./models/LiveOptionsStatistics.ts"), exports);
86491
+ __exportStar(__webpack_require__(/*! ./LiveOptionsSummary */ "./models/LiveOptionsSummary.ts"), exports);
86080
86492
  __exportStar(__webpack_require__(/*! ./LiveOptionsType */ "./models/LiveOptionsType.ts"), exports);
86081
86493
  __exportStar(__webpack_require__(/*! ./LocalInput */ "./models/LocalInput.ts"), exports);
86082
86494
  __exportStar(__webpack_require__(/*! ./LocalOutput */ "./models/LocalOutput.ts"), exports);
@@ -86285,6 +86697,7 @@ __exportStar(__webpack_require__(/*! ./SrtStatisticWindow */ "./models/SrtStatis
86285
86697
  __exportStar(__webpack_require__(/*! ./SrtStatistics */ "./models/SrtStatistics.ts"), exports);
86286
86698
  __exportStar(__webpack_require__(/*! ./StandardMediaInfo */ "./models/StandardMediaInfo.ts"), exports);
86287
86699
  __exportStar(__webpack_require__(/*! ./StartEncodingRequest */ "./models/StartEncodingRequest.ts"), exports);
86700
+ __exportStar(__webpack_require__(/*! ./StartLiveChannelEncodingRequest */ "./models/StartLiveChannelEncodingRequest.ts"), exports);
86288
86701
  __exportStar(__webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/StartLiveEncodingRequest.ts"), exports);
86289
86702
  __exportStar(__webpack_require__(/*! ./StartManifestRequest */ "./models/StartManifestRequest.ts"), exports);
86290
86703
  __exportStar(__webpack_require__(/*! ./StaticIp */ "./models/StaticIp.ts"), exports);