@bitmovin/api-sdk 1.251.0 → 1.253.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 +540 -4
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/EncodingsApi.d.ts +2 -0
- package/dist/encoding/encodings/EncodingsApi.js +2 -0
- package/dist/encoding/encodings/kantarWatermark/KantarWatermarkApi.d.ts +35 -0
- package/dist/encoding/encodings/kantarWatermark/KantarWatermarkApi.js +78 -0
- package/dist/encoding/encodings/live/LiveApi.d.ts +2 -0
- package/dist/encoding/encodings/live/LiveApi.js +2 -0
- package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.d.ts +19 -0
- package/dist/encoding/encodings/live/heartbeat/HeartbeatApi.js +48 -0
- package/dist/models/ClockSynchronizationMode.d.ts +10 -0
- package/dist/models/ClockSynchronizationMode.js +14 -0
- package/dist/models/DashManifest.d.ts +6 -0
- package/dist/models/DashManifest.js +1 -0
- package/dist/models/IABTaxonomy.d.ts +6 -1
- package/dist/models/IABTaxonomy.js +2 -1
- package/dist/models/KantarWatermark.d.ts +52 -0
- package/dist/models/KantarWatermark.js +45 -0
- package/dist/models/LiveEncodingEventName.d.ts +4 -1
- package/dist/models/LiveEncodingEventName.js +3 -0
- package/dist/models/LiveEncodingHeartbeat.d.ts +29 -0
- package/dist/models/LiveEncodingHeartbeat.js +24 -0
- package/dist/models/LiveEncodingHeartbeatEvent.d.ts +20 -0
- package/dist/models/LiveEncodingHeartbeatEvent.js +21 -0
- package/dist/models/LiveEncodingHeartbeatEventDetails.d.ts +20 -0
- package/dist/models/LiveEncodingHeartbeatEventDetails.js +20 -0
- package/dist/models/LiveEncodingHeartbeatEventType.d.ts +12 -0
- package/dist/models/LiveEncodingHeartbeatEventType.js +16 -0
- package/dist/models/LiveEncodingHeartbeatIngest.d.ts +41 -0
- package/dist/models/LiveEncodingHeartbeatIngest.js +27 -0
- package/dist/models/LiveEncodingHeartbeatIngestPoint.d.ts +39 -0
- package/dist/models/LiveEncodingHeartbeatIngestPoint.js +24 -0
- package/dist/models/LiveEncodingHeartbeatIngestStream.d.ts +117 -0
- package/dist/models/LiveEncodingHeartbeatIngestStream.js +37 -0
- package/dist/models/LiveEncodingStatsEventDetails.d.ts +42 -5
- package/dist/models/LiveEncodingStatsEventDetails.js +8 -2
- package/dist/models/RtmpUserIngestInfo.d.ts +45 -0
- package/dist/models/RtmpUserIngestInfo.js +25 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/package.json +2 -2
|
@@ -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.
|
|
7221
|
+
'X-Api-Client-Version': '1.253.0',
|
|
7222
7222
|
'Content-Type': 'application/json'
|
|
7223
7223
|
};
|
|
7224
7224
|
if (tenantOrgId) {
|
|
@@ -13774,6 +13774,7 @@ var TransferRetriesApi_1 = __webpack_require__(/*! ./transferRetries/TransferRet
|
|
|
13774
13774
|
var OutputPathsApi_1 = __webpack_require__(/*! ./outputPaths/OutputPathsApi */ "./encoding/encodings/outputPaths/OutputPathsApi.ts");
|
|
13775
13775
|
var CaptionsApi_1 = __webpack_require__(/*! ./captions/CaptionsApi */ "./encoding/encodings/captions/CaptionsApi.ts");
|
|
13776
13776
|
var SidecarsApi_1 = __webpack_require__(/*! ./sidecars/SidecarsApi */ "./encoding/encodings/sidecars/SidecarsApi.ts");
|
|
13777
|
+
var KantarWatermarkApi_1 = __webpack_require__(/*! ./kantarWatermark/KantarWatermarkApi */ "./encoding/encodings/kantarWatermark/KantarWatermarkApi.ts");
|
|
13777
13778
|
var KeyframesApi_1 = __webpack_require__(/*! ./keyframes/KeyframesApi */ "./encoding/encodings/keyframes/KeyframesApi.ts");
|
|
13778
13779
|
var Scte35TriggersApi_1 = __webpack_require__(/*! ./scte35Triggers/Scte35TriggersApi */ "./encoding/encodings/scte35Triggers/Scte35TriggersApi.ts");
|
|
13779
13780
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
@@ -13802,6 +13803,7 @@ var EncodingsApi = /** @class */ (function (_super) {
|
|
|
13802
13803
|
_this.outputPaths = new OutputPathsApi_1.default(configuration);
|
|
13803
13804
|
_this.captions = new CaptionsApi_1.default(configuration);
|
|
13804
13805
|
_this.sidecars = new SidecarsApi_1.default(configuration);
|
|
13806
|
+
_this.kantarWatermark = new KantarWatermarkApi_1.default(configuration);
|
|
13805
13807
|
_this.keyframes = new KeyframesApi_1.default(configuration);
|
|
13806
13808
|
_this.scte35Triggers = new Scte35TriggersApi_1.default(configuration);
|
|
13807
13809
|
return _this;
|
|
@@ -16721,6 +16723,95 @@ var TypeApi = /** @class */ (function (_super) {
|
|
|
16721
16723
|
exports["default"] = TypeApi;
|
|
16722
16724
|
|
|
16723
16725
|
|
|
16726
|
+
/***/ }),
|
|
16727
|
+
|
|
16728
|
+
/***/ "./encoding/encodings/kantarWatermark/KantarWatermarkApi.ts":
|
|
16729
|
+
/*!******************************************************************!*\
|
|
16730
|
+
!*** ./encoding/encodings/kantarWatermark/KantarWatermarkApi.ts ***!
|
|
16731
|
+
\******************************************************************/
|
|
16732
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
16733
|
+
|
|
16734
|
+
"use strict";
|
|
16735
|
+
|
|
16736
|
+
var __extends = (this && this.__extends) || (function () {
|
|
16737
|
+
var extendStatics = function (d, b) {
|
|
16738
|
+
extendStatics = Object.setPrototypeOf ||
|
|
16739
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
16740
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
16741
|
+
return extendStatics(d, b);
|
|
16742
|
+
};
|
|
16743
|
+
return function (d, b) {
|
|
16744
|
+
if (typeof b !== "function" && b !== null)
|
|
16745
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
16746
|
+
extendStatics(d, b);
|
|
16747
|
+
function __() { this.constructor = d; }
|
|
16748
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
16749
|
+
};
|
|
16750
|
+
})();
|
|
16751
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
16752
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
16753
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
16754
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
16755
|
+
var KantarWatermark_1 = __webpack_require__(/*! ../../../models/KantarWatermark */ "./models/KantarWatermark.ts");
|
|
16756
|
+
/**
|
|
16757
|
+
* KantarWatermarkApi - object-oriented interface
|
|
16758
|
+
* @export
|
|
16759
|
+
* @class KantarWatermarkApi
|
|
16760
|
+
* @extends {BaseAPI}
|
|
16761
|
+
*/
|
|
16762
|
+
var KantarWatermarkApi = /** @class */ (function (_super) {
|
|
16763
|
+
__extends(KantarWatermarkApi, _super);
|
|
16764
|
+
function KantarWatermarkApi(configuration) {
|
|
16765
|
+
return _super.call(this, configuration) || this;
|
|
16766
|
+
}
|
|
16767
|
+
/**
|
|
16768
|
+
* @summary Create or replace the Kantar Watermark for an encoding
|
|
16769
|
+
* @param {string} encodingId Id of the encoding.
|
|
16770
|
+
* @param {KantarWatermark} kantarWatermark The Kantar Watermark to be created
|
|
16771
|
+
* @throws {BitmovinError}
|
|
16772
|
+
* @memberof KantarWatermarkApi
|
|
16773
|
+
*/
|
|
16774
|
+
KantarWatermarkApi.prototype.create = function (encodingId, kantarWatermark) {
|
|
16775
|
+
var pathParamMap = {
|
|
16776
|
+
encoding_id: encodingId
|
|
16777
|
+
};
|
|
16778
|
+
return this.restClient.post('/encoding/encodings/{encoding_id}/kantar-watermark', pathParamMap, kantarWatermark).then(function (response) {
|
|
16779
|
+
return (0, Mapper_1.map)(response, KantarWatermark_1.default);
|
|
16780
|
+
});
|
|
16781
|
+
};
|
|
16782
|
+
/**
|
|
16783
|
+
* @summary Delete the Kantar Watermark for an encoding
|
|
16784
|
+
* @param {string} encodingId Id of the encoding.
|
|
16785
|
+
* @throws {BitmovinError}
|
|
16786
|
+
* @memberof KantarWatermarkApi
|
|
16787
|
+
*/
|
|
16788
|
+
KantarWatermarkApi.prototype.delete = function (encodingId) {
|
|
16789
|
+
var pathParamMap = {
|
|
16790
|
+
encoding_id: encodingId
|
|
16791
|
+
};
|
|
16792
|
+
return this.restClient.delete('/encoding/encodings/{encoding_id}/kantar-watermark', pathParamMap).then(function (response) {
|
|
16793
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
16794
|
+
});
|
|
16795
|
+
};
|
|
16796
|
+
/**
|
|
16797
|
+
* @summary Get the Kantar Watermark for an encoding
|
|
16798
|
+
* @param {string} encodingId Id of the encoding.
|
|
16799
|
+
* @throws {BitmovinError}
|
|
16800
|
+
* @memberof KantarWatermarkApi
|
|
16801
|
+
*/
|
|
16802
|
+
KantarWatermarkApi.prototype.get = function (encodingId) {
|
|
16803
|
+
var pathParamMap = {
|
|
16804
|
+
encoding_id: encodingId
|
|
16805
|
+
};
|
|
16806
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/kantar-watermark', pathParamMap).then(function (response) {
|
|
16807
|
+
return (0, Mapper_1.map)(response, KantarWatermark_1.default);
|
|
16808
|
+
});
|
|
16809
|
+
};
|
|
16810
|
+
return KantarWatermarkApi;
|
|
16811
|
+
}(BaseAPI_1.BaseAPI));
|
|
16812
|
+
exports["default"] = KantarWatermarkApi;
|
|
16813
|
+
|
|
16814
|
+
|
|
16724
16815
|
/***/ }),
|
|
16725
16816
|
|
|
16726
16817
|
/***/ "./encoding/encodings/keyframes/KeyframeListQueryParams.ts":
|
|
@@ -16907,6 +16998,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
16907
16998
|
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
16908
16999
|
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
16909
17000
|
var ResetLiveManifestTimeshiftApi_1 = __webpack_require__(/*! ./resetLiveManifestTimeshift/ResetLiveManifestTimeshiftApi */ "./encoding/encodings/live/resetLiveManifestTimeshift/ResetLiveManifestTimeshiftApi.ts");
|
|
17001
|
+
var HeartbeatApi_1 = __webpack_require__(/*! ./heartbeat/HeartbeatApi */ "./encoding/encodings/live/heartbeat/HeartbeatApi.ts");
|
|
16910
17002
|
var HdApi_1 = __webpack_require__(/*! ./hd/HdApi */ "./encoding/encodings/live/hd/HdApi.ts");
|
|
16911
17003
|
var InsertableContentApi_1 = __webpack_require__(/*! ./insertableContent/InsertableContentApi */ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts");
|
|
16912
17004
|
var Scte35CueApi_1 = __webpack_require__(/*! ./scte35Cue/Scte35CueApi */ "./encoding/encodings/live/scte35Cue/Scte35CueApi.ts");
|
|
@@ -16924,6 +17016,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
16924
17016
|
function LiveApi(configuration) {
|
|
16925
17017
|
var _this = _super.call(this, configuration) || this;
|
|
16926
17018
|
_this.resetLiveManifestTimeshift = new ResetLiveManifestTimeshiftApi_1.default(configuration);
|
|
17019
|
+
_this.heartbeat = new HeartbeatApi_1.default(configuration);
|
|
16927
17020
|
_this.hd = new HdApi_1.default(configuration);
|
|
16928
17021
|
_this.insertableContent = new InsertableContentApi_1.default(configuration);
|
|
16929
17022
|
_this.scte35Cue = new Scte35CueApi_1.default(configuration);
|
|
@@ -17080,6 +17173,65 @@ var HdApi = /** @class */ (function (_super) {
|
|
|
17080
17173
|
exports["default"] = HdApi;
|
|
17081
17174
|
|
|
17082
17175
|
|
|
17176
|
+
/***/ }),
|
|
17177
|
+
|
|
17178
|
+
/***/ "./encoding/encodings/live/heartbeat/HeartbeatApi.ts":
|
|
17179
|
+
/*!***********************************************************!*\
|
|
17180
|
+
!*** ./encoding/encodings/live/heartbeat/HeartbeatApi.ts ***!
|
|
17181
|
+
\***********************************************************/
|
|
17182
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
17183
|
+
|
|
17184
|
+
"use strict";
|
|
17185
|
+
|
|
17186
|
+
var __extends = (this && this.__extends) || (function () {
|
|
17187
|
+
var extendStatics = function (d, b) {
|
|
17188
|
+
extendStatics = Object.setPrototypeOf ||
|
|
17189
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
17190
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
17191
|
+
return extendStatics(d, b);
|
|
17192
|
+
};
|
|
17193
|
+
return function (d, b) {
|
|
17194
|
+
if (typeof b !== "function" && b !== null)
|
|
17195
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
17196
|
+
extendStatics(d, b);
|
|
17197
|
+
function __() { this.constructor = d; }
|
|
17198
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
17199
|
+
};
|
|
17200
|
+
})();
|
|
17201
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
17202
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
17203
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
17204
|
+
var LiveEncodingHeartbeat_1 = __webpack_require__(/*! ../../../../models/LiveEncodingHeartbeat */ "./models/LiveEncodingHeartbeat.ts");
|
|
17205
|
+
/**
|
|
17206
|
+
* HeartbeatApi - object-oriented interface
|
|
17207
|
+
* @export
|
|
17208
|
+
* @class HeartbeatApi
|
|
17209
|
+
* @extends {BaseAPI}
|
|
17210
|
+
*/
|
|
17211
|
+
var HeartbeatApi = /** @class */ (function (_super) {
|
|
17212
|
+
__extends(HeartbeatApi, _super);
|
|
17213
|
+
function HeartbeatApi(configuration) {
|
|
17214
|
+
return _super.call(this, configuration) || this;
|
|
17215
|
+
}
|
|
17216
|
+
/**
|
|
17217
|
+
* @summary Live Encoding Heartbeat
|
|
17218
|
+
* @param {string} encodingId Id of the encoding.
|
|
17219
|
+
* @throws {BitmovinError}
|
|
17220
|
+
* @memberof HeartbeatApi
|
|
17221
|
+
*/
|
|
17222
|
+
HeartbeatApi.prototype.get = function (encodingId) {
|
|
17223
|
+
var pathParamMap = {
|
|
17224
|
+
encoding_id: encodingId
|
|
17225
|
+
};
|
|
17226
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/live/heartbeat', pathParamMap).then(function (response) {
|
|
17227
|
+
return (0, Mapper_1.map)(response, LiveEncodingHeartbeat_1.default);
|
|
17228
|
+
});
|
|
17229
|
+
};
|
|
17230
|
+
return HeartbeatApi;
|
|
17231
|
+
}(BaseAPI_1.BaseAPI));
|
|
17232
|
+
exports["default"] = HeartbeatApi;
|
|
17233
|
+
|
|
17234
|
+
|
|
17083
17235
|
/***/ }),
|
|
17084
17236
|
|
|
17085
17237
|
/***/ "./encoding/encodings/live/insertableContent/InsertableContentApi.ts":
|
|
@@ -65992,6 +66144,31 @@ exports.ClearKeyDrm = ClearKeyDrm;
|
|
|
65992
66144
|
exports["default"] = ClearKeyDrm;
|
|
65993
66145
|
|
|
65994
66146
|
|
|
66147
|
+
/***/ }),
|
|
66148
|
+
|
|
66149
|
+
/***/ "./models/ClockSynchronizationMode.ts":
|
|
66150
|
+
/*!********************************************!*\
|
|
66151
|
+
!*** ./models/ClockSynchronizationMode.ts ***!
|
|
66152
|
+
\********************************************/
|
|
66153
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
66154
|
+
|
|
66155
|
+
"use strict";
|
|
66156
|
+
|
|
66157
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
66158
|
+
exports.ClockSynchronizationMode = void 0;
|
|
66159
|
+
/**
|
|
66160
|
+
* Mode of clock synchronization for ad insertion
|
|
66161
|
+
* @export
|
|
66162
|
+
* @enum {string}
|
|
66163
|
+
*/
|
|
66164
|
+
var ClockSynchronizationMode;
|
|
66165
|
+
(function (ClockSynchronizationMode) {
|
|
66166
|
+
ClockSynchronizationMode["SYSTEM_CLOCK"] = "SYSTEM_CLOCK";
|
|
66167
|
+
ClockSynchronizationMode["EMBEDDED"] = "EMBEDDED";
|
|
66168
|
+
})(ClockSynchronizationMode || (exports.ClockSynchronizationMode = ClockSynchronizationMode = {}));
|
|
66169
|
+
exports["default"] = ClockSynchronizationMode;
|
|
66170
|
+
|
|
66171
|
+
|
|
65995
66172
|
/***/ }),
|
|
65996
66173
|
|
|
65997
66174
|
/***/ "./models/ClosedCaptionsMediaInfo.ts":
|
|
@@ -67881,6 +68058,7 @@ var DashManifest = /** @class */ (function (_super) {
|
|
|
67881
68058
|
_this.utcTimings = (0, Mapper_1.mapArray)(obj.utcTimings, UtcTiming_1.default);
|
|
67882
68059
|
_this.dashEditionCompatibility = (0, Mapper_1.map)(obj.dashEditionCompatibility);
|
|
67883
68060
|
_this.iso8601TimestampFormat = (0, Mapper_1.map)(obj.iso8601TimestampFormat);
|
|
68061
|
+
_this.minBufferTime = (0, Mapper_1.map)(obj.minBufferTime);
|
|
67884
68062
|
return _this;
|
|
67885
68063
|
}
|
|
67886
68064
|
return DashManifest;
|
|
@@ -75454,7 +75632,8 @@ var IABTaxonomy = /** @class */ (function () {
|
|
|
75454
75632
|
if (!obj) {
|
|
75455
75633
|
return;
|
|
75456
75634
|
}
|
|
75457
|
-
this.
|
|
75635
|
+
this.contentVersion = (0, Mapper_1.map)(obj.contentVersion);
|
|
75636
|
+
this.adProductVersion = (0, Mapper_1.map)(obj.adProductVersion);
|
|
75458
75637
|
this.contentTaxonomies = (0, Mapper_1.mapArray)(obj.contentTaxonomies);
|
|
75459
75638
|
this.adOpportunityTaxonomies = (0, Mapper_1.mapArray)(obj.adOpportunityTaxonomies);
|
|
75460
75639
|
this.sensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.sensitiveTopicTaxonomies);
|
|
@@ -76743,6 +76922,62 @@ var IvSize;
|
|
|
76743
76922
|
exports["default"] = IvSize;
|
|
76744
76923
|
|
|
76745
76924
|
|
|
76925
|
+
/***/ }),
|
|
76926
|
+
|
|
76927
|
+
/***/ "./models/KantarWatermark.ts":
|
|
76928
|
+
/*!***********************************!*\
|
|
76929
|
+
!*** ./models/KantarWatermark.ts ***!
|
|
76930
|
+
\***********************************/
|
|
76931
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
76932
|
+
|
|
76933
|
+
"use strict";
|
|
76934
|
+
|
|
76935
|
+
var __extends = (this && this.__extends) || (function () {
|
|
76936
|
+
var extendStatics = function (d, b) {
|
|
76937
|
+
extendStatics = Object.setPrototypeOf ||
|
|
76938
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
76939
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
76940
|
+
return extendStatics(d, b);
|
|
76941
|
+
};
|
|
76942
|
+
return function (d, b) {
|
|
76943
|
+
if (typeof b !== "function" && b !== null)
|
|
76944
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
76945
|
+
extendStatics(d, b);
|
|
76946
|
+
function __() { this.constructor = d; }
|
|
76947
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
76948
|
+
};
|
|
76949
|
+
})();
|
|
76950
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
76951
|
+
exports.KantarWatermark = void 0;
|
|
76952
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
76953
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ./BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
76954
|
+
var EncodingOutput_1 = __webpack_require__(/*! ./EncodingOutput */ "./models/EncodingOutput.ts");
|
|
76955
|
+
/**
|
|
76956
|
+
* @export
|
|
76957
|
+
* @class KantarWatermark
|
|
76958
|
+
*/
|
|
76959
|
+
var KantarWatermark = /** @class */ (function (_super) {
|
|
76960
|
+
__extends(KantarWatermark, _super);
|
|
76961
|
+
function KantarWatermark(obj) {
|
|
76962
|
+
var _this = _super.call(this, obj) || this;
|
|
76963
|
+
if (!obj) {
|
|
76964
|
+
return _this;
|
|
76965
|
+
}
|
|
76966
|
+
_this.login = (0, Mapper_1.map)(obj.login);
|
|
76967
|
+
_this.password = (0, Mapper_1.map)(obj.password);
|
|
76968
|
+
_this.licenseId = (0, Mapper_1.map)(obj.licenseId);
|
|
76969
|
+
_this.channelName = (0, Mapper_1.map)(obj.channelName);
|
|
76970
|
+
_this.contentReference = (0, Mapper_1.map)(obj.contentReference);
|
|
76971
|
+
_this.serverUrl = (0, Mapper_1.map)(obj.serverUrl);
|
|
76972
|
+
_this.reportOutputs = (0, Mapper_1.mapArray)(obj.reportOutputs, EncodingOutput_1.default);
|
|
76973
|
+
return _this;
|
|
76974
|
+
}
|
|
76975
|
+
return KantarWatermark;
|
|
76976
|
+
}(BitmovinResponse_1.default));
|
|
76977
|
+
exports.KantarWatermark = KantarWatermark;
|
|
76978
|
+
exports["default"] = KantarWatermark;
|
|
76979
|
+
|
|
76980
|
+
|
|
76746
76981
|
/***/ }),
|
|
76747
76982
|
|
|
76748
76983
|
/***/ "./models/Keyframe.ts":
|
|
@@ -77160,10 +77395,259 @@ var LiveEncodingEventName;
|
|
|
77160
77395
|
LiveEncodingEventName["RESYNCING"] = "RESYNCING";
|
|
77161
77396
|
LiveEncodingEventName["IDLE"] = "IDLE";
|
|
77162
77397
|
LiveEncodingEventName["ERROR"] = "ERROR";
|
|
77398
|
+
LiveEncodingEventName["WARNING"] = "WARNING";
|
|
77399
|
+
LiveEncodingEventName["PICTURE_TIMING"] = "PICTURE_TIMING";
|
|
77400
|
+
LiveEncodingEventName["INFO"] = "INFO";
|
|
77163
77401
|
})(LiveEncodingEventName || (exports.LiveEncodingEventName = LiveEncodingEventName = {}));
|
|
77164
77402
|
exports["default"] = LiveEncodingEventName;
|
|
77165
77403
|
|
|
77166
77404
|
|
|
77405
|
+
/***/ }),
|
|
77406
|
+
|
|
77407
|
+
/***/ "./models/LiveEncodingHeartbeat.ts":
|
|
77408
|
+
/*!*****************************************!*\
|
|
77409
|
+
!*** ./models/LiveEncodingHeartbeat.ts ***!
|
|
77410
|
+
\*****************************************/
|
|
77411
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77412
|
+
|
|
77413
|
+
"use strict";
|
|
77414
|
+
|
|
77415
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77416
|
+
exports.LiveEncodingHeartbeat = void 0;
|
|
77417
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77418
|
+
var LiveEncodingHeartbeatEvent_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatEvent */ "./models/LiveEncodingHeartbeatEvent.ts");
|
|
77419
|
+
var LiveEncodingHeartbeatIngest_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngest */ "./models/LiveEncodingHeartbeatIngest.ts");
|
|
77420
|
+
/**
|
|
77421
|
+
* Heartbeat data for a Live Encoding.
|
|
77422
|
+
* @export
|
|
77423
|
+
* @class LiveEncodingHeartbeat
|
|
77424
|
+
*/
|
|
77425
|
+
var LiveEncodingHeartbeat = /** @class */ (function () {
|
|
77426
|
+
function LiveEncodingHeartbeat(obj) {
|
|
77427
|
+
if (!obj) {
|
|
77428
|
+
return;
|
|
77429
|
+
}
|
|
77430
|
+
this.timestamp = (0, Mapper_1.map)(obj.timestamp, Date);
|
|
77431
|
+
this.ingest = (0, Mapper_1.map)(obj.ingest, LiveEncodingHeartbeatIngest_1.default);
|
|
77432
|
+
this.events = (0, Mapper_1.mapArray)(obj.events, LiveEncodingHeartbeatEvent_1.default);
|
|
77433
|
+
}
|
|
77434
|
+
return LiveEncodingHeartbeat;
|
|
77435
|
+
}());
|
|
77436
|
+
exports.LiveEncodingHeartbeat = LiveEncodingHeartbeat;
|
|
77437
|
+
exports["default"] = LiveEncodingHeartbeat;
|
|
77438
|
+
|
|
77439
|
+
|
|
77440
|
+
/***/ }),
|
|
77441
|
+
|
|
77442
|
+
/***/ "./models/LiveEncodingHeartbeatEvent.ts":
|
|
77443
|
+
/*!**********************************************!*\
|
|
77444
|
+
!*** ./models/LiveEncodingHeartbeatEvent.ts ***!
|
|
77445
|
+
\**********************************************/
|
|
77446
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77447
|
+
|
|
77448
|
+
"use strict";
|
|
77449
|
+
|
|
77450
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77451
|
+
exports.LiveEncodingHeartbeatEvent = void 0;
|
|
77452
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77453
|
+
var LiveEncodingHeartbeatEventDetails_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatEventDetails */ "./models/LiveEncodingHeartbeatEventDetails.ts");
|
|
77454
|
+
/**
|
|
77455
|
+
* @export
|
|
77456
|
+
* @class LiveEncodingHeartbeatEvent
|
|
77457
|
+
*/
|
|
77458
|
+
var LiveEncodingHeartbeatEvent = /** @class */ (function () {
|
|
77459
|
+
function LiveEncodingHeartbeatEvent(obj) {
|
|
77460
|
+
if (!obj) {
|
|
77461
|
+
return;
|
|
77462
|
+
}
|
|
77463
|
+
this.time = (0, Mapper_1.map)(obj.time, Date);
|
|
77464
|
+
this.details = (0, Mapper_1.map)(obj.details, LiveEncodingHeartbeatEventDetails_1.default);
|
|
77465
|
+
}
|
|
77466
|
+
return LiveEncodingHeartbeatEvent;
|
|
77467
|
+
}());
|
|
77468
|
+
exports.LiveEncodingHeartbeatEvent = LiveEncodingHeartbeatEvent;
|
|
77469
|
+
exports["default"] = LiveEncodingHeartbeatEvent;
|
|
77470
|
+
|
|
77471
|
+
|
|
77472
|
+
/***/ }),
|
|
77473
|
+
|
|
77474
|
+
/***/ "./models/LiveEncodingHeartbeatEventDetails.ts":
|
|
77475
|
+
/*!*****************************************************!*\
|
|
77476
|
+
!*** ./models/LiveEncodingHeartbeatEventDetails.ts ***!
|
|
77477
|
+
\*****************************************************/
|
|
77478
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77479
|
+
|
|
77480
|
+
"use strict";
|
|
77481
|
+
|
|
77482
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77483
|
+
exports.LiveEncodingHeartbeatEventDetails = void 0;
|
|
77484
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77485
|
+
/**
|
|
77486
|
+
* @export
|
|
77487
|
+
* @class LiveEncodingHeartbeatEventDetails
|
|
77488
|
+
*/
|
|
77489
|
+
var LiveEncodingHeartbeatEventDetails = /** @class */ (function () {
|
|
77490
|
+
function LiveEncodingHeartbeatEventDetails(obj) {
|
|
77491
|
+
if (!obj) {
|
|
77492
|
+
return;
|
|
77493
|
+
}
|
|
77494
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
77495
|
+
this.message = (0, Mapper_1.map)(obj.message);
|
|
77496
|
+
}
|
|
77497
|
+
return LiveEncodingHeartbeatEventDetails;
|
|
77498
|
+
}());
|
|
77499
|
+
exports.LiveEncodingHeartbeatEventDetails = LiveEncodingHeartbeatEventDetails;
|
|
77500
|
+
exports["default"] = LiveEncodingHeartbeatEventDetails;
|
|
77501
|
+
|
|
77502
|
+
|
|
77503
|
+
/***/ }),
|
|
77504
|
+
|
|
77505
|
+
/***/ "./models/LiveEncodingHeartbeatEventType.ts":
|
|
77506
|
+
/*!**************************************************!*\
|
|
77507
|
+
!*** ./models/LiveEncodingHeartbeatEventType.ts ***!
|
|
77508
|
+
\**************************************************/
|
|
77509
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
77510
|
+
|
|
77511
|
+
"use strict";
|
|
77512
|
+
|
|
77513
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77514
|
+
exports.LiveEncodingHeartbeatEventType = void 0;
|
|
77515
|
+
/**
|
|
77516
|
+
* @export
|
|
77517
|
+
* @enum {string}
|
|
77518
|
+
*/
|
|
77519
|
+
var LiveEncodingHeartbeatEventType;
|
|
77520
|
+
(function (LiveEncodingHeartbeatEventType) {
|
|
77521
|
+
LiveEncodingHeartbeatEventType["FIRST_CONNECT"] = "FIRST_CONNECT";
|
|
77522
|
+
LiveEncodingHeartbeatEventType["DISCONNECT"] = "DISCONNECT";
|
|
77523
|
+
LiveEncodingHeartbeatEventType["RECONNECT"] = "RECONNECT";
|
|
77524
|
+
LiveEncodingHeartbeatEventType["WARNING"] = "WARNING";
|
|
77525
|
+
LiveEncodingHeartbeatEventType["ERROR"] = "ERROR";
|
|
77526
|
+
})(LiveEncodingHeartbeatEventType || (exports.LiveEncodingHeartbeatEventType = LiveEncodingHeartbeatEventType = {}));
|
|
77527
|
+
exports["default"] = LiveEncodingHeartbeatEventType;
|
|
77528
|
+
|
|
77529
|
+
|
|
77530
|
+
/***/ }),
|
|
77531
|
+
|
|
77532
|
+
/***/ "./models/LiveEncodingHeartbeatIngest.ts":
|
|
77533
|
+
/*!***********************************************!*\
|
|
77534
|
+
!*** ./models/LiveEncodingHeartbeatIngest.ts ***!
|
|
77535
|
+
\***********************************************/
|
|
77536
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77537
|
+
|
|
77538
|
+
"use strict";
|
|
77539
|
+
|
|
77540
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77541
|
+
exports.LiveEncodingHeartbeatIngest = void 0;
|
|
77542
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77543
|
+
var LiveEncodingHeartbeatIngestPoint_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngestPoint */ "./models/LiveEncodingHeartbeatIngestPoint.ts");
|
|
77544
|
+
var LiveEncodingHeartbeatIngestStream_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatIngestStream */ "./models/LiveEncodingHeartbeatIngestStream.ts");
|
|
77545
|
+
var RtmpUserIngestInfo_1 = __webpack_require__(/*! ./RtmpUserIngestInfo */ "./models/RtmpUserIngestInfo.ts");
|
|
77546
|
+
/**
|
|
77547
|
+
* Information about the live ingestion status
|
|
77548
|
+
* @export
|
|
77549
|
+
* @class LiveEncodingHeartbeatIngest
|
|
77550
|
+
*/
|
|
77551
|
+
var LiveEncodingHeartbeatIngest = /** @class */ (function () {
|
|
77552
|
+
function LiveEncodingHeartbeatIngest(obj) {
|
|
77553
|
+
if (!obj) {
|
|
77554
|
+
return;
|
|
77555
|
+
}
|
|
77556
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
77557
|
+
this.healthy = (0, Mapper_1.map)(obj.healthy);
|
|
77558
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveEncodingHeartbeatIngestPoint_1.default);
|
|
77559
|
+
this.streams = (0, Mapper_1.mapArray)(obj.streams, LiveEncodingHeartbeatIngestStream_1.default);
|
|
77560
|
+
this.rtmpUserIngestInfo = (0, Mapper_1.map)(obj.rtmpUserIngestInfo, RtmpUserIngestInfo_1.default);
|
|
77561
|
+
}
|
|
77562
|
+
return LiveEncodingHeartbeatIngest;
|
|
77563
|
+
}());
|
|
77564
|
+
exports.LiveEncodingHeartbeatIngest = LiveEncodingHeartbeatIngest;
|
|
77565
|
+
exports["default"] = LiveEncodingHeartbeatIngest;
|
|
77566
|
+
|
|
77567
|
+
|
|
77568
|
+
/***/ }),
|
|
77569
|
+
|
|
77570
|
+
/***/ "./models/LiveEncodingHeartbeatIngestPoint.ts":
|
|
77571
|
+
/*!****************************************************!*\
|
|
77572
|
+
!*** ./models/LiveEncodingHeartbeatIngestPoint.ts ***!
|
|
77573
|
+
\****************************************************/
|
|
77574
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77575
|
+
|
|
77576
|
+
"use strict";
|
|
77577
|
+
|
|
77578
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77579
|
+
exports.LiveEncodingHeartbeatIngestPoint = void 0;
|
|
77580
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77581
|
+
/**
|
|
77582
|
+
* Details about an individual ingestPoint within the live ingest.
|
|
77583
|
+
* @export
|
|
77584
|
+
* @class LiveEncodingHeartbeatIngestPoint
|
|
77585
|
+
*/
|
|
77586
|
+
var LiveEncodingHeartbeatIngestPoint = /** @class */ (function () {
|
|
77587
|
+
function LiveEncodingHeartbeatIngestPoint(obj) {
|
|
77588
|
+
if (!obj) {
|
|
77589
|
+
return;
|
|
77590
|
+
}
|
|
77591
|
+
this.name = (0, Mapper_1.map)(obj.name);
|
|
77592
|
+
this.inputId = (0, Mapper_1.map)(obj.inputId);
|
|
77593
|
+
this.inputType = (0, Mapper_1.map)(obj.inputType);
|
|
77594
|
+
this.isActive = (0, Mapper_1.map)(obj.isActive);
|
|
77595
|
+
this.isBackup = (0, Mapper_1.map)(obj.isBackup);
|
|
77596
|
+
}
|
|
77597
|
+
return LiveEncodingHeartbeatIngestPoint;
|
|
77598
|
+
}());
|
|
77599
|
+
exports.LiveEncodingHeartbeatIngestPoint = LiveEncodingHeartbeatIngestPoint;
|
|
77600
|
+
exports["default"] = LiveEncodingHeartbeatIngestPoint;
|
|
77601
|
+
|
|
77602
|
+
|
|
77603
|
+
/***/ }),
|
|
77604
|
+
|
|
77605
|
+
/***/ "./models/LiveEncodingHeartbeatIngestStream.ts":
|
|
77606
|
+
/*!*****************************************************!*\
|
|
77607
|
+
!*** ./models/LiveEncodingHeartbeatIngestStream.ts ***!
|
|
77608
|
+
\*****************************************************/
|
|
77609
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
77610
|
+
|
|
77611
|
+
"use strict";
|
|
77612
|
+
|
|
77613
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
77614
|
+
exports.LiveEncodingHeartbeatIngestStream = void 0;
|
|
77615
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
77616
|
+
/**
|
|
77617
|
+
* Details about an individual stream within the live ingest.
|
|
77618
|
+
* @export
|
|
77619
|
+
* @class LiveEncodingHeartbeatIngestStream
|
|
77620
|
+
*/
|
|
77621
|
+
var LiveEncodingHeartbeatIngestStream = /** @class */ (function () {
|
|
77622
|
+
function LiveEncodingHeartbeatIngestStream(obj) {
|
|
77623
|
+
if (!obj) {
|
|
77624
|
+
return;
|
|
77625
|
+
}
|
|
77626
|
+
this.streamId = (0, Mapper_1.map)(obj.streamId);
|
|
77627
|
+
this.mediaType = (0, Mapper_1.map)(obj.mediaType);
|
|
77628
|
+
this.width = (0, Mapper_1.map)(obj.width);
|
|
77629
|
+
this.height = (0, Mapper_1.map)(obj.height);
|
|
77630
|
+
this.rate = (0, Mapper_1.map)(obj.rate);
|
|
77631
|
+
this.codec = (0, Mapper_1.map)(obj.codec);
|
|
77632
|
+
this.aspectRatio = (0, Mapper_1.map)(obj.aspectRatio);
|
|
77633
|
+
this.bitrate = (0, Mapper_1.map)(obj.bitrate);
|
|
77634
|
+
this.samplesReadPerSecondAvg = (0, Mapper_1.map)(obj.samplesReadPerSecondAvg);
|
|
77635
|
+
this.incomingBitrate = (0, Mapper_1.map)(obj.incomingBitrate);
|
|
77636
|
+
this.keyFrameIntervalMax = (0, Mapper_1.map)(obj.keyFrameIntervalMax);
|
|
77637
|
+
this.keyFrameIntervalAvg = (0, Mapper_1.map)(obj.keyFrameIntervalAvg);
|
|
77638
|
+
this.lastTimestamp = (0, Mapper_1.map)(obj.lastTimestamp);
|
|
77639
|
+
this.lastTimestampTimescale = (0, Mapper_1.map)(obj.lastTimestampTimescale);
|
|
77640
|
+
this.numberOfAudioChannels = (0, Mapper_1.map)(obj.numberOfAudioChannels);
|
|
77641
|
+
this.audioChannelFormat = (0, Mapper_1.map)(obj.audioChannelFormat);
|
|
77642
|
+
this.lastArrivalTime = (0, Mapper_1.map)(obj.lastArrivalTime, Date);
|
|
77643
|
+
this.healthy = (0, Mapper_1.map)(obj.healthy);
|
|
77644
|
+
}
|
|
77645
|
+
return LiveEncodingHeartbeatIngestStream;
|
|
77646
|
+
}());
|
|
77647
|
+
exports.LiveEncodingHeartbeatIngestStream = LiveEncodingHeartbeatIngestStream;
|
|
77648
|
+
exports["default"] = LiveEncodingHeartbeatIngestStream;
|
|
77649
|
+
|
|
77650
|
+
|
|
77167
77651
|
/***/ }),
|
|
77168
77652
|
|
|
77169
77653
|
/***/ "./models/LiveEncodingHeartbeatWebhook.ts":
|
|
@@ -77335,8 +77819,14 @@ var LiveEncodingStatsEventDetails = /** @class */ (function () {
|
|
|
77335
77819
|
}
|
|
77336
77820
|
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
77337
77821
|
this.message = (0, Mapper_1.map)(obj.message);
|
|
77338
|
-
this.
|
|
77339
|
-
this.
|
|
77822
|
+
this.source = (0, Mapper_1.map)(obj.source);
|
|
77823
|
+
this.year = (0, Mapper_1.map)(obj.year);
|
|
77824
|
+
this.month = (0, Mapper_1.map)(obj.month);
|
|
77825
|
+
this.day = (0, Mapper_1.map)(obj.day);
|
|
77826
|
+
this.hours = (0, Mapper_1.map)(obj.hours);
|
|
77827
|
+
this.minutes = (0, Mapper_1.map)(obj.minutes);
|
|
77828
|
+
this.seconds = (0, Mapper_1.map)(obj.seconds);
|
|
77829
|
+
this.microSeconds = (0, Mapper_1.map)(obj.microSeconds);
|
|
77340
77830
|
}
|
|
77341
77831
|
return LiveEncodingStatsEventDetails;
|
|
77342
77832
|
}());
|
|
@@ -83410,6 +83900,42 @@ exports.RtmpInput = RtmpInput;
|
|
|
83410
83900
|
exports["default"] = RtmpInput;
|
|
83411
83901
|
|
|
83412
83902
|
|
|
83903
|
+
/***/ }),
|
|
83904
|
+
|
|
83905
|
+
/***/ "./models/RtmpUserIngestInfo.ts":
|
|
83906
|
+
/*!**************************************!*\
|
|
83907
|
+
!*** ./models/RtmpUserIngestInfo.ts ***!
|
|
83908
|
+
\**************************************/
|
|
83909
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
83910
|
+
|
|
83911
|
+
"use strict";
|
|
83912
|
+
|
|
83913
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
83914
|
+
exports.RtmpUserIngestInfo = void 0;
|
|
83915
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
83916
|
+
/**
|
|
83917
|
+
* Details about user info from rtmp ingest.
|
|
83918
|
+
* @export
|
|
83919
|
+
* @class RtmpUserIngestInfo
|
|
83920
|
+
*/
|
|
83921
|
+
var RtmpUserIngestInfo = /** @class */ (function () {
|
|
83922
|
+
function RtmpUserIngestInfo(obj) {
|
|
83923
|
+
if (!obj) {
|
|
83924
|
+
return;
|
|
83925
|
+
}
|
|
83926
|
+
this.address = (0, Mapper_1.map)(obj.address);
|
|
83927
|
+
this.app = (0, Mapper_1.map)(obj.app);
|
|
83928
|
+
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
|
|
83929
|
+
this.flashVersion = (0, Mapper_1.map)(obj.flashVersion);
|
|
83930
|
+
this.clientId = (0, Mapper_1.map)(obj.clientId);
|
|
83931
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
83932
|
+
}
|
|
83933
|
+
return RtmpUserIngestInfo;
|
|
83934
|
+
}());
|
|
83935
|
+
exports.RtmpUserIngestInfo = RtmpUserIngestInfo;
|
|
83936
|
+
exports["default"] = RtmpUserIngestInfo;
|
|
83937
|
+
|
|
83938
|
+
|
|
83413
83939
|
/***/ }),
|
|
83414
83940
|
|
|
83415
83941
|
/***/ "./models/S3AccessStyle.ts":
|
|
@@ -91349,6 +91875,7 @@ __exportStar(__webpack_require__(/*! ./CheckOutputPermissionsResponse */ "./mode
|
|
|
91349
91875
|
__exportStar(__webpack_require__(/*! ./ChromaLocation */ "./models/ChromaLocation.ts"), exports);
|
|
91350
91876
|
__exportStar(__webpack_require__(/*! ./ChunkedTextMuxing */ "./models/ChunkedTextMuxing.ts"), exports);
|
|
91351
91877
|
__exportStar(__webpack_require__(/*! ./ClearKeyDrm */ "./models/ClearKeyDrm.ts"), exports);
|
|
91878
|
+
__exportStar(__webpack_require__(/*! ./ClockSynchronizationMode */ "./models/ClockSynchronizationMode.ts"), exports);
|
|
91352
91879
|
__exportStar(__webpack_require__(/*! ./ClosedCaptionsMediaInfo */ "./models/ClosedCaptionsMediaInfo.ts"), exports);
|
|
91353
91880
|
__exportStar(__webpack_require__(/*! ./CloudRegion */ "./models/CloudRegion.ts"), exports);
|
|
91354
91881
|
__exportStar(__webpack_require__(/*! ./CmafMuxing */ "./models/CmafMuxing.ts"), exports);
|
|
@@ -91615,6 +92142,7 @@ __exportStar(__webpack_require__(/*! ./InterlaceMode */ "./models/InterlaceMode.
|
|
|
91615
92142
|
__exportStar(__webpack_require__(/*! ./Invitation */ "./models/Invitation.ts"), exports);
|
|
91616
92143
|
__exportStar(__webpack_require__(/*! ./InvitationStatus */ "./models/InvitationStatus.ts"), exports);
|
|
91617
92144
|
__exportStar(__webpack_require__(/*! ./IvSize */ "./models/IvSize.ts"), exports);
|
|
92145
|
+
__exportStar(__webpack_require__(/*! ./KantarWatermark */ "./models/KantarWatermark.ts"), exports);
|
|
91618
92146
|
__exportStar(__webpack_require__(/*! ./Keyframe */ "./models/Keyframe.ts"), exports);
|
|
91619
92147
|
__exportStar(__webpack_require__(/*! ./Label */ "./models/Label.ts"), exports);
|
|
91620
92148
|
__exportStar(__webpack_require__(/*! ./LevelH262 */ "./models/LevelH262.ts"), exports);
|
|
@@ -91628,6 +92156,13 @@ __exportStar(__webpack_require__(/*! ./LiveDashManifest */ "./models/LiveDashMan
|
|
|
91628
92156
|
__exportStar(__webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts"), exports);
|
|
91629
92157
|
__exportStar(__webpack_require__(/*! ./LiveEncodingCodec */ "./models/LiveEncodingCodec.ts"), exports);
|
|
91630
92158
|
__exportStar(__webpack_require__(/*! ./LiveEncodingEventName */ "./models/LiveEncodingEventName.ts"), exports);
|
|
92159
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeat */ "./models/LiveEncodingHeartbeat.ts"), exports);
|
|
92160
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEvent */ "./models/LiveEncodingHeartbeatEvent.ts"), exports);
|
|
92161
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEventDetails */ "./models/LiveEncodingHeartbeatEventDetails.ts"), exports);
|
|
92162
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatEventType */ "./models/LiveEncodingHeartbeatEventType.ts"), exports);
|
|
92163
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngest */ "./models/LiveEncodingHeartbeatIngest.ts"), exports);
|
|
92164
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngestPoint */ "./models/LiveEncodingHeartbeatIngestPoint.ts"), exports);
|
|
92165
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatIngestStream */ "./models/LiveEncodingHeartbeatIngestStream.ts"), exports);
|
|
91631
92166
|
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatWebhook */ "./models/LiveEncodingHeartbeatWebhook.ts"), exports);
|
|
91632
92167
|
__exportStar(__webpack_require__(/*! ./LiveEncodingOptionsStatistics */ "./models/LiveEncodingOptionsStatistics.ts"), exports);
|
|
91633
92168
|
__exportStar(__webpack_require__(/*! ./LiveEncodingStats */ "./models/LiveEncodingStats.ts"), exports);
|
|
@@ -91794,6 +92329,7 @@ __exportStar(__webpack_require__(/*! ./ReuploadSettings */ "./models/ReuploadSet
|
|
|
91794
92329
|
__exportStar(__webpack_require__(/*! ./RotateFilter */ "./models/RotateFilter.ts"), exports);
|
|
91795
92330
|
__exportStar(__webpack_require__(/*! ./RtmpIngestPoint */ "./models/RtmpIngestPoint.ts"), exports);
|
|
91796
92331
|
__exportStar(__webpack_require__(/*! ./RtmpInput */ "./models/RtmpInput.ts"), exports);
|
|
92332
|
+
__exportStar(__webpack_require__(/*! ./RtmpUserIngestInfo */ "./models/RtmpUserIngestInfo.ts"), exports);
|
|
91797
92333
|
__exportStar(__webpack_require__(/*! ./S3AccessStyle */ "./models/S3AccessStyle.ts"), exports);
|
|
91798
92334
|
__exportStar(__webpack_require__(/*! ./S3Input */ "./models/S3Input.ts"), exports);
|
|
91799
92335
|
__exportStar(__webpack_require__(/*! ./S3Output */ "./models/S3Output.ts"), exports);
|