@bitmovin/api-sdk 1.211.0 → 1.212.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 +901 -34
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/live/LiveApi.d.ts +2 -0
- package/dist/encoding/live/LiveApi.js +2 -0
- package/dist/encoding/live/standbyPools/StandbyPoolsApi.d.ts +58 -0
- package/dist/encoding/live/standbyPools/StandbyPoolsApi.js +108 -0
- package/dist/encoding/live/standbyPools/actions/ActionsApi.d.ts +26 -0
- package/dist/encoding/live/standbyPools/actions/ActionsApi.js +62 -0
- package/dist/encoding/live/standbyPools/encodings/EncodingsApi.d.ts +31 -0
- package/dist/encoding/live/standbyPools/encodings/EncodingsApi.js +75 -0
- package/dist/encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.d.ts +50 -0
- package/dist/encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.js +45 -0
- package/dist/encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.d.ts +50 -0
- package/dist/encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.js +45 -0
- package/dist/encoding/live/standbyPools/logs/LogsApi.d.ts +22 -0
- package/dist/encoding/live/standbyPools/logs/LogsApi.js +57 -0
- package/dist/models/LiveStandbyPoolDetails.d.ts +15 -0
- package/dist/models/LiveStandbyPoolDetails.js +38 -0
- package/dist/models/LiveStandbyPoolEncoding.d.ts +47 -0
- package/dist/models/LiveStandbyPoolEncoding.js +27 -0
- package/dist/models/LiveStandbyPoolEncodingIngestPoint.d.ts +20 -0
- package/dist/models/LiveStandbyPoolEncodingIngestPoint.js +20 -0
- package/dist/models/LiveStandbyPoolEncodingManifest.d.ts +26 -0
- package/dist/models/LiveStandbyPoolEncodingManifest.js +21 -0
- package/dist/models/LiveStandbyPoolEncodingManifestType.d.ts +10 -0
- package/dist/models/LiveStandbyPoolEncodingManifestType.js +14 -0
- package/dist/models/LiveStandbyPoolEncodingStatus.d.ts +16 -0
- package/dist/models/LiveStandbyPoolEncodingStatus.js +20 -0
- package/dist/models/LiveStandbyPoolEventLog.d.ts +50 -0
- package/dist/models/LiveStandbyPoolEventLog.js +25 -0
- package/dist/models/LiveStandbyPoolEventLogType.d.ts +11 -0
- package/dist/models/LiveStandbyPoolEventLogType.js +15 -0
- package/dist/models/LiveStandbyPoolRequest.d.ts +21 -0
- package/dist/models/LiveStandbyPoolRequest.js +39 -0
- package/dist/models/LiveStandbyPoolResponse.d.ts +45 -0
- package/dist/models/LiveStandbyPoolResponse.js +43 -0
- package/dist/models/LiveStandbyPoolStatus.d.ts +10 -0
- package/dist/models/LiveStandbyPoolStatus.js +14 -0
- package/dist/models/LiveStandbyPoolUpdate.d.ts +20 -0
- package/dist/models/LiveStandbyPoolUpdate.js +20 -0
- package/dist/models/Mp4Muxing.d.ts +0 -6
- package/dist/models/Mp4Muxing.js +0 -2
- package/dist/models/index.d.ts +12 -1
- package/dist/models/index.js +12 -1
- package/package.json +1 -1
- package/dist/models/TimeCode.d.ts +0 -14
- package/dist/models/TimeCode.js +0 -19
|
@@ -6029,7 +6029,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6029
6029
|
var headers = {
|
|
6030
6030
|
'X-Api-Key': apiKey,
|
|
6031
6031
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6032
|
-
'X-Api-Client-Version': '1.
|
|
6032
|
+
'X-Api-Client-Version': '1.212.0',
|
|
6033
6033
|
'Content-Type': 'application/json'
|
|
6034
6034
|
};
|
|
6035
6035
|
if (tenantOrgId) {
|
|
@@ -41037,6 +41037,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
41037
41037
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41038
41038
|
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41039
41039
|
var StreamKeysApi_1 = __webpack_require__(/*! ./streamKeys/StreamKeysApi */ "./encoding/live/streamKeys/StreamKeysApi.ts");
|
|
41040
|
+
var StandbyPoolsApi_1 = __webpack_require__(/*! ./standbyPools/StandbyPoolsApi */ "./encoding/live/standbyPools/StandbyPoolsApi.ts");
|
|
41040
41041
|
/**
|
|
41041
41042
|
* LiveApi - object-oriented interface
|
|
41042
41043
|
* @export
|
|
@@ -41048,6 +41049,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
41048
41049
|
function LiveApi(configuration) {
|
|
41049
41050
|
var _this = _super.call(this, configuration) || this;
|
|
41050
41051
|
_this.streamKeys = new StreamKeysApi_1.default(configuration);
|
|
41052
|
+
_this.standbyPools = new StandbyPoolsApi_1.default(configuration);
|
|
41051
41053
|
return _this;
|
|
41052
41054
|
}
|
|
41053
41055
|
return LiveApi;
|
|
@@ -41055,6 +41057,464 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
41055
41057
|
exports["default"] = LiveApi;
|
|
41056
41058
|
|
|
41057
41059
|
|
|
41060
|
+
/***/ }),
|
|
41061
|
+
|
|
41062
|
+
/***/ "./encoding/live/standbyPools/StandbyPoolsApi.ts":
|
|
41063
|
+
/*!*******************************************************!*\
|
|
41064
|
+
!*** ./encoding/live/standbyPools/StandbyPoolsApi.ts ***!
|
|
41065
|
+
\*******************************************************/
|
|
41066
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41067
|
+
|
|
41068
|
+
"use strict";
|
|
41069
|
+
|
|
41070
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41071
|
+
var extendStatics = function (d, b) {
|
|
41072
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41073
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41074
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41075
|
+
return extendStatics(d, b);
|
|
41076
|
+
};
|
|
41077
|
+
return function (d, b) {
|
|
41078
|
+
if (typeof b !== "function" && b !== null)
|
|
41079
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41080
|
+
extendStatics(d, b);
|
|
41081
|
+
function __() { this.constructor = d; }
|
|
41082
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41083
|
+
};
|
|
41084
|
+
})();
|
|
41085
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41086
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41087
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
41088
|
+
var ActionsApi_1 = __webpack_require__(/*! ./actions/ActionsApi */ "./encoding/live/standbyPools/actions/ActionsApi.ts");
|
|
41089
|
+
var EncodingsApi_1 = __webpack_require__(/*! ./encodings/EncodingsApi */ "./encoding/live/standbyPools/encodings/EncodingsApi.ts");
|
|
41090
|
+
var LogsApi_1 = __webpack_require__(/*! ./logs/LogsApi */ "./encoding/live/standbyPools/logs/LogsApi.ts");
|
|
41091
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
41092
|
+
var LiveStandbyPoolDetails_1 = __webpack_require__(/*! ../../../models/LiveStandbyPoolDetails */ "./models/LiveStandbyPoolDetails.ts");
|
|
41093
|
+
var LiveStandbyPoolResponse_1 = __webpack_require__(/*! ../../../models/LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts");
|
|
41094
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41095
|
+
/**
|
|
41096
|
+
* StandbyPoolsApi - object-oriented interface
|
|
41097
|
+
* @export
|
|
41098
|
+
* @class StandbyPoolsApi
|
|
41099
|
+
* @extends {BaseAPI}
|
|
41100
|
+
*/
|
|
41101
|
+
var StandbyPoolsApi = /** @class */ (function (_super) {
|
|
41102
|
+
__extends(StandbyPoolsApi, _super);
|
|
41103
|
+
function StandbyPoolsApi(configuration) {
|
|
41104
|
+
var _this = _super.call(this, configuration) || this;
|
|
41105
|
+
_this.actions = new ActionsApi_1.default(configuration);
|
|
41106
|
+
_this.encodings = new EncodingsApi_1.default(configuration);
|
|
41107
|
+
_this.logs = new LogsApi_1.default(configuration);
|
|
41108
|
+
return _this;
|
|
41109
|
+
}
|
|
41110
|
+
/**
|
|
41111
|
+
* @summary Create new standby pool
|
|
41112
|
+
* @param {LiveStandbyPoolRequest} liveStandbyPoolRequest The pool to be created
|
|
41113
|
+
* @throws {BitmovinError}
|
|
41114
|
+
* @memberof StandbyPoolsApi
|
|
41115
|
+
*/
|
|
41116
|
+
StandbyPoolsApi.prototype.create = function (liveStandbyPoolRequest) {
|
|
41117
|
+
return this.restClient.post('/encoding/live/standby-pools', {}, liveStandbyPoolRequest).then(function (response) {
|
|
41118
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41119
|
+
});
|
|
41120
|
+
};
|
|
41121
|
+
/**
|
|
41122
|
+
* @summary Delete standby pool by id
|
|
41123
|
+
* @param {string} poolId Id of the standby pool
|
|
41124
|
+
* @throws {BitmovinError}
|
|
41125
|
+
* @memberof StandbyPoolsApi
|
|
41126
|
+
*/
|
|
41127
|
+
StandbyPoolsApi.prototype.delete = function (poolId) {
|
|
41128
|
+
var pathParamMap = {
|
|
41129
|
+
pool_id: poolId
|
|
41130
|
+
};
|
|
41131
|
+
return this.restClient.delete('/encoding/live/standby-pools/{pool_id}', pathParamMap).then(function (response) {
|
|
41132
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
41133
|
+
});
|
|
41134
|
+
};
|
|
41135
|
+
/**
|
|
41136
|
+
* @summary Get details of a standby pool by id
|
|
41137
|
+
* @param {string} poolId Id of the standby pool
|
|
41138
|
+
* @throws {BitmovinError}
|
|
41139
|
+
* @memberof StandbyPoolsApi
|
|
41140
|
+
*/
|
|
41141
|
+
StandbyPoolsApi.prototype.get = function (poolId) {
|
|
41142
|
+
var pathParamMap = {
|
|
41143
|
+
pool_id: poolId
|
|
41144
|
+
};
|
|
41145
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}', pathParamMap).then(function (response) {
|
|
41146
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41147
|
+
});
|
|
41148
|
+
};
|
|
41149
|
+
/**
|
|
41150
|
+
* @summary List Standby pools
|
|
41151
|
+
* @throws {BitmovinError}
|
|
41152
|
+
* @memberof StandbyPoolsApi
|
|
41153
|
+
*/
|
|
41154
|
+
StandbyPoolsApi.prototype.list = function () {
|
|
41155
|
+
return this.restClient.get('/encoding/live/standby-pools', {}).then(function (response) {
|
|
41156
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolResponse_1.default);
|
|
41157
|
+
});
|
|
41158
|
+
};
|
|
41159
|
+
/**
|
|
41160
|
+
* @summary Partially update standby pool by id
|
|
41161
|
+
* @param {string} poolId Id of the standby pool
|
|
41162
|
+
* @param {LiveStandbyPoolUpdate} liveStandbyPoolUpdate The updated standby pool object.
|
|
41163
|
+
* @throws {BitmovinError}
|
|
41164
|
+
* @memberof StandbyPoolsApi
|
|
41165
|
+
*/
|
|
41166
|
+
StandbyPoolsApi.prototype.patch = function (poolId, liveStandbyPoolUpdate) {
|
|
41167
|
+
var pathParamMap = {
|
|
41168
|
+
pool_id: poolId
|
|
41169
|
+
};
|
|
41170
|
+
return this.restClient.patch('/encoding/live/standby-pools/{pool_id}', pathParamMap, liveStandbyPoolUpdate).then(function (response) {
|
|
41171
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41172
|
+
});
|
|
41173
|
+
};
|
|
41174
|
+
return StandbyPoolsApi;
|
|
41175
|
+
}(BaseAPI_1.BaseAPI));
|
|
41176
|
+
exports["default"] = StandbyPoolsApi;
|
|
41177
|
+
|
|
41178
|
+
|
|
41179
|
+
/***/ }),
|
|
41180
|
+
|
|
41181
|
+
/***/ "./encoding/live/standbyPools/actions/ActionsApi.ts":
|
|
41182
|
+
/*!**********************************************************!*\
|
|
41183
|
+
!*** ./encoding/live/standbyPools/actions/ActionsApi.ts ***!
|
|
41184
|
+
\**********************************************************/
|
|
41185
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41186
|
+
|
|
41187
|
+
"use strict";
|
|
41188
|
+
|
|
41189
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41190
|
+
var extendStatics = function (d, b) {
|
|
41191
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41192
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41193
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41194
|
+
return extendStatics(d, b);
|
|
41195
|
+
};
|
|
41196
|
+
return function (d, b) {
|
|
41197
|
+
if (typeof b !== "function" && b !== null)
|
|
41198
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41199
|
+
extendStatics(d, b);
|
|
41200
|
+
function __() { this.constructor = d; }
|
|
41201
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41202
|
+
};
|
|
41203
|
+
})();
|
|
41204
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41205
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41206
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
41207
|
+
var LiveStandbyPoolEncoding_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts");
|
|
41208
|
+
/**
|
|
41209
|
+
* ActionsApi - object-oriented interface
|
|
41210
|
+
* @export
|
|
41211
|
+
* @class ActionsApi
|
|
41212
|
+
* @extends {BaseAPI}
|
|
41213
|
+
*/
|
|
41214
|
+
var ActionsApi = /** @class */ (function (_super) {
|
|
41215
|
+
__extends(ActionsApi, _super);
|
|
41216
|
+
function ActionsApi(configuration) {
|
|
41217
|
+
return _super.call(this, configuration) || this;
|
|
41218
|
+
}
|
|
41219
|
+
/**
|
|
41220
|
+
* @summary Acquire an encoding from a standby pool
|
|
41221
|
+
* @param {string} poolId Id of the standby pool
|
|
41222
|
+
* @throws {BitmovinError}
|
|
41223
|
+
* @memberof ActionsApi
|
|
41224
|
+
*/
|
|
41225
|
+
ActionsApi.prototype.acquireEncoding = function (poolId) {
|
|
41226
|
+
var pathParamMap = {
|
|
41227
|
+
pool_id: poolId
|
|
41228
|
+
};
|
|
41229
|
+
return this.restClient.post('/encoding/live/standby-pools/{pool_id}/actions/acquire-encoding', pathParamMap).then(function (response) {
|
|
41230
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolEncoding_1.default);
|
|
41231
|
+
});
|
|
41232
|
+
};
|
|
41233
|
+
/**
|
|
41234
|
+
* @summary Delete error encodings from the standby pool
|
|
41235
|
+
* @param {string} poolId Id of the standby pool
|
|
41236
|
+
* @throws {BitmovinError}
|
|
41237
|
+
* @memberof ActionsApi
|
|
41238
|
+
*/
|
|
41239
|
+
ActionsApi.prototype.deleteErrorEncodings = function (poolId) {
|
|
41240
|
+
var pathParamMap = {
|
|
41241
|
+
pool_id: poolId
|
|
41242
|
+
};
|
|
41243
|
+
return this.restClient.post('/encoding/live/standby-pools/{pool_id}/actions/delete-error-encodings', pathParamMap).then(function (response) {
|
|
41244
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolEncoding_1.default);
|
|
41245
|
+
});
|
|
41246
|
+
};
|
|
41247
|
+
return ActionsApi;
|
|
41248
|
+
}(BaseAPI_1.BaseAPI));
|
|
41249
|
+
exports["default"] = ActionsApi;
|
|
41250
|
+
|
|
41251
|
+
|
|
41252
|
+
/***/ }),
|
|
41253
|
+
|
|
41254
|
+
/***/ "./encoding/live/standbyPools/encodings/EncodingsApi.ts":
|
|
41255
|
+
/*!**************************************************************!*\
|
|
41256
|
+
!*** ./encoding/live/standbyPools/encodings/EncodingsApi.ts ***!
|
|
41257
|
+
\**************************************************************/
|
|
41258
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41259
|
+
|
|
41260
|
+
"use strict";
|
|
41261
|
+
|
|
41262
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41263
|
+
var extendStatics = function (d, b) {
|
|
41264
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41265
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41266
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41267
|
+
return extendStatics(d, b);
|
|
41268
|
+
};
|
|
41269
|
+
return function (d, b) {
|
|
41270
|
+
if (typeof b !== "function" && b !== null)
|
|
41271
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41272
|
+
extendStatics(d, b);
|
|
41273
|
+
function __() { this.constructor = d; }
|
|
41274
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41275
|
+
};
|
|
41276
|
+
})();
|
|
41277
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41278
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41279
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
41280
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
41281
|
+
var LiveStandbyPoolEncoding_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts");
|
|
41282
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41283
|
+
var LiveStandbyPoolEncodingListQueryParams_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingListQueryParams */ "./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts");
|
|
41284
|
+
/**
|
|
41285
|
+
* EncodingsApi - object-oriented interface
|
|
41286
|
+
* @export
|
|
41287
|
+
* @class EncodingsApi
|
|
41288
|
+
* @extends {BaseAPI}
|
|
41289
|
+
*/
|
|
41290
|
+
var EncodingsApi = /** @class */ (function (_super) {
|
|
41291
|
+
__extends(EncodingsApi, _super);
|
|
41292
|
+
function EncodingsApi(configuration) {
|
|
41293
|
+
return _super.call(this, configuration) || this;
|
|
41294
|
+
}
|
|
41295
|
+
/**
|
|
41296
|
+
* @summary Delete encoding from pool by id
|
|
41297
|
+
* @param {string} poolId Id of the standby pool
|
|
41298
|
+
* @param {string} id Id of the standby pool encoding
|
|
41299
|
+
* @throws {BitmovinError}
|
|
41300
|
+
* @memberof EncodingsApi
|
|
41301
|
+
*/
|
|
41302
|
+
EncodingsApi.prototype.delete = function (poolId, id) {
|
|
41303
|
+
var pathParamMap = {
|
|
41304
|
+
pool_id: poolId,
|
|
41305
|
+
id: id
|
|
41306
|
+
};
|
|
41307
|
+
return this.restClient.delete('/encoding/live/standby-pools/{pool_id}/encodings/{id}', pathParamMap).then(function (response) {
|
|
41308
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
41309
|
+
});
|
|
41310
|
+
};
|
|
41311
|
+
/**
|
|
41312
|
+
* @summary List encodings from a standby pool
|
|
41313
|
+
* @param {string} poolId Id of the standby pool
|
|
41314
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41315
|
+
* @throws {BitmovinError}
|
|
41316
|
+
* @memberof EncodingsApi
|
|
41317
|
+
*/
|
|
41318
|
+
EncodingsApi.prototype.list = function (poolId, queryParameters) {
|
|
41319
|
+
var pathParamMap = {
|
|
41320
|
+
pool_id: poolId
|
|
41321
|
+
};
|
|
41322
|
+
var queryParams = {};
|
|
41323
|
+
if (typeof queryParameters === 'function') {
|
|
41324
|
+
queryParams = queryParameters(new LiveStandbyPoolEncodingListQueryParams_1.LiveStandbyPoolEncodingListQueryParamsBuilder()).buildQueryParams();
|
|
41325
|
+
}
|
|
41326
|
+
else if (queryParameters) {
|
|
41327
|
+
queryParams = queryParameters;
|
|
41328
|
+
}
|
|
41329
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}/encodings', pathParamMap, queryParams).then(function (response) {
|
|
41330
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolEncoding_1.default);
|
|
41331
|
+
});
|
|
41332
|
+
};
|
|
41333
|
+
return EncodingsApi;
|
|
41334
|
+
}(BaseAPI_1.BaseAPI));
|
|
41335
|
+
exports["default"] = EncodingsApi;
|
|
41336
|
+
|
|
41337
|
+
|
|
41338
|
+
/***/ }),
|
|
41339
|
+
|
|
41340
|
+
/***/ "./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts":
|
|
41341
|
+
/*!****************************************************************************************!*\
|
|
41342
|
+
!*** ./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts ***!
|
|
41343
|
+
\****************************************************************************************/
|
|
41344
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
41345
|
+
|
|
41346
|
+
"use strict";
|
|
41347
|
+
|
|
41348
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41349
|
+
exports.LiveStandbyPoolEncodingListQueryParamsBuilder = void 0;
|
|
41350
|
+
var LiveStandbyPoolEncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
41351
|
+
function LiveStandbyPoolEncodingListQueryParamsBuilder() {
|
|
41352
|
+
this.internalParams = {};
|
|
41353
|
+
}
|
|
41354
|
+
/**
|
|
41355
|
+
*
|
|
41356
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
41357
|
+
*/
|
|
41358
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
41359
|
+
this.internalParams.offset = offset;
|
|
41360
|
+
return this;
|
|
41361
|
+
};
|
|
41362
|
+
/**
|
|
41363
|
+
*
|
|
41364
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
41365
|
+
*/
|
|
41366
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
41367
|
+
this.internalParams.limit = limit;
|
|
41368
|
+
return this;
|
|
41369
|
+
};
|
|
41370
|
+
/**
|
|
41371
|
+
*
|
|
41372
|
+
* @param sort Order list result according a stream key attribute. The fields that can be used for sorting are: + `createdAt` + `name` + `status`
|
|
41373
|
+
*/
|
|
41374
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
41375
|
+
this.internalParams.sort = sort;
|
|
41376
|
+
return this;
|
|
41377
|
+
};
|
|
41378
|
+
/**
|
|
41379
|
+
*
|
|
41380
|
+
* @param status Filter standby encodings by status
|
|
41381
|
+
*/
|
|
41382
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.status = function (status) {
|
|
41383
|
+
this.internalParams.status = status;
|
|
41384
|
+
return this;
|
|
41385
|
+
};
|
|
41386
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
41387
|
+
return this.internalParams;
|
|
41388
|
+
};
|
|
41389
|
+
return LiveStandbyPoolEncodingListQueryParamsBuilder;
|
|
41390
|
+
}());
|
|
41391
|
+
exports.LiveStandbyPoolEncodingListQueryParamsBuilder = LiveStandbyPoolEncodingListQueryParamsBuilder;
|
|
41392
|
+
|
|
41393
|
+
|
|
41394
|
+
/***/ }),
|
|
41395
|
+
|
|
41396
|
+
/***/ "./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts":
|
|
41397
|
+
/*!***********************************************************************************!*\
|
|
41398
|
+
!*** ./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts ***!
|
|
41399
|
+
\***********************************************************************************/
|
|
41400
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
41401
|
+
|
|
41402
|
+
"use strict";
|
|
41403
|
+
|
|
41404
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41405
|
+
exports.LiveStandbyPoolEventLogListQueryParamsBuilder = void 0;
|
|
41406
|
+
var LiveStandbyPoolEventLogListQueryParamsBuilder = /** @class */ (function () {
|
|
41407
|
+
function LiveStandbyPoolEventLogListQueryParamsBuilder() {
|
|
41408
|
+
this.internalParams = {};
|
|
41409
|
+
}
|
|
41410
|
+
/**
|
|
41411
|
+
*
|
|
41412
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
41413
|
+
*/
|
|
41414
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
41415
|
+
this.internalParams.offset = offset;
|
|
41416
|
+
return this;
|
|
41417
|
+
};
|
|
41418
|
+
/**
|
|
41419
|
+
*
|
|
41420
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
41421
|
+
*/
|
|
41422
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
41423
|
+
this.internalParams.limit = limit;
|
|
41424
|
+
return this;
|
|
41425
|
+
};
|
|
41426
|
+
/**
|
|
41427
|
+
*
|
|
41428
|
+
* @param sort Order list result according a event log attribute. The fields that can be used for sorting are: + `createdAt` + `eventType` + `standByPoolId`
|
|
41429
|
+
*/
|
|
41430
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
41431
|
+
this.internalParams.sort = sort;
|
|
41432
|
+
return this;
|
|
41433
|
+
};
|
|
41434
|
+
/**
|
|
41435
|
+
*
|
|
41436
|
+
* @param eventType Filter event logs by log type. Allowed values are: + `INFO` + `WARN` + `ERROR`
|
|
41437
|
+
*/
|
|
41438
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.eventType = function (eventType) {
|
|
41439
|
+
this.internalParams.eventType = eventType;
|
|
41440
|
+
return this;
|
|
41441
|
+
};
|
|
41442
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
41443
|
+
return this.internalParams;
|
|
41444
|
+
};
|
|
41445
|
+
return LiveStandbyPoolEventLogListQueryParamsBuilder;
|
|
41446
|
+
}());
|
|
41447
|
+
exports.LiveStandbyPoolEventLogListQueryParamsBuilder = LiveStandbyPoolEventLogListQueryParamsBuilder;
|
|
41448
|
+
|
|
41449
|
+
|
|
41450
|
+
/***/ }),
|
|
41451
|
+
|
|
41452
|
+
/***/ "./encoding/live/standbyPools/logs/LogsApi.ts":
|
|
41453
|
+
/*!****************************************************!*\
|
|
41454
|
+
!*** ./encoding/live/standbyPools/logs/LogsApi.ts ***!
|
|
41455
|
+
\****************************************************/
|
|
41456
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41457
|
+
|
|
41458
|
+
"use strict";
|
|
41459
|
+
|
|
41460
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41461
|
+
var extendStatics = function (d, b) {
|
|
41462
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41463
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41464
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41465
|
+
return extendStatics(d, b);
|
|
41466
|
+
};
|
|
41467
|
+
return function (d, b) {
|
|
41468
|
+
if (typeof b !== "function" && b !== null)
|
|
41469
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41470
|
+
extendStatics(d, b);
|
|
41471
|
+
function __() { this.constructor = d; }
|
|
41472
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41473
|
+
};
|
|
41474
|
+
})();
|
|
41475
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41476
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41477
|
+
var LiveStandbyPoolEventLog_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEventLog */ "./models/LiveStandbyPoolEventLog.ts");
|
|
41478
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41479
|
+
var LiveStandbyPoolEventLogListQueryParams_1 = __webpack_require__(/*! ./LiveStandbyPoolEventLogListQueryParams */ "./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts");
|
|
41480
|
+
/**
|
|
41481
|
+
* LogsApi - object-oriented interface
|
|
41482
|
+
* @export
|
|
41483
|
+
* @class LogsApi
|
|
41484
|
+
* @extends {BaseAPI}
|
|
41485
|
+
*/
|
|
41486
|
+
var LogsApi = /** @class */ (function (_super) {
|
|
41487
|
+
__extends(LogsApi, _super);
|
|
41488
|
+
function LogsApi(configuration) {
|
|
41489
|
+
return _super.call(this, configuration) || this;
|
|
41490
|
+
}
|
|
41491
|
+
/**
|
|
41492
|
+
* @summary List event logs for a standby pool
|
|
41493
|
+
* @param {string} poolId Id of the standby pool
|
|
41494
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41495
|
+
* @throws {BitmovinError}
|
|
41496
|
+
* @memberof LogsApi
|
|
41497
|
+
*/
|
|
41498
|
+
LogsApi.prototype.list = function (poolId, queryParameters) {
|
|
41499
|
+
var pathParamMap = {
|
|
41500
|
+
pool_id: poolId
|
|
41501
|
+
};
|
|
41502
|
+
var queryParams = {};
|
|
41503
|
+
if (typeof queryParameters === 'function') {
|
|
41504
|
+
queryParams = queryParameters(new LiveStandbyPoolEventLogListQueryParams_1.LiveStandbyPoolEventLogListQueryParamsBuilder()).buildQueryParams();
|
|
41505
|
+
}
|
|
41506
|
+
else if (queryParameters) {
|
|
41507
|
+
queryParams = queryParameters;
|
|
41508
|
+
}
|
|
41509
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}/logs', pathParamMap, queryParams).then(function (response) {
|
|
41510
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolEventLog_1.default);
|
|
41511
|
+
});
|
|
41512
|
+
};
|
|
41513
|
+
return LogsApi;
|
|
41514
|
+
}(BaseAPI_1.BaseAPI));
|
|
41515
|
+
exports["default"] = LogsApi;
|
|
41516
|
+
|
|
41517
|
+
|
|
41058
41518
|
/***/ }),
|
|
41059
41519
|
|
|
41060
41520
|
/***/ "./encoding/live/streamKeys/StreamKeyListQueryParams.ts":
|
|
@@ -74539,6 +74999,434 @@ var LiveOptionsType;
|
|
|
74539
74999
|
exports["default"] = LiveOptionsType;
|
|
74540
75000
|
|
|
74541
75001
|
|
|
75002
|
+
/***/ }),
|
|
75003
|
+
|
|
75004
|
+
/***/ "./models/LiveStandbyPoolDetails.ts":
|
|
75005
|
+
/*!******************************************!*\
|
|
75006
|
+
!*** ./models/LiveStandbyPoolDetails.ts ***!
|
|
75007
|
+
\******************************************/
|
|
75008
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75009
|
+
|
|
75010
|
+
"use strict";
|
|
75011
|
+
|
|
75012
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75013
|
+
var extendStatics = function (d, b) {
|
|
75014
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75015
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75016
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75017
|
+
return extendStatics(d, b);
|
|
75018
|
+
};
|
|
75019
|
+
return function (d, b) {
|
|
75020
|
+
if (typeof b !== "function" && b !== null)
|
|
75021
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75022
|
+
extendStatics(d, b);
|
|
75023
|
+
function __() { this.constructor = d; }
|
|
75024
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75025
|
+
};
|
|
75026
|
+
})();
|
|
75027
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75028
|
+
exports.LiveStandbyPoolDetails = void 0;
|
|
75029
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75030
|
+
var LiveStandbyPoolResponse_1 = __webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts");
|
|
75031
|
+
/**
|
|
75032
|
+
* @export
|
|
75033
|
+
* @class LiveStandbyPoolDetails
|
|
75034
|
+
*/
|
|
75035
|
+
var LiveStandbyPoolDetails = /** @class */ (function (_super) {
|
|
75036
|
+
__extends(LiveStandbyPoolDetails, _super);
|
|
75037
|
+
function LiveStandbyPoolDetails(obj) {
|
|
75038
|
+
var _this = _super.call(this, obj) || this;
|
|
75039
|
+
if (!obj) {
|
|
75040
|
+
return _this;
|
|
75041
|
+
}
|
|
75042
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75043
|
+
return _this;
|
|
75044
|
+
}
|
|
75045
|
+
return LiveStandbyPoolDetails;
|
|
75046
|
+
}(LiveStandbyPoolResponse_1.default));
|
|
75047
|
+
exports.LiveStandbyPoolDetails = LiveStandbyPoolDetails;
|
|
75048
|
+
exports["default"] = LiveStandbyPoolDetails;
|
|
75049
|
+
|
|
75050
|
+
|
|
75051
|
+
/***/ }),
|
|
75052
|
+
|
|
75053
|
+
/***/ "./models/LiveStandbyPoolEncoding.ts":
|
|
75054
|
+
/*!*******************************************!*\
|
|
75055
|
+
!*** ./models/LiveStandbyPoolEncoding.ts ***!
|
|
75056
|
+
\*******************************************/
|
|
75057
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75058
|
+
|
|
75059
|
+
"use strict";
|
|
75060
|
+
|
|
75061
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75062
|
+
exports.LiveStandbyPoolEncoding = void 0;
|
|
75063
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75064
|
+
var LiveStandbyPoolEncodingIngestPoint_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts");
|
|
75065
|
+
var LiveStandbyPoolEncodingManifest_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts");
|
|
75066
|
+
/**
|
|
75067
|
+
* @export
|
|
75068
|
+
* @class LiveStandbyPoolEncoding
|
|
75069
|
+
*/
|
|
75070
|
+
var LiveStandbyPoolEncoding = /** @class */ (function () {
|
|
75071
|
+
function LiveStandbyPoolEncoding(obj) {
|
|
75072
|
+
if (!obj) {
|
|
75073
|
+
return;
|
|
75074
|
+
}
|
|
75075
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75076
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75077
|
+
this.modifiedAt = (0, Mapper_1.map)(obj.modifiedAt);
|
|
75078
|
+
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
75079
|
+
this.manifests = (0, Mapper_1.mapArray)(obj.manifests, LiveStandbyPoolEncodingManifest_1.default);
|
|
75080
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveStandbyPoolEncodingIngestPoint_1.default);
|
|
75081
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
75082
|
+
}
|
|
75083
|
+
return LiveStandbyPoolEncoding;
|
|
75084
|
+
}());
|
|
75085
|
+
exports.LiveStandbyPoolEncoding = LiveStandbyPoolEncoding;
|
|
75086
|
+
exports["default"] = LiveStandbyPoolEncoding;
|
|
75087
|
+
|
|
75088
|
+
|
|
75089
|
+
/***/ }),
|
|
75090
|
+
|
|
75091
|
+
/***/ "./models/LiveStandbyPoolEncodingIngestPoint.ts":
|
|
75092
|
+
/*!******************************************************!*\
|
|
75093
|
+
!*** ./models/LiveStandbyPoolEncodingIngestPoint.ts ***!
|
|
75094
|
+
\******************************************************/
|
|
75095
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75096
|
+
|
|
75097
|
+
"use strict";
|
|
75098
|
+
|
|
75099
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75100
|
+
exports.LiveStandbyPoolEncodingIngestPoint = void 0;
|
|
75101
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75102
|
+
/**
|
|
75103
|
+
* @export
|
|
75104
|
+
* @class LiveStandbyPoolEncodingIngestPoint
|
|
75105
|
+
*/
|
|
75106
|
+
var LiveStandbyPoolEncodingIngestPoint = /** @class */ (function () {
|
|
75107
|
+
function LiveStandbyPoolEncodingIngestPoint(obj) {
|
|
75108
|
+
if (!obj) {
|
|
75109
|
+
return;
|
|
75110
|
+
}
|
|
75111
|
+
this.streamBaseUrl = (0, Mapper_1.map)(obj.streamBaseUrl);
|
|
75112
|
+
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
|
|
75113
|
+
}
|
|
75114
|
+
return LiveStandbyPoolEncodingIngestPoint;
|
|
75115
|
+
}());
|
|
75116
|
+
exports.LiveStandbyPoolEncodingIngestPoint = LiveStandbyPoolEncodingIngestPoint;
|
|
75117
|
+
exports["default"] = LiveStandbyPoolEncodingIngestPoint;
|
|
75118
|
+
|
|
75119
|
+
|
|
75120
|
+
/***/ }),
|
|
75121
|
+
|
|
75122
|
+
/***/ "./models/LiveStandbyPoolEncodingManifest.ts":
|
|
75123
|
+
/*!***************************************************!*\
|
|
75124
|
+
!*** ./models/LiveStandbyPoolEncodingManifest.ts ***!
|
|
75125
|
+
\***************************************************/
|
|
75126
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75127
|
+
|
|
75128
|
+
"use strict";
|
|
75129
|
+
|
|
75130
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75131
|
+
exports.LiveStandbyPoolEncodingManifest = void 0;
|
|
75132
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75133
|
+
/**
|
|
75134
|
+
* @export
|
|
75135
|
+
* @class LiveStandbyPoolEncodingManifest
|
|
75136
|
+
*/
|
|
75137
|
+
var LiveStandbyPoolEncodingManifest = /** @class */ (function () {
|
|
75138
|
+
function LiveStandbyPoolEncodingManifest(obj) {
|
|
75139
|
+
if (!obj) {
|
|
75140
|
+
return;
|
|
75141
|
+
}
|
|
75142
|
+
this.url = (0, Mapper_1.map)(obj.url);
|
|
75143
|
+
this.manifestId = (0, Mapper_1.map)(obj.manifestId);
|
|
75144
|
+
this.type = (0, Mapper_1.map)(obj.type);
|
|
75145
|
+
}
|
|
75146
|
+
return LiveStandbyPoolEncodingManifest;
|
|
75147
|
+
}());
|
|
75148
|
+
exports.LiveStandbyPoolEncodingManifest = LiveStandbyPoolEncodingManifest;
|
|
75149
|
+
exports["default"] = LiveStandbyPoolEncodingManifest;
|
|
75150
|
+
|
|
75151
|
+
|
|
75152
|
+
/***/ }),
|
|
75153
|
+
|
|
75154
|
+
/***/ "./models/LiveStandbyPoolEncodingManifestType.ts":
|
|
75155
|
+
/*!*******************************************************!*\
|
|
75156
|
+
!*** ./models/LiveStandbyPoolEncodingManifestType.ts ***!
|
|
75157
|
+
\*******************************************************/
|
|
75158
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75159
|
+
|
|
75160
|
+
"use strict";
|
|
75161
|
+
|
|
75162
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75163
|
+
exports.LiveStandbyPoolEncodingManifestType = void 0;
|
|
75164
|
+
/**
|
|
75165
|
+
* Type of the manifest
|
|
75166
|
+
* @export
|
|
75167
|
+
* @enum {string}
|
|
75168
|
+
*/
|
|
75169
|
+
var LiveStandbyPoolEncodingManifestType;
|
|
75170
|
+
(function (LiveStandbyPoolEncodingManifestType) {
|
|
75171
|
+
LiveStandbyPoolEncodingManifestType["DASH"] = "DASH";
|
|
75172
|
+
LiveStandbyPoolEncodingManifestType["HLS"] = "HLS";
|
|
75173
|
+
})(LiveStandbyPoolEncodingManifestType || (exports.LiveStandbyPoolEncodingManifestType = LiveStandbyPoolEncodingManifestType = {}));
|
|
75174
|
+
exports["default"] = LiveStandbyPoolEncodingManifestType;
|
|
75175
|
+
|
|
75176
|
+
|
|
75177
|
+
/***/ }),
|
|
75178
|
+
|
|
75179
|
+
/***/ "./models/LiveStandbyPoolEncodingStatus.ts":
|
|
75180
|
+
/*!*************************************************!*\
|
|
75181
|
+
!*** ./models/LiveStandbyPoolEncodingStatus.ts ***!
|
|
75182
|
+
\*************************************************/
|
|
75183
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75184
|
+
|
|
75185
|
+
"use strict";
|
|
75186
|
+
|
|
75187
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75188
|
+
exports.LiveStandbyPoolEncodingStatus = void 0;
|
|
75189
|
+
/**
|
|
75190
|
+
* Status of the standby pool encoding
|
|
75191
|
+
* @export
|
|
75192
|
+
* @enum {string}
|
|
75193
|
+
*/
|
|
75194
|
+
var LiveStandbyPoolEncodingStatus;
|
|
75195
|
+
(function (LiveStandbyPoolEncodingStatus) {
|
|
75196
|
+
LiveStandbyPoolEncodingStatus["TO_BE_CREATED"] = "TO_BE_CREATED";
|
|
75197
|
+
LiveStandbyPoolEncodingStatus["CREATING"] = "CREATING";
|
|
75198
|
+
LiveStandbyPoolEncodingStatus["PREPARING"] = "PREPARING";
|
|
75199
|
+
LiveStandbyPoolEncodingStatus["READY"] = "READY";
|
|
75200
|
+
LiveStandbyPoolEncodingStatus["TO_BE_DELETED"] = "TO_BE_DELETED";
|
|
75201
|
+
LiveStandbyPoolEncodingStatus["DELETING"] = "DELETING";
|
|
75202
|
+
LiveStandbyPoolEncodingStatus["ACQUIRED"] = "ACQUIRED";
|
|
75203
|
+
LiveStandbyPoolEncodingStatus["ERROR"] = "ERROR";
|
|
75204
|
+
})(LiveStandbyPoolEncodingStatus || (exports.LiveStandbyPoolEncodingStatus = LiveStandbyPoolEncodingStatus = {}));
|
|
75205
|
+
exports["default"] = LiveStandbyPoolEncodingStatus;
|
|
75206
|
+
|
|
75207
|
+
|
|
75208
|
+
/***/ }),
|
|
75209
|
+
|
|
75210
|
+
/***/ "./models/LiveStandbyPoolEventLog.ts":
|
|
75211
|
+
/*!*******************************************!*\
|
|
75212
|
+
!*** ./models/LiveStandbyPoolEventLog.ts ***!
|
|
75213
|
+
\*******************************************/
|
|
75214
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75215
|
+
|
|
75216
|
+
"use strict";
|
|
75217
|
+
|
|
75218
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75219
|
+
exports.LiveStandbyPoolEventLog = void 0;
|
|
75220
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75221
|
+
/**
|
|
75222
|
+
* @export
|
|
75223
|
+
* @class LiveStandbyPoolEventLog
|
|
75224
|
+
*/
|
|
75225
|
+
var LiveStandbyPoolEventLog = /** @class */ (function () {
|
|
75226
|
+
function LiveStandbyPoolEventLog(obj) {
|
|
75227
|
+
if (!obj) {
|
|
75228
|
+
return;
|
|
75229
|
+
}
|
|
75230
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75231
|
+
this.standbyPoolId = (0, Mapper_1.map)(obj.standbyPoolId);
|
|
75232
|
+
this.standbyPoolEncodingId = (0, Mapper_1.map)(obj.standbyPoolEncodingId);
|
|
75233
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75234
|
+
this.message = (0, Mapper_1.map)(obj.message);
|
|
75235
|
+
this.details = (0, Mapper_1.map)(obj.details);
|
|
75236
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
75237
|
+
}
|
|
75238
|
+
return LiveStandbyPoolEventLog;
|
|
75239
|
+
}());
|
|
75240
|
+
exports.LiveStandbyPoolEventLog = LiveStandbyPoolEventLog;
|
|
75241
|
+
exports["default"] = LiveStandbyPoolEventLog;
|
|
75242
|
+
|
|
75243
|
+
|
|
75244
|
+
/***/ }),
|
|
75245
|
+
|
|
75246
|
+
/***/ "./models/LiveStandbyPoolEventLogType.ts":
|
|
75247
|
+
/*!***********************************************!*\
|
|
75248
|
+
!*** ./models/LiveStandbyPoolEventLogType.ts ***!
|
|
75249
|
+
\***********************************************/
|
|
75250
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75251
|
+
|
|
75252
|
+
"use strict";
|
|
75253
|
+
|
|
75254
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75255
|
+
exports.LiveStandbyPoolEventLogType = void 0;
|
|
75256
|
+
/**
|
|
75257
|
+
* Event log type of the standby pool
|
|
75258
|
+
* @export
|
|
75259
|
+
* @enum {string}
|
|
75260
|
+
*/
|
|
75261
|
+
var LiveStandbyPoolEventLogType;
|
|
75262
|
+
(function (LiveStandbyPoolEventLogType) {
|
|
75263
|
+
LiveStandbyPoolEventLogType["INFO"] = "INFO";
|
|
75264
|
+
LiveStandbyPoolEventLogType["WARN"] = "WARN";
|
|
75265
|
+
LiveStandbyPoolEventLogType["ERROR"] = "ERROR";
|
|
75266
|
+
})(LiveStandbyPoolEventLogType || (exports.LiveStandbyPoolEventLogType = LiveStandbyPoolEventLogType = {}));
|
|
75267
|
+
exports["default"] = LiveStandbyPoolEventLogType;
|
|
75268
|
+
|
|
75269
|
+
|
|
75270
|
+
/***/ }),
|
|
75271
|
+
|
|
75272
|
+
/***/ "./models/LiveStandbyPoolRequest.ts":
|
|
75273
|
+
/*!******************************************!*\
|
|
75274
|
+
!*** ./models/LiveStandbyPoolRequest.ts ***!
|
|
75275
|
+
\******************************************/
|
|
75276
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75277
|
+
|
|
75278
|
+
"use strict";
|
|
75279
|
+
|
|
75280
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75281
|
+
var extendStatics = function (d, b) {
|
|
75282
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75283
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75284
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75285
|
+
return extendStatics(d, b);
|
|
75286
|
+
};
|
|
75287
|
+
return function (d, b) {
|
|
75288
|
+
if (typeof b !== "function" && b !== null)
|
|
75289
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75290
|
+
extendStatics(d, b);
|
|
75291
|
+
function __() { this.constructor = d; }
|
|
75292
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75293
|
+
};
|
|
75294
|
+
})();
|
|
75295
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75296
|
+
exports.LiveStandbyPoolRequest = void 0;
|
|
75297
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75298
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75299
|
+
/**
|
|
75300
|
+
* @export
|
|
75301
|
+
* @class LiveStandbyPoolRequest
|
|
75302
|
+
*/
|
|
75303
|
+
var LiveStandbyPoolRequest = /** @class */ (function (_super) {
|
|
75304
|
+
__extends(LiveStandbyPoolRequest, _super);
|
|
75305
|
+
function LiveStandbyPoolRequest(obj) {
|
|
75306
|
+
var _this = _super.call(this, obj) || this;
|
|
75307
|
+
if (!obj) {
|
|
75308
|
+
return _this;
|
|
75309
|
+
}
|
|
75310
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75311
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75312
|
+
return _this;
|
|
75313
|
+
}
|
|
75314
|
+
return LiveStandbyPoolRequest;
|
|
75315
|
+
}(BitmovinResource_1.default));
|
|
75316
|
+
exports.LiveStandbyPoolRequest = LiveStandbyPoolRequest;
|
|
75317
|
+
exports["default"] = LiveStandbyPoolRequest;
|
|
75318
|
+
|
|
75319
|
+
|
|
75320
|
+
/***/ }),
|
|
75321
|
+
|
|
75322
|
+
/***/ "./models/LiveStandbyPoolResponse.ts":
|
|
75323
|
+
/*!*******************************************!*\
|
|
75324
|
+
!*** ./models/LiveStandbyPoolResponse.ts ***!
|
|
75325
|
+
\*******************************************/
|
|
75326
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75327
|
+
|
|
75328
|
+
"use strict";
|
|
75329
|
+
|
|
75330
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75331
|
+
var extendStatics = function (d, b) {
|
|
75332
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75333
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75334
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75335
|
+
return extendStatics(d, b);
|
|
75336
|
+
};
|
|
75337
|
+
return function (d, b) {
|
|
75338
|
+
if (typeof b !== "function" && b !== null)
|
|
75339
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75340
|
+
extendStatics(d, b);
|
|
75341
|
+
function __() { this.constructor = d; }
|
|
75342
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75343
|
+
};
|
|
75344
|
+
})();
|
|
75345
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75346
|
+
exports.LiveStandbyPoolResponse = void 0;
|
|
75347
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75348
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75349
|
+
/**
|
|
75350
|
+
* @export
|
|
75351
|
+
* @class LiveStandbyPoolResponse
|
|
75352
|
+
*/
|
|
75353
|
+
var LiveStandbyPoolResponse = /** @class */ (function (_super) {
|
|
75354
|
+
__extends(LiveStandbyPoolResponse, _super);
|
|
75355
|
+
function LiveStandbyPoolResponse(obj) {
|
|
75356
|
+
var _this = _super.call(this, obj) || this;
|
|
75357
|
+
if (!obj) {
|
|
75358
|
+
return _this;
|
|
75359
|
+
}
|
|
75360
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75361
|
+
_this.readyEncodings = (0, Mapper_1.map)(obj.readyEncodings);
|
|
75362
|
+
_this.preparingEncodings = (0, Mapper_1.map)(obj.preparingEncodings);
|
|
75363
|
+
_this.errorEncodings = (0, Mapper_1.map)(obj.errorEncodings);
|
|
75364
|
+
_this.encodingTemplateName = (0, Mapper_1.map)(obj.encodingTemplateName);
|
|
75365
|
+
_this.poolStatus = (0, Mapper_1.map)(obj.poolStatus);
|
|
75366
|
+
return _this;
|
|
75367
|
+
}
|
|
75368
|
+
return LiveStandbyPoolResponse;
|
|
75369
|
+
}(BitmovinResource_1.default));
|
|
75370
|
+
exports.LiveStandbyPoolResponse = LiveStandbyPoolResponse;
|
|
75371
|
+
exports["default"] = LiveStandbyPoolResponse;
|
|
75372
|
+
|
|
75373
|
+
|
|
75374
|
+
/***/ }),
|
|
75375
|
+
|
|
75376
|
+
/***/ "./models/LiveStandbyPoolStatus.ts":
|
|
75377
|
+
/*!*****************************************!*\
|
|
75378
|
+
!*** ./models/LiveStandbyPoolStatus.ts ***!
|
|
75379
|
+
\*****************************************/
|
|
75380
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75381
|
+
|
|
75382
|
+
"use strict";
|
|
75383
|
+
|
|
75384
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75385
|
+
exports.LiveStandbyPoolStatus = void 0;
|
|
75386
|
+
/**
|
|
75387
|
+
* Status of the live standby pool
|
|
75388
|
+
* @export
|
|
75389
|
+
* @enum {string}
|
|
75390
|
+
*/
|
|
75391
|
+
var LiveStandbyPoolStatus;
|
|
75392
|
+
(function (LiveStandbyPoolStatus) {
|
|
75393
|
+
LiveStandbyPoolStatus["HEALTHY"] = "HEALTHY";
|
|
75394
|
+
LiveStandbyPoolStatus["ERROR"] = "ERROR";
|
|
75395
|
+
})(LiveStandbyPoolStatus || (exports.LiveStandbyPoolStatus = LiveStandbyPoolStatus = {}));
|
|
75396
|
+
exports["default"] = LiveStandbyPoolStatus;
|
|
75397
|
+
|
|
75398
|
+
|
|
75399
|
+
/***/ }),
|
|
75400
|
+
|
|
75401
|
+
/***/ "./models/LiveStandbyPoolUpdate.ts":
|
|
75402
|
+
/*!*****************************************!*\
|
|
75403
|
+
!*** ./models/LiveStandbyPoolUpdate.ts ***!
|
|
75404
|
+
\*****************************************/
|
|
75405
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75406
|
+
|
|
75407
|
+
"use strict";
|
|
75408
|
+
|
|
75409
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75410
|
+
exports.LiveStandbyPoolUpdate = void 0;
|
|
75411
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75412
|
+
/**
|
|
75413
|
+
* @export
|
|
75414
|
+
* @class LiveStandbyPoolUpdate
|
|
75415
|
+
*/
|
|
75416
|
+
var LiveStandbyPoolUpdate = /** @class */ (function () {
|
|
75417
|
+
function LiveStandbyPoolUpdate(obj) {
|
|
75418
|
+
if (!obj) {
|
|
75419
|
+
return;
|
|
75420
|
+
}
|
|
75421
|
+
this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75422
|
+
this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75423
|
+
}
|
|
75424
|
+
return LiveStandbyPoolUpdate;
|
|
75425
|
+
}());
|
|
75426
|
+
exports.LiveStandbyPoolUpdate = LiveStandbyPoolUpdate;
|
|
75427
|
+
exports["default"] = LiveStandbyPoolUpdate;
|
|
75428
|
+
|
|
75429
|
+
|
|
74542
75430
|
/***/ }),
|
|
74543
75431
|
|
|
74544
75432
|
/***/ "./models/LocalInput.ts":
|
|
@@ -75550,7 +76438,6 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
|
|
|
75550
76438
|
var DolbyVisionMuxingConfiguration_1 = __webpack_require__(/*! ./DolbyVisionMuxingConfiguration */ "./models/DolbyVisionMuxingConfiguration.ts");
|
|
75551
76439
|
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
75552
76440
|
var MuxingType_1 = __webpack_require__(/*! ./MuxingType */ "./models/MuxingType.ts");
|
|
75553
|
-
var TimeCode_1 = __webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts");
|
|
75554
76441
|
/**
|
|
75555
76442
|
* @export
|
|
75556
76443
|
* @class Mp4Muxing
|
|
@@ -75570,7 +76457,6 @@ var Mp4Muxing = /** @class */ (function (_super) {
|
|
|
75570
76457
|
}
|
|
75571
76458
|
_this.filename = (0, Mapper_1.map)(obj.filename);
|
|
75572
76459
|
_this.fragmentDuration = (0, Mapper_1.map)(obj.fragmentDuration);
|
|
75573
|
-
_this.timeCode = (0, Mapper_1.map)(obj.timeCode, TimeCode_1.default);
|
|
75574
76460
|
_this.fragmentedMP4MuxingManifestType = (0, Mapper_1.map)(obj.fragmentedMP4MuxingManifestType);
|
|
75575
76461
|
_this.dolbyVisionConfiguration = (0, Mapper_1.map)(obj.dolbyVisionConfiguration, DolbyVisionMuxingConfiguration_1.default);
|
|
75576
76462
|
return _this;
|
|
@@ -85896,36 +86782,6 @@ exports.TimeBasedTrimmingInputStream = TimeBasedTrimmingInputStream;
|
|
|
85896
86782
|
exports["default"] = TimeBasedTrimmingInputStream;
|
|
85897
86783
|
|
|
85898
86784
|
|
|
85899
|
-
/***/ }),
|
|
85900
|
-
|
|
85901
|
-
/***/ "./models/TimeCode.ts":
|
|
85902
|
-
/*!****************************!*\
|
|
85903
|
-
!*** ./models/TimeCode.ts ***!
|
|
85904
|
-
\****************************/
|
|
85905
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
85906
|
-
|
|
85907
|
-
"use strict";
|
|
85908
|
-
|
|
85909
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
85910
|
-
exports.TimeCode = void 0;
|
|
85911
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
85912
|
-
/**
|
|
85913
|
-
* @export
|
|
85914
|
-
* @class TimeCode
|
|
85915
|
-
*/
|
|
85916
|
-
var TimeCode = /** @class */ (function () {
|
|
85917
|
-
function TimeCode(obj) {
|
|
85918
|
-
if (!obj) {
|
|
85919
|
-
return;
|
|
85920
|
-
}
|
|
85921
|
-
this.timeCodeStart = (0, Mapper_1.map)(obj.timeCodeStart);
|
|
85922
|
-
}
|
|
85923
|
-
return TimeCode;
|
|
85924
|
-
}());
|
|
85925
|
-
exports.TimeCode = TimeCode;
|
|
85926
|
-
exports["default"] = TimeCode;
|
|
85927
|
-
|
|
85928
|
-
|
|
85929
86785
|
/***/ }),
|
|
85930
86786
|
|
|
85931
86787
|
/***/ "./models/TimeSpan.ts":
|
|
@@ -88910,6 +89766,18 @@ __exportStar(__webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptions
|
|
|
88910
89766
|
__exportStar(__webpack_require__(/*! ./LiveOptionsStatistics */ "./models/LiveOptionsStatistics.ts"), exports);
|
|
88911
89767
|
__exportStar(__webpack_require__(/*! ./LiveOptionsSummary */ "./models/LiveOptionsSummary.ts"), exports);
|
|
88912
89768
|
__exportStar(__webpack_require__(/*! ./LiveOptionsType */ "./models/LiveOptionsType.ts"), exports);
|
|
89769
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolDetails */ "./models/LiveStandbyPoolDetails.ts"), exports);
|
|
89770
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts"), exports);
|
|
89771
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts"), exports);
|
|
89772
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts"), exports);
|
|
89773
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifestType */ "./models/LiveStandbyPoolEncodingManifestType.ts"), exports);
|
|
89774
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingStatus */ "./models/LiveStandbyPoolEncodingStatus.ts"), exports);
|
|
89775
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLog */ "./models/LiveStandbyPoolEventLog.ts"), exports);
|
|
89776
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLogType */ "./models/LiveStandbyPoolEventLogType.ts"), exports);
|
|
89777
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolRequest */ "./models/LiveStandbyPoolRequest.ts"), exports);
|
|
89778
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts"), exports);
|
|
89779
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolStatus */ "./models/LiveStandbyPoolStatus.ts"), exports);
|
|
89780
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolUpdate */ "./models/LiveStandbyPoolUpdate.ts"), exports);
|
|
88913
89781
|
__exportStar(__webpack_require__(/*! ./LocalInput */ "./models/LocalInput.ts"), exports);
|
|
88914
89782
|
__exportStar(__webpack_require__(/*! ./LocalOutput */ "./models/LocalOutput.ts"), exports);
|
|
88915
89783
|
__exportStar(__webpack_require__(/*! ./Manifest */ "./models/Manifest.ts"), exports);
|
|
@@ -89200,7 +90068,6 @@ __exportStar(__webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts"), ex
|
|
|
89200
90068
|
__exportStar(__webpack_require__(/*! ./ThumbnailAspectMode */ "./models/ThumbnailAspectMode.ts"), exports);
|
|
89201
90069
|
__exportStar(__webpack_require__(/*! ./ThumbnailUnit */ "./models/ThumbnailUnit.ts"), exports);
|
|
89202
90070
|
__exportStar(__webpack_require__(/*! ./TimeBasedTrimmingInputStream */ "./models/TimeBasedTrimmingInputStream.ts"), exports);
|
|
89203
|
-
__exportStar(__webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts"), exports);
|
|
89204
90071
|
__exportStar(__webpack_require__(/*! ./TimeSpan */ "./models/TimeSpan.ts"), exports);
|
|
89205
90072
|
__exportStar(__webpack_require__(/*! ./TimecodeTrackTrimmingInputStream */ "./models/TimecodeTrackTrimmingInputStream.ts"), exports);
|
|
89206
90073
|
__exportStar(__webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts"), exports);
|