@bitmovin/api-sdk 1.161.0 → 1.163.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 +582 -36
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/EncodingApi.d.ts +2 -0
- package/dist/encoding/EncodingApi.js +2 -0
- package/dist/encoding/encodings/EncodingListQueryParams.d.ts +11 -0
- package/dist/encoding/encodings/EncodingListQueryParams.js +8 -0
- package/dist/encoding/history/HistoryApi.d.ts +13 -0
- package/dist/encoding/history/HistoryApi.js +35 -0
- package/dist/encoding/history/encodings/EncodingListQueryParams.d.ts +217 -0
- package/dist/encoding/history/encodings/EncodingListQueryParams.js +165 -0
- package/dist/encoding/history/encodings/EncodingsApi.d.ts +29 -0
- package/dist/encoding/history/encodings/EncodingsApi.js +69 -0
- package/dist/encoding/manifests/dash/DashApi.d.ts +14 -7
- package/dist/encoding/manifests/dash/DashApi.js +22 -7
- package/dist/encoding/manifests/dash/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/dash/default/DefaultApi.js +2 -2
- package/dist/encoding/manifests/hls/HlsApi.d.ts +14 -7
- package/dist/encoding/manifests/hls/HlsApi.js +22 -7
- package/dist/encoding/manifests/hls/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/hls/default/DefaultApi.js +2 -2
- package/dist/encoding/manifests/smooth/SmoothApi.d.ts +13 -6
- package/dist/encoding/manifests/smooth/SmoothApi.js +21 -6
- package/dist/encoding/manifests/smooth/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/smooth/default/DefaultApi.js +2 -2
- package/dist/models/DashManifestDefault.d.ts +3 -4
- package/dist/models/DashManifestDefault.js +0 -1
- package/dist/models/H265VideoConfiguration.d.ts +2 -2
- package/dist/models/HistoryEncoding.d.ts +85 -0
- package/dist/models/HistoryEncoding.js +42 -0
- package/dist/models/HistoryMuxing.d.ts +69 -0
- package/dist/models/HistoryMuxing.js +38 -0
- package/dist/models/HistoryStream.d.ts +85 -0
- package/dist/models/HistoryStream.js +40 -0
- package/dist/models/HlsManifestDefault.d.ts +1 -1
- package/dist/models/Scheduling.d.ts +1 -1
- package/dist/models/SimpleEncodingVodJobOptions.d.ts +14 -0
- package/dist/models/SimpleEncodingVodJobOptions.js +19 -0
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobRequest.js +2 -0
- package/dist/models/SimpleEncodingVodJobResponse.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobResponse.js +2 -0
- package/dist/models/SmoothManifestDefault.d.ts +1 -1
- package/dist/models/SmoothStreamingRepresentation.d.ts +1 -1
- package/dist/models/StartManifestRequest.d.ts +1 -1
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/streams/live/LiveApi.d.ts +2 -2
- package/dist/streams/live/LiveApi.js +2 -3
- package/package.json +1 -1
|
@@ -5987,7 +5987,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
5987
5987
|
var headers = {
|
|
5988
5988
|
'X-Api-Key': apiKey,
|
|
5989
5989
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
5990
|
-
'X-Api-Client-Version': '1.
|
|
5990
|
+
'X-Api-Client-Version': '1.163.0',
|
|
5991
5991
|
'Content-Type': 'application/json'
|
|
5992
5992
|
};
|
|
5993
5993
|
if (tenantOrgId) {
|
|
@@ -6175,6 +6175,7 @@ var InfrastructureApi_1 = __webpack_require__(/*! ./infrastructure/Infrastructur
|
|
|
6175
6175
|
var StatisticsApi_1 = __webpack_require__(/*! ./statistics/StatisticsApi */ "./encoding/statistics/StatisticsApi.ts");
|
|
6176
6176
|
var WatchFoldersApi_1 = __webpack_require__(/*! ./watchFolders/WatchFoldersApi */ "./encoding/watchFolders/WatchFoldersApi.ts");
|
|
6177
6177
|
var SimpleApi_1 = __webpack_require__(/*! ./simple/SimpleApi */ "./encoding/simple/SimpleApi.ts");
|
|
6178
|
+
var HistoryApi_1 = __webpack_require__(/*! ./history/HistoryApi */ "./encoding/history/HistoryApi.ts");
|
|
6178
6179
|
var ErrorDefinitionsApi_1 = __webpack_require__(/*! ./errorDefinitions/ErrorDefinitionsApi */ "./encoding/errorDefinitions/ErrorDefinitionsApi.ts");
|
|
6179
6180
|
/**
|
|
6180
6181
|
* EncodingApi - object-oriented interface
|
|
@@ -6196,6 +6197,7 @@ var EncodingApi = /** @class */ (function (_super) {
|
|
|
6196
6197
|
_this.statistics = new StatisticsApi_1.default(configuration);
|
|
6197
6198
|
_this.watchFolders = new WatchFoldersApi_1.default(configuration);
|
|
6198
6199
|
_this.simple = new SimpleApi_1.default(configuration);
|
|
6200
|
+
_this.history = new HistoryApi_1.default(configuration);
|
|
6199
6201
|
_this.errorDefinitions = new ErrorDefinitionsApi_1.default(configuration);
|
|
6200
6202
|
return _this;
|
|
6201
6203
|
}
|
|
@@ -12196,6 +12198,14 @@ var EncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
|
12196
12198
|
this.internalParams.limit = limit;
|
|
12197
12199
|
return this;
|
|
12198
12200
|
};
|
|
12201
|
+
/**
|
|
12202
|
+
*
|
|
12203
|
+
* @param includeTotalCount A boolean indicating whether the total count should be returned as well. Default is true
|
|
12204
|
+
*/
|
|
12205
|
+
EncodingListQueryParamsBuilder.prototype.includeTotalCount = function (includeTotalCount) {
|
|
12206
|
+
this.internalParams.includeTotalCount = includeTotalCount;
|
|
12207
|
+
return this;
|
|
12208
|
+
};
|
|
12199
12209
|
/**
|
|
12200
12210
|
*
|
|
12201
12211
|
* @param sort Order list result according an encoding resource attribute. The fields that can be used for sorting are: + `id` + `startedAt` + `createdAt` + `modifiedAt` + `finishedAt` + `type` + `name` + `status` + `cloudRegion` + `encoderVersion`
|
|
@@ -34358,6 +34368,308 @@ var CustomdataApi = /** @class */ (function (_super) {
|
|
|
34358
34368
|
exports["default"] = CustomdataApi;
|
|
34359
34369
|
|
|
34360
34370
|
|
|
34371
|
+
/***/ }),
|
|
34372
|
+
|
|
34373
|
+
/***/ "./encoding/history/HistoryApi.ts":
|
|
34374
|
+
/*!****************************************!*\
|
|
34375
|
+
!*** ./encoding/history/HistoryApi.ts ***!
|
|
34376
|
+
\****************************************/
|
|
34377
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
34378
|
+
|
|
34379
|
+
"use strict";
|
|
34380
|
+
|
|
34381
|
+
var __extends = (this && this.__extends) || (function () {
|
|
34382
|
+
var extendStatics = function (d, b) {
|
|
34383
|
+
extendStatics = Object.setPrototypeOf ||
|
|
34384
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
34385
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
34386
|
+
return extendStatics(d, b);
|
|
34387
|
+
};
|
|
34388
|
+
return function (d, b) {
|
|
34389
|
+
if (typeof b !== "function" && b !== null)
|
|
34390
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
34391
|
+
extendStatics(d, b);
|
|
34392
|
+
function __() { this.constructor = d; }
|
|
34393
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34394
|
+
};
|
|
34395
|
+
})();
|
|
34396
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34397
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
34398
|
+
var EncodingsApi_1 = __webpack_require__(/*! ./encodings/EncodingsApi */ "./encoding/history/encodings/EncodingsApi.ts");
|
|
34399
|
+
/**
|
|
34400
|
+
* HistoryApi - object-oriented interface
|
|
34401
|
+
* @export
|
|
34402
|
+
* @class HistoryApi
|
|
34403
|
+
* @extends {BaseAPI}
|
|
34404
|
+
*/
|
|
34405
|
+
var HistoryApi = /** @class */ (function (_super) {
|
|
34406
|
+
__extends(HistoryApi, _super);
|
|
34407
|
+
function HistoryApi(configuration) {
|
|
34408
|
+
var _this = _super.call(this, configuration) || this;
|
|
34409
|
+
_this.encodings = new EncodingsApi_1.default(configuration);
|
|
34410
|
+
return _this;
|
|
34411
|
+
}
|
|
34412
|
+
return HistoryApi;
|
|
34413
|
+
}(BaseAPI_1.BaseAPI));
|
|
34414
|
+
exports["default"] = HistoryApi;
|
|
34415
|
+
|
|
34416
|
+
|
|
34417
|
+
/***/ }),
|
|
34418
|
+
|
|
34419
|
+
/***/ "./encoding/history/encodings/EncodingListQueryParams.ts":
|
|
34420
|
+
/*!***************************************************************!*\
|
|
34421
|
+
!*** ./encoding/history/encodings/EncodingListQueryParams.ts ***!
|
|
34422
|
+
\***************************************************************/
|
|
34423
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
34424
|
+
|
|
34425
|
+
"use strict";
|
|
34426
|
+
|
|
34427
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34428
|
+
exports.EncodingListQueryParamsBuilder = void 0;
|
|
34429
|
+
var EncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
34430
|
+
function EncodingListQueryParamsBuilder() {
|
|
34431
|
+
this.internalParams = {};
|
|
34432
|
+
}
|
|
34433
|
+
/**
|
|
34434
|
+
*
|
|
34435
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
34436
|
+
*/
|
|
34437
|
+
EncodingListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
34438
|
+
this.internalParams.offset = offset;
|
|
34439
|
+
return this;
|
|
34440
|
+
};
|
|
34441
|
+
/**
|
|
34442
|
+
*
|
|
34443
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
34444
|
+
*/
|
|
34445
|
+
EncodingListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
34446
|
+
this.internalParams.limit = limit;
|
|
34447
|
+
return this;
|
|
34448
|
+
};
|
|
34449
|
+
/**
|
|
34450
|
+
*
|
|
34451
|
+
* @param includeTotalCount A boolean indicating whether the total count should be returned as well. Default is false
|
|
34452
|
+
*/
|
|
34453
|
+
EncodingListQueryParamsBuilder.prototype.includeTotalCount = function (includeTotalCount) {
|
|
34454
|
+
this.internalParams.includeTotalCount = includeTotalCount;
|
|
34455
|
+
return this;
|
|
34456
|
+
};
|
|
34457
|
+
/**
|
|
34458
|
+
*
|
|
34459
|
+
* @param sort Order list result according an encoding resource attribute. The fields that can be used for sorting are: + `id` + `startedAt` + `createdAt` + `modifiedAt` + `finishedAt` + `type` + `name` + `status` + `cloudRegion` + `encoderVersion`
|
|
34460
|
+
*/
|
|
34461
|
+
EncodingListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
34462
|
+
this.internalParams.sort = sort;
|
|
34463
|
+
return this;
|
|
34464
|
+
};
|
|
34465
|
+
/**
|
|
34466
|
+
*
|
|
34467
|
+
* @param type Filter encodings to only show the ones with the type specified.
|
|
34468
|
+
*/
|
|
34469
|
+
EncodingListQueryParamsBuilder.prototype.type = function (type) {
|
|
34470
|
+
this.internalParams.type = type;
|
|
34471
|
+
return this;
|
|
34472
|
+
};
|
|
34473
|
+
/**
|
|
34474
|
+
*
|
|
34475
|
+
* @param status Filter encodings to only show the ones with the status specified.
|
|
34476
|
+
*/
|
|
34477
|
+
EncodingListQueryParamsBuilder.prototype.status = function (status) {
|
|
34478
|
+
this.internalParams.status = status;
|
|
34479
|
+
return this;
|
|
34480
|
+
};
|
|
34481
|
+
/**
|
|
34482
|
+
*
|
|
34483
|
+
* @param cloudRegion Filter encodings to only show the ones with the cloudRegion specified.
|
|
34484
|
+
*/
|
|
34485
|
+
EncodingListQueryParamsBuilder.prototype.cloudRegion = function (cloudRegion) {
|
|
34486
|
+
this.internalParams.cloudRegion = cloudRegion;
|
|
34487
|
+
return this;
|
|
34488
|
+
};
|
|
34489
|
+
/**
|
|
34490
|
+
*
|
|
34491
|
+
* @param selectedCloudRegion Filter encodings to only show the ones with the selectedCloudRegion specified which was selected when cloudregion:AUTO was set
|
|
34492
|
+
*/
|
|
34493
|
+
EncodingListQueryParamsBuilder.prototype.selectedCloudRegion = function (selectedCloudRegion) {
|
|
34494
|
+
this.internalParams.selectedCloudRegion = selectedCloudRegion;
|
|
34495
|
+
return this;
|
|
34496
|
+
};
|
|
34497
|
+
/**
|
|
34498
|
+
*
|
|
34499
|
+
* @param encoderVersion Filter encodings to only show the ones with the encoderVersion specified.
|
|
34500
|
+
*/
|
|
34501
|
+
EncodingListQueryParamsBuilder.prototype.encoderVersion = function (encoderVersion) {
|
|
34502
|
+
this.internalParams.encoderVersion = encoderVersion;
|
|
34503
|
+
return this;
|
|
34504
|
+
};
|
|
34505
|
+
/**
|
|
34506
|
+
*
|
|
34507
|
+
* @param selectedEncoderVersion Filter encodings to only show the ones with the encoderVersion specified that was actually used for the encoding.
|
|
34508
|
+
*/
|
|
34509
|
+
EncodingListQueryParamsBuilder.prototype.selectedEncoderVersion = function (selectedEncoderVersion) {
|
|
34510
|
+
this.internalParams.selectedEncoderVersion = selectedEncoderVersion;
|
|
34511
|
+
return this;
|
|
34512
|
+
};
|
|
34513
|
+
/**
|
|
34514
|
+
*
|
|
34515
|
+
* @param selectedEncodingMode Filter encodings to only show the ones with the encodingMode specified that was actually used for the encoding.
|
|
34516
|
+
*/
|
|
34517
|
+
EncodingListQueryParamsBuilder.prototype.selectedEncodingMode = function (selectedEncodingMode) {
|
|
34518
|
+
this.internalParams.selectedEncodingMode = selectedEncodingMode;
|
|
34519
|
+
return this;
|
|
34520
|
+
};
|
|
34521
|
+
/**
|
|
34522
|
+
*
|
|
34523
|
+
* @param name Filter encodings to only show the ones with this exact name.
|
|
34524
|
+
*/
|
|
34525
|
+
EncodingListQueryParamsBuilder.prototype.name = function (name) {
|
|
34526
|
+
this.internalParams.name = name;
|
|
34527
|
+
return this;
|
|
34528
|
+
};
|
|
34529
|
+
/**
|
|
34530
|
+
*
|
|
34531
|
+
* @param search The search query string for advanced filtering. We are using the [Apache Lucene](https://lucene.apache.org/) query syntax here. Only lucene queries equivalent to exact matching and startsWith are supported. Also only AND conjunctions supported at the moment. Please be aware that our filters are **case-insensitive** Examples of supported lucene queries: + `name:MyEncoding1` - This searches for encodings with names that are equal to `myencoding1` + `name:\"My Encoding\"` - This searches for encodings with names that are equal to `my encoding` + `name:MyEncoding\\*` - This searches for encodings with names that are equal to `myencoding*` Please have a look at the [Lucene Documentation - Escaping Special Characters](https://lucene.apache.org/core/8_1_1/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#Escaping_Special_Characters) section to see what characters have to be escaped. + `name:test*` - This searches for encodings with names that start with `test` + `name:test* AND labels:Customer1` - This searches for encodings with names starting with `test` and labels containing an entry that is equal to `customer1` Available search fields: + `name` + `labels` Please be aware to send these queries url encoded. If you provide fields or lucene queries that are not supported, it will result in an error response.
|
|
34532
|
+
*/
|
|
34533
|
+
EncodingListQueryParamsBuilder.prototype.search = function (search) {
|
|
34534
|
+
this.internalParams.search = search;
|
|
34535
|
+
return this;
|
|
34536
|
+
};
|
|
34537
|
+
/**
|
|
34538
|
+
*
|
|
34539
|
+
* @param createdAtNewerThan Filter encodings to only return those created after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34540
|
+
*/
|
|
34541
|
+
EncodingListQueryParamsBuilder.prototype.createdAtNewerThan = function (createdAtNewerThan) {
|
|
34542
|
+
this.internalParams.createdAtNewerThan = createdAtNewerThan;
|
|
34543
|
+
return this;
|
|
34544
|
+
};
|
|
34545
|
+
/**
|
|
34546
|
+
*
|
|
34547
|
+
* @param createdAtOlderThan Filter encodings to only return those created before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34548
|
+
*/
|
|
34549
|
+
EncodingListQueryParamsBuilder.prototype.createdAtOlderThan = function (createdAtOlderThan) {
|
|
34550
|
+
this.internalParams.createdAtOlderThan = createdAtOlderThan;
|
|
34551
|
+
return this;
|
|
34552
|
+
};
|
|
34553
|
+
/**
|
|
34554
|
+
*
|
|
34555
|
+
* @param startedAtNewerThan Filter encodings to only return those started after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34556
|
+
*/
|
|
34557
|
+
EncodingListQueryParamsBuilder.prototype.startedAtNewerThan = function (startedAtNewerThan) {
|
|
34558
|
+
this.internalParams.startedAtNewerThan = startedAtNewerThan;
|
|
34559
|
+
return this;
|
|
34560
|
+
};
|
|
34561
|
+
/**
|
|
34562
|
+
*
|
|
34563
|
+
* @param startedAtOlderThan Filter encodings to only return those started before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34564
|
+
*/
|
|
34565
|
+
EncodingListQueryParamsBuilder.prototype.startedAtOlderThan = function (startedAtOlderThan) {
|
|
34566
|
+
this.internalParams.startedAtOlderThan = startedAtOlderThan;
|
|
34567
|
+
return this;
|
|
34568
|
+
};
|
|
34569
|
+
/**
|
|
34570
|
+
*
|
|
34571
|
+
* @param finishedAtNewerThan Filter encodings to only return those finished at newer than this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ Available for all encodings started after REST API Service release v1.50.0 (Changelogs for more information https://bitmovin.com/docs/encoding/changelogs/rest)
|
|
34572
|
+
*/
|
|
34573
|
+
EncodingListQueryParamsBuilder.prototype.finishedAtNewerThan = function (finishedAtNewerThan) {
|
|
34574
|
+
this.internalParams.finishedAtNewerThan = finishedAtNewerThan;
|
|
34575
|
+
return this;
|
|
34576
|
+
};
|
|
34577
|
+
/**
|
|
34578
|
+
*
|
|
34579
|
+
* @param finishedAtOlderThan Filter encodings to only return those finished at older than this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ Available for all encodings started after REST API Service release v1.50.0 (Changelogs for more information https://bitmovin.com/docs/encoding/changelogs/rest)
|
|
34580
|
+
*/
|
|
34581
|
+
EncodingListQueryParamsBuilder.prototype.finishedAtOlderThan = function (finishedAtOlderThan) {
|
|
34582
|
+
this.internalParams.finishedAtOlderThan = finishedAtOlderThan;
|
|
34583
|
+
return this;
|
|
34584
|
+
};
|
|
34585
|
+
EncodingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
34586
|
+
return this.internalParams;
|
|
34587
|
+
};
|
|
34588
|
+
return EncodingListQueryParamsBuilder;
|
|
34589
|
+
}());
|
|
34590
|
+
exports.EncodingListQueryParamsBuilder = EncodingListQueryParamsBuilder;
|
|
34591
|
+
|
|
34592
|
+
|
|
34593
|
+
/***/ }),
|
|
34594
|
+
|
|
34595
|
+
/***/ "./encoding/history/encodings/EncodingsApi.ts":
|
|
34596
|
+
/*!****************************************************!*\
|
|
34597
|
+
!*** ./encoding/history/encodings/EncodingsApi.ts ***!
|
|
34598
|
+
\****************************************************/
|
|
34599
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
34600
|
+
|
|
34601
|
+
"use strict";
|
|
34602
|
+
|
|
34603
|
+
var __extends = (this && this.__extends) || (function () {
|
|
34604
|
+
var extendStatics = function (d, b) {
|
|
34605
|
+
extendStatics = Object.setPrototypeOf ||
|
|
34606
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
34607
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
34608
|
+
return extendStatics(d, b);
|
|
34609
|
+
};
|
|
34610
|
+
return function (d, b) {
|
|
34611
|
+
if (typeof b !== "function" && b !== null)
|
|
34612
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
34613
|
+
extendStatics(d, b);
|
|
34614
|
+
function __() { this.constructor = d; }
|
|
34615
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34616
|
+
};
|
|
34617
|
+
})();
|
|
34618
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34619
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
34620
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
34621
|
+
var Encoding_1 = __webpack_require__(/*! ../../../models/Encoding */ "./models/Encoding.ts");
|
|
34622
|
+
var HistoryEncoding_1 = __webpack_require__(/*! ../../../models/HistoryEncoding */ "./models/HistoryEncoding.ts");
|
|
34623
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
34624
|
+
var EncodingListQueryParams_1 = __webpack_require__(/*! ./EncodingListQueryParams */ "./encoding/history/encodings/EncodingListQueryParams.ts");
|
|
34625
|
+
/**
|
|
34626
|
+
* EncodingsApi - object-oriented interface
|
|
34627
|
+
* @export
|
|
34628
|
+
* @class EncodingsApi
|
|
34629
|
+
* @extends {BaseAPI}
|
|
34630
|
+
*/
|
|
34631
|
+
var EncodingsApi = /** @class */ (function (_super) {
|
|
34632
|
+
__extends(EncodingsApi, _super);
|
|
34633
|
+
function EncodingsApi(configuration) {
|
|
34634
|
+
return _super.call(this, configuration) || this;
|
|
34635
|
+
}
|
|
34636
|
+
/**
|
|
34637
|
+
* @summary (Experimental) History Encoding Details
|
|
34638
|
+
* @param {string} encodingId Id of the encoding.
|
|
34639
|
+
* @throws {BitmovinError}
|
|
34640
|
+
* @memberof EncodingsApi
|
|
34641
|
+
*/
|
|
34642
|
+
EncodingsApi.prototype.get = function (encodingId) {
|
|
34643
|
+
var pathParamMap = {
|
|
34644
|
+
encoding_id: encodingId
|
|
34645
|
+
};
|
|
34646
|
+
return this.restClient.get('/encoding/history/encodings/{encoding_id}', pathParamMap).then(function (response) {
|
|
34647
|
+
return (0, Mapper_1.map)(response, HistoryEncoding_1.default);
|
|
34648
|
+
});
|
|
34649
|
+
};
|
|
34650
|
+
/**
|
|
34651
|
+
* @summary (Experimental) List all History Encodings
|
|
34652
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
34653
|
+
* @throws {BitmovinError}
|
|
34654
|
+
* @memberof EncodingsApi
|
|
34655
|
+
*/
|
|
34656
|
+
EncodingsApi.prototype.list = function (queryParameters) {
|
|
34657
|
+
var queryParams = {};
|
|
34658
|
+
if (typeof queryParameters === 'function') {
|
|
34659
|
+
queryParams = queryParameters(new EncodingListQueryParams_1.EncodingListQueryParamsBuilder()).buildQueryParams();
|
|
34660
|
+
}
|
|
34661
|
+
else if (queryParameters) {
|
|
34662
|
+
queryParams = queryParameters;
|
|
34663
|
+
}
|
|
34664
|
+
return this.restClient.get('/encoding/history/encodings', {}, queryParams).then(function (response) {
|
|
34665
|
+
return new PaginationResponse_1.default(response, Encoding_1.default);
|
|
34666
|
+
});
|
|
34667
|
+
};
|
|
34668
|
+
return EncodingsApi;
|
|
34669
|
+
}(BaseAPI_1.BaseAPI));
|
|
34670
|
+
exports["default"] = EncodingsApi;
|
|
34671
|
+
|
|
34672
|
+
|
|
34361
34673
|
/***/ }),
|
|
34362
34674
|
|
|
34363
34675
|
/***/ "./encoding/infrastructure/InfrastructureApi.ts":
|
|
@@ -39899,6 +40211,7 @@ var CustomdataApi_1 = __webpack_require__(/*! ./customdata/CustomdataApi */ "./e
|
|
|
39899
40211
|
var PeriodsApi_1 = __webpack_require__(/*! ./periods/PeriodsApi */ "./encoding/manifests/dash/periods/PeriodsApi.ts");
|
|
39900
40212
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
39901
40213
|
var DashManifest_1 = __webpack_require__(/*! ../../../models/DashManifest */ "./models/DashManifest.ts");
|
|
40214
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
39902
40215
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
39903
40216
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
39904
40217
|
var DashManifestListQueryParams_1 = __webpack_require__(/*! ./DashManifestListQueryParams */ "./encoding/manifests/dash/DashManifestListQueryParams.ts");
|
|
@@ -39918,8 +40231,8 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39918
40231
|
return _this;
|
|
39919
40232
|
}
|
|
39920
40233
|
/**
|
|
39921
|
-
* @summary Create DASH Manifest
|
|
39922
|
-
* @param {DashManifest} dashManifest
|
|
40234
|
+
* @summary Create Custom DASH Manifest
|
|
40235
|
+
* @param {DashManifest} dashManifest A Custom DASH Manifest gives you full control over its contents. Add Periods, Adaptation Sets, Representations, Content Protections or Custom XML Elements via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
|
|
39923
40236
|
* @throws {BitmovinError}
|
|
39924
40237
|
* @memberof DashApi
|
|
39925
40238
|
*/
|
|
@@ -39930,7 +40243,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39930
40243
|
};
|
|
39931
40244
|
/**
|
|
39932
40245
|
* @summary Delete DASH Manifest
|
|
39933
|
-
* @param {string} manifestId UUID of the DASH
|
|
40246
|
+
* @param {string} manifestId UUID of the DASH Manifest to be deleted
|
|
39934
40247
|
* @throws {BitmovinError}
|
|
39935
40248
|
* @memberof DashApi
|
|
39936
40249
|
*/
|
|
@@ -39944,7 +40257,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39944
40257
|
};
|
|
39945
40258
|
/**
|
|
39946
40259
|
* @summary DASH Manifest Details
|
|
39947
|
-
* @param {string} manifestId UUID of the
|
|
40260
|
+
* @param {string} manifestId UUID of the DASH Manifest
|
|
39948
40261
|
* @throws {BitmovinError}
|
|
39949
40262
|
* @memberof DashApi
|
|
39950
40263
|
*/
|
|
@@ -39956,6 +40269,20 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39956
40269
|
return (0, Mapper_1.map)(response, DashManifest_1.default);
|
|
39957
40270
|
});
|
|
39958
40271
|
};
|
|
40272
|
+
/**
|
|
40273
|
+
* @summary Manifest Start Details
|
|
40274
|
+
* @param {string} manifestId Id of the manifest
|
|
40275
|
+
* @throws {BitmovinError}
|
|
40276
|
+
* @memberof DashApi
|
|
40277
|
+
*/
|
|
40278
|
+
DashApi.prototype.getStartRequest = function (manifestId) {
|
|
40279
|
+
var pathParamMap = {
|
|
40280
|
+
manifest_id: manifestId
|
|
40281
|
+
};
|
|
40282
|
+
return this.restClient.get('/encoding/manifests/dash/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
40283
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
40284
|
+
});
|
|
40285
|
+
};
|
|
39959
40286
|
/**
|
|
39960
40287
|
* @summary List DASH Manifests
|
|
39961
40288
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -39976,7 +40303,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39976
40303
|
};
|
|
39977
40304
|
/**
|
|
39978
40305
|
* @summary Start DASH Manifest Creation
|
|
39979
|
-
* @param {string} manifestId Id of the DASH
|
|
40306
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
39980
40307
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
39981
40308
|
* @throws {BitmovinError}
|
|
39982
40309
|
* @memberof DashApi
|
|
@@ -39991,7 +40318,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
39991
40318
|
};
|
|
39992
40319
|
/**
|
|
39993
40320
|
* @summary DASH Manifest Creation Status
|
|
39994
|
-
* @param {string} manifestId Id of the DASH
|
|
40321
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
39995
40322
|
* @throws {BitmovinError}
|
|
39996
40323
|
* @memberof DashApi
|
|
39997
40324
|
*/
|
|
@@ -40005,7 +40332,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40005
40332
|
};
|
|
40006
40333
|
/**
|
|
40007
40334
|
* @summary Stop DASH Manifest Creation
|
|
40008
|
-
* @param {string} manifestId Id of the DASH
|
|
40335
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
40009
40336
|
* @throws {BitmovinError}
|
|
40010
40337
|
* @memberof DashApi
|
|
40011
40338
|
*/
|
|
@@ -40170,8 +40497,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
40170
40497
|
return _super.call(this, configuration) || this;
|
|
40171
40498
|
}
|
|
40172
40499
|
/**
|
|
40173
|
-
* @summary Create DASH Manifest
|
|
40174
|
-
* @param {DashManifestDefault} dashManifestDefault
|
|
40500
|
+
* @summary Create Default DASH Manifest
|
|
40501
|
+
* @param {DashManifestDefault} dashManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
|
|
40175
40502
|
* @throws {BitmovinError}
|
|
40176
40503
|
* @memberof DefaultApi
|
|
40177
40504
|
*/
|
|
@@ -44458,6 +44785,7 @@ var StreamsApi_1 = __webpack_require__(/*! ./streams/StreamsApi */ "./encoding/m
|
|
|
44458
44785
|
var MediaApi_1 = __webpack_require__(/*! ./media/MediaApi */ "./encoding/manifests/hls/media/MediaApi.ts");
|
|
44459
44786
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
44460
44787
|
var HlsManifest_1 = __webpack_require__(/*! ../../../models/HlsManifest */ "./models/HlsManifest.ts");
|
|
44788
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
44461
44789
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
44462
44790
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
44463
44791
|
var HlsManifestListQueryParams_1 = __webpack_require__(/*! ./HlsManifestListQueryParams */ "./encoding/manifests/hls/HlsManifestListQueryParams.ts");
|
|
@@ -44478,8 +44806,8 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44478
44806
|
return _this;
|
|
44479
44807
|
}
|
|
44480
44808
|
/**
|
|
44481
|
-
* @summary Create HLS Manifest
|
|
44482
|
-
* @param {HlsManifest} hlsManifest
|
|
44809
|
+
* @summary Create Custom HLS Manifest
|
|
44810
|
+
* @param {HlsManifest} hlsManifest A Custom HLS Manifest gives you full control over its contents. Add Variant Streams and Media elements via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
|
|
44483
44811
|
* @throws {BitmovinError}
|
|
44484
44812
|
* @memberof HlsApi
|
|
44485
44813
|
*/
|
|
@@ -44490,7 +44818,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44490
44818
|
};
|
|
44491
44819
|
/**
|
|
44492
44820
|
* @summary Delete HLS Manifest
|
|
44493
|
-
* @param {string} manifestId Id of the
|
|
44821
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44494
44822
|
* @throws {BitmovinError}
|
|
44495
44823
|
* @memberof HlsApi
|
|
44496
44824
|
*/
|
|
@@ -44504,7 +44832,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44504
44832
|
};
|
|
44505
44833
|
/**
|
|
44506
44834
|
* @summary HLS Manifest Details
|
|
44507
|
-
* @param {string} manifestId Id of the
|
|
44835
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44508
44836
|
* @throws {BitmovinError}
|
|
44509
44837
|
* @memberof HlsApi
|
|
44510
44838
|
*/
|
|
@@ -44516,6 +44844,20 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44516
44844
|
return (0, Mapper_1.map)(response, HlsManifest_1.default);
|
|
44517
44845
|
});
|
|
44518
44846
|
};
|
|
44847
|
+
/**
|
|
44848
|
+
* @summary Manifest Start Details
|
|
44849
|
+
* @param {string} manifestId ID of the manifest
|
|
44850
|
+
* @throws {BitmovinError}
|
|
44851
|
+
* @memberof HlsApi
|
|
44852
|
+
*/
|
|
44853
|
+
HlsApi.prototype.getStartRequest = function (manifestId) {
|
|
44854
|
+
var pathParamMap = {
|
|
44855
|
+
manifest_id: manifestId
|
|
44856
|
+
};
|
|
44857
|
+
return this.restClient.get('/encoding/manifests/hls/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
44858
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
44859
|
+
});
|
|
44860
|
+
};
|
|
44519
44861
|
/**
|
|
44520
44862
|
* @summary List HLS Manifests
|
|
44521
44863
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -44536,7 +44878,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44536
44878
|
};
|
|
44537
44879
|
/**
|
|
44538
44880
|
* @summary Start HLS Manifest Creation
|
|
44539
|
-
* @param {string} manifestId Id of the HLS
|
|
44881
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44540
44882
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
44541
44883
|
* @throws {BitmovinError}
|
|
44542
44884
|
* @memberof HlsApi
|
|
@@ -44551,7 +44893,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44551
44893
|
};
|
|
44552
44894
|
/**
|
|
44553
44895
|
* @summary HLS Manifest Creation Status
|
|
44554
|
-
* @param {string} manifestId Id of the HLS
|
|
44896
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44555
44897
|
* @throws {BitmovinError}
|
|
44556
44898
|
* @memberof HlsApi
|
|
44557
44899
|
*/
|
|
@@ -44565,7 +44907,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44565
44907
|
};
|
|
44566
44908
|
/**
|
|
44567
44909
|
* @summary Stop HLS Manifest Creation
|
|
44568
|
-
* @param {string} manifestId Id of the HLS
|
|
44910
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44569
44911
|
* @throws {BitmovinError}
|
|
44570
44912
|
* @memberof HlsApi
|
|
44571
44913
|
*/
|
|
@@ -44730,8 +45072,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
44730
45072
|
return _super.call(this, configuration) || this;
|
|
44731
45073
|
}
|
|
44732
45074
|
/**
|
|
44733
|
-
* @summary Create HLS Manifest
|
|
44734
|
-
* @param {HlsManifestDefault} hlsManifestDefault
|
|
45075
|
+
* @summary Create Default HLS Manifest
|
|
45076
|
+
* @param {HlsManifestDefault} hlsManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
|
|
44735
45077
|
* @throws {BitmovinError}
|
|
44736
45078
|
* @memberof DefaultApi
|
|
44737
45079
|
*/
|
|
@@ -46340,6 +46682,7 @@ var RepresentationsApi_1 = __webpack_require__(/*! ./representations/Representat
|
|
|
46340
46682
|
var ContentprotectionApi_1 = __webpack_require__(/*! ./contentprotection/ContentprotectionApi */ "./encoding/manifests/smooth/contentprotection/ContentprotectionApi.ts");
|
|
46341
46683
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
46342
46684
|
var SmoothStreamingManifest_1 = __webpack_require__(/*! ../../../models/SmoothStreamingManifest */ "./models/SmoothStreamingManifest.ts");
|
|
46685
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
46343
46686
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
46344
46687
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
46345
46688
|
var SmoothStreamingManifestListQueryParams_1 = __webpack_require__(/*! ./SmoothStreamingManifestListQueryParams */ "./encoding/manifests/smooth/SmoothStreamingManifestListQueryParams.ts");
|
|
@@ -46361,7 +46704,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46361
46704
|
}
|
|
46362
46705
|
/**
|
|
46363
46706
|
* @summary Create Smooth Streaming Manifest
|
|
46364
|
-
* @param {SmoothStreamingManifest} smoothStreamingManifest
|
|
46707
|
+
* @param {SmoothStreamingManifest} smoothStreamingManifest A Custom Smooth Streaming Manifest gives you full control over its contents. Add Representations and Content Protections via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
|
|
46365
46708
|
* @throws {BitmovinError}
|
|
46366
46709
|
* @memberof SmoothApi
|
|
46367
46710
|
*/
|
|
@@ -46372,7 +46715,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46372
46715
|
};
|
|
46373
46716
|
/**
|
|
46374
46717
|
* @summary Delete Smooth Streaming Manifest
|
|
46375
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46718
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46376
46719
|
* @throws {BitmovinError}
|
|
46377
46720
|
* @memberof SmoothApi
|
|
46378
46721
|
*/
|
|
@@ -46386,7 +46729,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46386
46729
|
};
|
|
46387
46730
|
/**
|
|
46388
46731
|
* @summary Smooth Streaming Manifest Details
|
|
46389
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46732
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46390
46733
|
* @throws {BitmovinError}
|
|
46391
46734
|
* @memberof SmoothApi
|
|
46392
46735
|
*/
|
|
@@ -46398,6 +46741,20 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46398
46741
|
return (0, Mapper_1.map)(response, SmoothStreamingManifest_1.default);
|
|
46399
46742
|
});
|
|
46400
46743
|
};
|
|
46744
|
+
/**
|
|
46745
|
+
* @summary Manifest Start Details
|
|
46746
|
+
* @param {string} manifestId Id of the manifest
|
|
46747
|
+
* @throws {BitmovinError}
|
|
46748
|
+
* @memberof SmoothApi
|
|
46749
|
+
*/
|
|
46750
|
+
SmoothApi.prototype.getStartRequest = function (manifestId) {
|
|
46751
|
+
var pathParamMap = {
|
|
46752
|
+
manifest_id: manifestId
|
|
46753
|
+
};
|
|
46754
|
+
return this.restClient.get('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
46755
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
46756
|
+
});
|
|
46757
|
+
};
|
|
46401
46758
|
/**
|
|
46402
46759
|
* @summary List Smooth Streaming Manifests
|
|
46403
46760
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -46418,7 +46775,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46418
46775
|
};
|
|
46419
46776
|
/**
|
|
46420
46777
|
* @summary Start Smooth Streaming Manifest Creation
|
|
46421
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46778
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46422
46779
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
46423
46780
|
* @throws {BitmovinError}
|
|
46424
46781
|
* @memberof SmoothApi
|
|
@@ -46433,7 +46790,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46433
46790
|
};
|
|
46434
46791
|
/**
|
|
46435
46792
|
* @summary Smooth Streaming Manifest Creation Status
|
|
46436
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46793
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46437
46794
|
* @throws {BitmovinError}
|
|
46438
46795
|
* @memberof SmoothApi
|
|
46439
46796
|
*/
|
|
@@ -46447,7 +46804,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46447
46804
|
};
|
|
46448
46805
|
/**
|
|
46449
46806
|
* @summary Stop Smooth Streaming Manifest Creation
|
|
46450
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46807
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46451
46808
|
* @throws {BitmovinError}
|
|
46452
46809
|
* @memberof SmoothApi
|
|
46453
46810
|
*/
|
|
@@ -46769,8 +47126,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
46769
47126
|
return _super.call(this, configuration) || this;
|
|
46770
47127
|
}
|
|
46771
47128
|
/**
|
|
46772
|
-
* @summary Create Smooth Streaming Manifest
|
|
46773
|
-
* @param {SmoothManifestDefault} smoothManifestDefault
|
|
47129
|
+
* @summary Create Default Smooth Streaming Manifest
|
|
47130
|
+
* @param {SmoothManifestDefault} smoothManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
|
|
46774
47131
|
* @throws {BitmovinError}
|
|
46775
47132
|
* @memberof DefaultApi
|
|
46776
47133
|
*/
|
|
@@ -63167,7 +63524,6 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
|
|
|
63167
63524
|
var DashManifest_1 = __webpack_require__(/*! ./DashManifest */ "./models/DashManifest.ts");
|
|
63168
63525
|
var DefaultDashManifestPeriod_1 = __webpack_require__(/*! ./DefaultDashManifestPeriod */ "./models/DefaultDashManifestPeriod.ts");
|
|
63169
63526
|
/**
|
|
63170
|
-
* V2 of the default dash manifest is an experimental feature and might be subject to change in the future.
|
|
63171
63527
|
* @export
|
|
63172
63528
|
* @class DashManifestDefault
|
|
63173
63529
|
*/
|
|
@@ -70008,6 +70364,159 @@ var HeAacV2Signaling;
|
|
|
70008
70364
|
exports["default"] = HeAacV2Signaling;
|
|
70009
70365
|
|
|
70010
70366
|
|
|
70367
|
+
/***/ }),
|
|
70368
|
+
|
|
70369
|
+
/***/ "./models/HistoryEncoding.ts":
|
|
70370
|
+
/*!***********************************!*\
|
|
70371
|
+
!*** ./models/HistoryEncoding.ts ***!
|
|
70372
|
+
\***********************************/
|
|
70373
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70374
|
+
|
|
70375
|
+
"use strict";
|
|
70376
|
+
|
|
70377
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70378
|
+
exports.HistoryEncoding = void 0;
|
|
70379
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70380
|
+
var ConvertSccCaption_1 = __webpack_require__(/*! ./ConvertSccCaption */ "./models/ConvertSccCaption.ts");
|
|
70381
|
+
var Encoding_1 = __webpack_require__(/*! ./Encoding */ "./models/Encoding.ts");
|
|
70382
|
+
var HistoryMuxing_1 = __webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts");
|
|
70383
|
+
var HistoryStream_1 = __webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts");
|
|
70384
|
+
var Keyframe_1 = __webpack_require__(/*! ./Keyframe */ "./models/Keyframe.ts");
|
|
70385
|
+
var LiveEncoding_1 = __webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts");
|
|
70386
|
+
var SidecarFile_1 = __webpack_require__(/*! ./SidecarFile */ "./models/SidecarFile.ts");
|
|
70387
|
+
var StartEncodingRequest_1 = __webpack_require__(/*! ./StartEncodingRequest */ "./models/StartEncodingRequest.ts");
|
|
70388
|
+
var StartLiveEncodingRequest_1 = __webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/StartLiveEncodingRequest.ts");
|
|
70389
|
+
var StreamInput_1 = __webpack_require__(/*! ./StreamInput */ "./models/StreamInput.ts");
|
|
70390
|
+
var Task_1 = __webpack_require__(/*! ./Task */ "./models/Task.ts");
|
|
70391
|
+
var TransferRetry_1 = __webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts");
|
|
70392
|
+
/**
|
|
70393
|
+
* @export
|
|
70394
|
+
* @class HistoryEncoding
|
|
70395
|
+
*/
|
|
70396
|
+
var HistoryEncoding = /** @class */ (function () {
|
|
70397
|
+
function HistoryEncoding(obj) {
|
|
70398
|
+
if (!obj) {
|
|
70399
|
+
return;
|
|
70400
|
+
}
|
|
70401
|
+
this.encoding = (0, Mapper_1.map)(obj.encoding, Encoding_1.default);
|
|
70402
|
+
this.live = (0, Mapper_1.map)(obj.live, LiveEncoding_1.default);
|
|
70403
|
+
this.vodStartReqeust = (0, Mapper_1.map)(obj.vodStartReqeust, StartEncodingRequest_1.default);
|
|
70404
|
+
this.liveStartReqeust = (0, Mapper_1.map)(obj.liveStartReqeust, StartLiveEncodingRequest_1.default);
|
|
70405
|
+
this.status = (0, Mapper_1.map)(obj.status, Task_1.default);
|
|
70406
|
+
this.inputStreams = (0, Mapper_1.mapArray)(obj.inputStreams, StreamInput_1.default);
|
|
70407
|
+
this.streams = (0, Mapper_1.mapArray)(obj.streams, HistoryStream_1.default);
|
|
70408
|
+
this.muxings = (0, Mapper_1.mapArray)(obj.muxings, HistoryMuxing_1.default);
|
|
70409
|
+
this.keyFrames = (0, Mapper_1.mapArray)(obj.keyFrames, Keyframe_1.default);
|
|
70410
|
+
this.sidecarFiles = (0, Mapper_1.mapArray)(obj.sidecarFiles, SidecarFile_1.default);
|
|
70411
|
+
this.transferRetries = (0, Mapper_1.mapArray)(obj.transferRetries, TransferRetry_1.default);
|
|
70412
|
+
this.convertSccCaptions = (0, Mapper_1.mapArray)(obj.convertSccCaptions, ConvertSccCaption_1.default);
|
|
70413
|
+
}
|
|
70414
|
+
return HistoryEncoding;
|
|
70415
|
+
}());
|
|
70416
|
+
exports.HistoryEncoding = HistoryEncoding;
|
|
70417
|
+
exports["default"] = HistoryEncoding;
|
|
70418
|
+
|
|
70419
|
+
|
|
70420
|
+
/***/ }),
|
|
70421
|
+
|
|
70422
|
+
/***/ "./models/HistoryMuxing.ts":
|
|
70423
|
+
/*!*********************************!*\
|
|
70424
|
+
!*** ./models/HistoryMuxing.ts ***!
|
|
70425
|
+
\*********************************/
|
|
70426
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70427
|
+
|
|
70428
|
+
"use strict";
|
|
70429
|
+
|
|
70430
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70431
|
+
exports.HistoryMuxing = void 0;
|
|
70432
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70433
|
+
var BroadcastTsMuxingInformation_1 = __webpack_require__(/*! ./BroadcastTsMuxingInformation */ "./models/BroadcastTsMuxingInformation.ts");
|
|
70434
|
+
var Drm_1 = __webpack_require__(/*! ./Drm */ "./models/Drm.ts");
|
|
70435
|
+
var Fmp4MuxingInformation_1 = __webpack_require__(/*! ./Fmp4MuxingInformation */ "./models/Fmp4MuxingInformation.ts");
|
|
70436
|
+
var Mp3MuxingInformation_1 = __webpack_require__(/*! ./Mp3MuxingInformation */ "./models/Mp3MuxingInformation.ts");
|
|
70437
|
+
var Mp4MuxingInformation_1 = __webpack_require__(/*! ./Mp4MuxingInformation */ "./models/Mp4MuxingInformation.ts");
|
|
70438
|
+
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
70439
|
+
var PackedAudioMuxingInformation_1 = __webpack_require__(/*! ./PackedAudioMuxingInformation */ "./models/PackedAudioMuxingInformation.ts");
|
|
70440
|
+
var ProgressiveMovMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveMovMuxingInformation */ "./models/ProgressiveMovMuxingInformation.ts");
|
|
70441
|
+
var ProgressiveTsMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveTsMuxingInformation */ "./models/ProgressiveTsMuxingInformation.ts");
|
|
70442
|
+
var ProgressiveWebmMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveWebmMuxingInformation */ "./models/ProgressiveWebmMuxingInformation.ts");
|
|
70443
|
+
/**
|
|
70444
|
+
* @export
|
|
70445
|
+
* @class HistoryMuxing
|
|
70446
|
+
*/
|
|
70447
|
+
var HistoryMuxing = /** @class */ (function () {
|
|
70448
|
+
function HistoryMuxing(obj) {
|
|
70449
|
+
if (!obj) {
|
|
70450
|
+
return;
|
|
70451
|
+
}
|
|
70452
|
+
this.muxing = (0, Mapper_1.map)(obj.muxing, Muxing_1.default);
|
|
70453
|
+
this.drms = (0, Mapper_1.mapArray)(obj.drms, Drm_1.default);
|
|
70454
|
+
this.broadcastTsMuxingInformation = (0, Mapper_1.map)(obj.broadcastTsMuxingInformation, BroadcastTsMuxingInformation_1.default);
|
|
70455
|
+
this.fmp4MuxingInformation = (0, Mapper_1.map)(obj.fmp4MuxingInformation, Fmp4MuxingInformation_1.default);
|
|
70456
|
+
this.mp3MuxingInformation = (0, Mapper_1.map)(obj.mp3MuxingInformation, Mp3MuxingInformation_1.default);
|
|
70457
|
+
this.mp4MuxingInformation = (0, Mapper_1.map)(obj.mp4MuxingInformation, Mp4MuxingInformation_1.default);
|
|
70458
|
+
this.packedAudioMuxingInformation = (0, Mapper_1.map)(obj.packedAudioMuxingInformation, PackedAudioMuxingInformation_1.default);
|
|
70459
|
+
this.progressiveMovMuxingInformation = (0, Mapper_1.map)(obj.progressiveMovMuxingInformation, ProgressiveMovMuxingInformation_1.default);
|
|
70460
|
+
this.progressiveTsMuxingInformation = (0, Mapper_1.map)(obj.progressiveTsMuxingInformation, ProgressiveTsMuxingInformation_1.default);
|
|
70461
|
+
this.progressiveWebmMuxingInformation = (0, Mapper_1.map)(obj.progressiveWebmMuxingInformation, ProgressiveWebmMuxingInformation_1.default);
|
|
70462
|
+
}
|
|
70463
|
+
return HistoryMuxing;
|
|
70464
|
+
}());
|
|
70465
|
+
exports.HistoryMuxing = HistoryMuxing;
|
|
70466
|
+
exports["default"] = HistoryMuxing;
|
|
70467
|
+
|
|
70468
|
+
|
|
70469
|
+
/***/ }),
|
|
70470
|
+
|
|
70471
|
+
/***/ "./models/HistoryStream.ts":
|
|
70472
|
+
/*!*********************************!*\
|
|
70473
|
+
!*** ./models/HistoryStream.ts ***!
|
|
70474
|
+
\*********************************/
|
|
70475
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70476
|
+
|
|
70477
|
+
"use strict";
|
|
70478
|
+
|
|
70479
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70480
|
+
exports.HistoryStream = void 0;
|
|
70481
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70482
|
+
var Bif_1 = __webpack_require__(/*! ./Bif */ "./models/Bif.ts");
|
|
70483
|
+
var BurnInSubtitleDvbSub_1 = __webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInSubtitleDvbSub.ts");
|
|
70484
|
+
var BurnInSubtitleSrt_1 = __webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts");
|
|
70485
|
+
var DolbyVisionMetadata_1 = __webpack_require__(/*! ./DolbyVisionMetadata */ "./models/DolbyVisionMetadata.ts");
|
|
70486
|
+
var NexGuardFileMarker_1 = __webpack_require__(/*! ./NexGuardFileMarker */ "./models/NexGuardFileMarker.ts");
|
|
70487
|
+
var PsnrQualityMetric_1 = __webpack_require__(/*! ./PsnrQualityMetric */ "./models/PsnrQualityMetric.ts");
|
|
70488
|
+
var SccCaption_1 = __webpack_require__(/*! ./SccCaption */ "./models/SccCaption.ts");
|
|
70489
|
+
var Sprite_1 = __webpack_require__(/*! ./Sprite */ "./models/Sprite.ts");
|
|
70490
|
+
var Stream_1 = __webpack_require__(/*! ./Stream */ "./models/Stream.ts");
|
|
70491
|
+
var StreamFilter_1 = __webpack_require__(/*! ./StreamFilter */ "./models/StreamFilter.ts");
|
|
70492
|
+
var Thumbnail_1 = __webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts");
|
|
70493
|
+
/**
|
|
70494
|
+
* @export
|
|
70495
|
+
* @class HistoryStream
|
|
70496
|
+
*/
|
|
70497
|
+
var HistoryStream = /** @class */ (function () {
|
|
70498
|
+
function HistoryStream(obj) {
|
|
70499
|
+
if (!obj) {
|
|
70500
|
+
return;
|
|
70501
|
+
}
|
|
70502
|
+
this.stream = (0, Mapper_1.map)(obj.stream, Stream_1.default);
|
|
70503
|
+
this.filters = (0, Mapper_1.mapArray)(obj.filters, StreamFilter_1.default);
|
|
70504
|
+
this.burnInSubtitleDvbSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleDvbSubs, BurnInSubtitleDvbSub_1.default);
|
|
70505
|
+
this.burnInSubtitleSrtSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleSrtSubs, BurnInSubtitleSrt_1.default);
|
|
70506
|
+
this.nexGuardFileMarker = (0, Mapper_1.map)(obj.nexGuardFileMarker, NexGuardFileMarker_1.default);
|
|
70507
|
+
this.sccCaptions = (0, Mapper_1.mapArray)(obj.sccCaptions, SccCaption_1.default);
|
|
70508
|
+
this.bifs = (0, Mapper_1.mapArray)(obj.bifs, Bif_1.default);
|
|
70509
|
+
this.dolbyVisionMetadata = (0, Mapper_1.mapArray)(obj.dolbyVisionMetadata, DolbyVisionMetadata_1.default);
|
|
70510
|
+
this.thumbnails = (0, Mapper_1.mapArray)(obj.thumbnails, Thumbnail_1.default);
|
|
70511
|
+
this.sprites = (0, Mapper_1.mapArray)(obj.sprites, Sprite_1.default);
|
|
70512
|
+
this.psnrMetrics = (0, Mapper_1.mapArray)(obj.psnrMetrics, PsnrQualityMetric_1.default);
|
|
70513
|
+
}
|
|
70514
|
+
return HistoryStream;
|
|
70515
|
+
}());
|
|
70516
|
+
exports.HistoryStream = HistoryStream;
|
|
70517
|
+
exports["default"] = HistoryStream;
|
|
70518
|
+
|
|
70519
|
+
|
|
70011
70520
|
/***/ }),
|
|
70012
70521
|
|
|
70013
70522
|
/***/ "./models/HlsManifest.ts":
|
|
@@ -78962,6 +79471,36 @@ var SimpleEncodingVodJobInputType;
|
|
|
78962
79471
|
exports["default"] = SimpleEncodingVodJobInputType;
|
|
78963
79472
|
|
|
78964
79473
|
|
|
79474
|
+
/***/ }),
|
|
79475
|
+
|
|
79476
|
+
/***/ "./models/SimpleEncodingVodJobOptions.ts":
|
|
79477
|
+
/*!***********************************************!*\
|
|
79478
|
+
!*** ./models/SimpleEncodingVodJobOptions.ts ***!
|
|
79479
|
+
\***********************************************/
|
|
79480
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
79481
|
+
|
|
79482
|
+
"use strict";
|
|
79483
|
+
|
|
79484
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
79485
|
+
exports.SimpleEncodingVodJobOptions = void 0;
|
|
79486
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79487
|
+
/**
|
|
79488
|
+
* @export
|
|
79489
|
+
* @class SimpleEncodingVodJobOptions
|
|
79490
|
+
*/
|
|
79491
|
+
var SimpleEncodingVodJobOptions = /** @class */ (function () {
|
|
79492
|
+
function SimpleEncodingVodJobOptions(obj) {
|
|
79493
|
+
if (!obj) {
|
|
79494
|
+
return;
|
|
79495
|
+
}
|
|
79496
|
+
this.singleFileOutput = (0, Mapper_1.map)(obj.singleFileOutput);
|
|
79497
|
+
}
|
|
79498
|
+
return SimpleEncodingVodJobOptions;
|
|
79499
|
+
}());
|
|
79500
|
+
exports.SimpleEncodingVodJobOptions = SimpleEncodingVodJobOptions;
|
|
79501
|
+
exports["default"] = SimpleEncodingVodJobOptions;
|
|
79502
|
+
|
|
79503
|
+
|
|
78965
79504
|
/***/ }),
|
|
78966
79505
|
|
|
78967
79506
|
/***/ "./models/SimpleEncodingVodJobOutput.ts":
|
|
@@ -79068,6 +79607,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
79068
79607
|
exports.SimpleEncodingVodJobRequest = void 0;
|
|
79069
79608
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79070
79609
|
var SimpleEncodingVodJobInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts");
|
|
79610
|
+
var SimpleEncodingVodJobOptions_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts");
|
|
79071
79611
|
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79072
79612
|
/**
|
|
79073
79613
|
* @export
|
|
@@ -79081,6 +79621,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
|
|
|
79081
79621
|
this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
79082
79622
|
this.inputs = (0, Mapper_1.mapArray)(obj.inputs, SimpleEncodingVodJobInput_1.default);
|
|
79083
79623
|
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79624
|
+
this.options = (0, Mapper_1.map)(obj.options, SimpleEncodingVodJobOptions_1.default);
|
|
79084
79625
|
this.name = (0, Mapper_1.map)(obj.name);
|
|
79085
79626
|
}
|
|
79086
79627
|
return SimpleEncodingVodJobRequest;
|
|
@@ -79104,6 +79645,7 @@ exports.SimpleEncodingVodJobResponse = void 0;
|
|
|
79104
79645
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79105
79646
|
var SimpleEncodingVodJobErrors_1 = __webpack_require__(/*! ./SimpleEncodingVodJobErrors */ "./models/SimpleEncodingVodJobErrors.ts");
|
|
79106
79647
|
var SimpleEncodingVodJobInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts");
|
|
79648
|
+
var SimpleEncodingVodJobOptions_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts");
|
|
79107
79649
|
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79108
79650
|
/**
|
|
79109
79651
|
* @export
|
|
@@ -79120,6 +79662,7 @@ var SimpleEncodingVodJobResponse = /** @class */ (function () {
|
|
|
79120
79662
|
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
79121
79663
|
this.inputs = (0, Mapper_1.mapArray)(obj.inputs, SimpleEncodingVodJobInput_1.default);
|
|
79122
79664
|
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79665
|
+
this.options = (0, Mapper_1.map)(obj.options, SimpleEncodingVodJobOptions_1.default);
|
|
79123
79666
|
this.errors = (0, Mapper_1.mapArray)(obj.errors, SimpleEncodingVodJobErrors_1.default);
|
|
79124
79667
|
this.createdAt = (0, Mapper_1.map)(obj.createdAt, Date);
|
|
79125
79668
|
this.modifiedAt = (0, Mapper_1.map)(obj.modifiedAt, Date);
|
|
@@ -85365,6 +85908,9 @@ __exportStar(__webpack_require__(/*! ./HeAacV1AudioConfiguration */ "./models/He
|
|
|
85365
85908
|
__exportStar(__webpack_require__(/*! ./HeAacV1Signaling */ "./models/HeAacV1Signaling.ts"), exports);
|
|
85366
85909
|
__exportStar(__webpack_require__(/*! ./HeAacV2AudioConfiguration */ "./models/HeAacV2AudioConfiguration.ts"), exports);
|
|
85367
85910
|
__exportStar(__webpack_require__(/*! ./HeAacV2Signaling */ "./models/HeAacV2Signaling.ts"), exports);
|
|
85911
|
+
__exportStar(__webpack_require__(/*! ./HistoryEncoding */ "./models/HistoryEncoding.ts"), exports);
|
|
85912
|
+
__exportStar(__webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts"), exports);
|
|
85913
|
+
__exportStar(__webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts"), exports);
|
|
85368
85914
|
__exportStar(__webpack_require__(/*! ./HlsManifest */ "./models/HlsManifest.ts"), exports);
|
|
85369
85915
|
__exportStar(__webpack_require__(/*! ./HlsManifestDefault */ "./models/HlsManifestDefault.ts"), exports);
|
|
85370
85916
|
__exportStar(__webpack_require__(/*! ./HlsManifestDefaultVersion */ "./models/HlsManifestDefaultVersion.ts"), exports);
|
|
@@ -85597,6 +86143,7 @@ __exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobGcsServiceAccountCred
|
|
|
85597
86143
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts"), exports);
|
|
85598
86144
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInputSourceType */ "./models/SimpleEncodingVodJobInputSourceType.ts"), exports);
|
|
85599
86145
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInputType */ "./models/SimpleEncodingVodJobInputType.ts"), exports);
|
|
86146
|
+
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts"), exports);
|
|
85600
86147
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts"), exports);
|
|
85601
86148
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutputArtifact */ "./models/SimpleEncodingVodJobOutputArtifact.ts"), exports);
|
|
85602
86149
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutputType */ "./models/SimpleEncodingVodJobOutputType.ts"), exports);
|
|
@@ -89411,7 +89958,6 @@ var Mapper_1 = __webpack_require__(/*! ../../common/Mapper */ "./common/Mapper.t
|
|
|
89411
89958
|
var StopApi_1 = __webpack_require__(/*! ./stop/StopApi */ "./streams/live/stop/StopApi.ts");
|
|
89412
89959
|
var StartApi_1 = __webpack_require__(/*! ./start/StartApi */ "./streams/live/start/StartApi.ts");
|
|
89413
89960
|
var StreamsLiveResponse_1 = __webpack_require__(/*! ../../models/StreamsLiveResponse */ "./models/StreamsLiveResponse.ts");
|
|
89414
|
-
var StreamsLiveUpdateRequest_1 = __webpack_require__(/*! ../../models/StreamsLiveUpdateRequest */ "./models/StreamsLiveUpdateRequest.ts");
|
|
89415
89961
|
var PaginationResponse_1 = __webpack_require__(/*! ../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
89416
89962
|
var StreamsLiveResponseListQueryParams_1 = __webpack_require__(/*! ./StreamsLiveResponseListQueryParams */ "./streams/live/StreamsLiveResponseListQueryParams.ts");
|
|
89417
89963
|
/**
|
|
@@ -89483,7 +90029,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
89483
90029
|
stream_id: streamId
|
|
89484
90030
|
};
|
|
89485
90031
|
return this.restClient.patch('/streams/live/{stream_id}', pathParamMap, streamsLiveUpdateRequest).then(function (response) {
|
|
89486
|
-
return (0, Mapper_1.map)(response,
|
|
90032
|
+
return (0, Mapper_1.map)(response, StreamsLiveResponse_1.default);
|
|
89487
90033
|
});
|
|
89488
90034
|
};
|
|
89489
90035
|
/**
|
|
@@ -89498,7 +90044,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
89498
90044
|
stream_id: streamId
|
|
89499
90045
|
};
|
|
89500
90046
|
return this.restClient.put('/streams/live/{stream_id}', pathParamMap, streamsLiveUpdateRequest).then(function (response) {
|
|
89501
|
-
return (0, Mapper_1.map)(response,
|
|
90047
|
+
return (0, Mapper_1.map)(response, StreamsLiveResponse_1.default);
|
|
89502
90048
|
});
|
|
89503
90049
|
};
|
|
89504
90050
|
return LiveApi;
|
|
@@ -89926,11 +90472,11 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (nam
|
|
|
89926
90472
|
"use strict";
|
|
89927
90473
|
__webpack_require__.r(__webpack_exports__);
|
|
89928
90474
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
89929
|
-
/* harmony export */
|
|
89930
|
-
/* harmony export */
|
|
89931
|
-
/* harmony export */
|
|
89932
|
-
/* harmony export */
|
|
89933
|
-
/* harmony export */
|
|
90475
|
+
/* harmony export */ DOMException: () => (/* binding */ DOMException),
|
|
90476
|
+
/* harmony export */ Headers: () => (/* binding */ Headers),
|
|
90477
|
+
/* harmony export */ Request: () => (/* binding */ Request),
|
|
90478
|
+
/* harmony export */ Response: () => (/* binding */ Response),
|
|
90479
|
+
/* harmony export */ fetch: () => (/* binding */ fetch)
|
|
89934
90480
|
/* harmony export */ });
|
|
89935
90481
|
var global =
|
|
89936
90482
|
(typeof globalThis !== 'undefined' && globalThis) ||
|