@bitmovin/api-sdk 1.160.0 → 1.162.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 +601 -9
- 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 +206 -0
- package/dist/encoding/history/encodings/EncodingListQueryParams.js +157 -0
- package/dist/encoding/history/encodings/EncodingsApi.d.ts +29 -0
- package/dist/encoding/history/encodings/EncodingsApi.js +69 -0
- package/dist/models/Av1VideoConfiguration.d.ts +1 -1
- package/dist/models/H264VideoConfiguration.d.ts +1 -1
- package/dist/models/H265VideoConfiguration.d.ts +1 -1
- 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/LiveHlsManifest.d.ts +7 -0
- package/dist/models/LiveHlsManifest.js +2 -0
- package/dist/models/ProgramDateTimeSettings.d.ts +14 -0
- package/dist/models/ProgramDateTimeSettings.js +19 -0
- package/dist/models/ProgramDateTimeSource.d.ts +10 -0
- package/dist/models/ProgramDateTimeSource.js +14 -0
- package/dist/models/StreamsAdConfigAd.d.ts +23 -0
- package/dist/models/StreamsAdConfigAd.js +21 -0
- package/dist/models/StreamsAdConfigResponse.d.ts +20 -0
- package/dist/models/StreamsAdConfigResponse.js +21 -0
- package/dist/models/StreamsLiveCreateRequest.d.ts +6 -0
- package/dist/models/StreamsLiveCreateRequest.js +1 -0
- package/dist/models/StreamsLiveResponse.d.ts +6 -0
- package/dist/models/StreamsLiveResponse.js +2 -0
- package/dist/models/StreamsLiveUpdateRequest.d.ts +6 -0
- package/dist/models/StreamsLiveUpdateRequest.js +1 -0
- package/dist/models/StreamsVideoCreateRequest.d.ts +6 -0
- package/dist/models/StreamsVideoCreateRequest.js +1 -0
- package/dist/models/StreamsVideoResponse.d.ts +6 -0
- package/dist/models/StreamsVideoResponse.js +2 -0
- package/dist/models/StreamsVideoUpdateRequest.d.ts +6 -0
- package/dist/models/StreamsVideoUpdateRequest.js +1 -0
- package/dist/models/Vp9VideoConfiguration.d.ts +1 -1
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -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.162.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,300 @@ 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 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`
|
|
34452
|
+
*/
|
|
34453
|
+
EncodingListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
34454
|
+
this.internalParams.sort = sort;
|
|
34455
|
+
return this;
|
|
34456
|
+
};
|
|
34457
|
+
/**
|
|
34458
|
+
*
|
|
34459
|
+
* @param type Filter encodings to only show the ones with the type specified.
|
|
34460
|
+
*/
|
|
34461
|
+
EncodingListQueryParamsBuilder.prototype.type = function (type) {
|
|
34462
|
+
this.internalParams.type = type;
|
|
34463
|
+
return this;
|
|
34464
|
+
};
|
|
34465
|
+
/**
|
|
34466
|
+
*
|
|
34467
|
+
* @param status Filter encodings to only show the ones with the status specified.
|
|
34468
|
+
*/
|
|
34469
|
+
EncodingListQueryParamsBuilder.prototype.status = function (status) {
|
|
34470
|
+
this.internalParams.status = status;
|
|
34471
|
+
return this;
|
|
34472
|
+
};
|
|
34473
|
+
/**
|
|
34474
|
+
*
|
|
34475
|
+
* @param cloudRegion Filter encodings to only show the ones with the cloudRegion specified.
|
|
34476
|
+
*/
|
|
34477
|
+
EncodingListQueryParamsBuilder.prototype.cloudRegion = function (cloudRegion) {
|
|
34478
|
+
this.internalParams.cloudRegion = cloudRegion;
|
|
34479
|
+
return this;
|
|
34480
|
+
};
|
|
34481
|
+
/**
|
|
34482
|
+
*
|
|
34483
|
+
* @param selectedCloudRegion Filter encodings to only show the ones with the selectedCloudRegion specified which was selected when cloudregion:AUTO was set
|
|
34484
|
+
*/
|
|
34485
|
+
EncodingListQueryParamsBuilder.prototype.selectedCloudRegion = function (selectedCloudRegion) {
|
|
34486
|
+
this.internalParams.selectedCloudRegion = selectedCloudRegion;
|
|
34487
|
+
return this;
|
|
34488
|
+
};
|
|
34489
|
+
/**
|
|
34490
|
+
*
|
|
34491
|
+
* @param encoderVersion Filter encodings to only show the ones with the encoderVersion specified.
|
|
34492
|
+
*/
|
|
34493
|
+
EncodingListQueryParamsBuilder.prototype.encoderVersion = function (encoderVersion) {
|
|
34494
|
+
this.internalParams.encoderVersion = encoderVersion;
|
|
34495
|
+
return this;
|
|
34496
|
+
};
|
|
34497
|
+
/**
|
|
34498
|
+
*
|
|
34499
|
+
* @param selectedEncoderVersion Filter encodings to only show the ones with the encoderVersion specified that was actually used for the encoding.
|
|
34500
|
+
*/
|
|
34501
|
+
EncodingListQueryParamsBuilder.prototype.selectedEncoderVersion = function (selectedEncoderVersion) {
|
|
34502
|
+
this.internalParams.selectedEncoderVersion = selectedEncoderVersion;
|
|
34503
|
+
return this;
|
|
34504
|
+
};
|
|
34505
|
+
/**
|
|
34506
|
+
*
|
|
34507
|
+
* @param selectedEncodingMode Filter encodings to only show the ones with the encodingMode specified that was actually used for the encoding.
|
|
34508
|
+
*/
|
|
34509
|
+
EncodingListQueryParamsBuilder.prototype.selectedEncodingMode = function (selectedEncodingMode) {
|
|
34510
|
+
this.internalParams.selectedEncodingMode = selectedEncodingMode;
|
|
34511
|
+
return this;
|
|
34512
|
+
};
|
|
34513
|
+
/**
|
|
34514
|
+
*
|
|
34515
|
+
* @param name Filter encodings to only show the ones with this exact name.
|
|
34516
|
+
*/
|
|
34517
|
+
EncodingListQueryParamsBuilder.prototype.name = function (name) {
|
|
34518
|
+
this.internalParams.name = name;
|
|
34519
|
+
return this;
|
|
34520
|
+
};
|
|
34521
|
+
/**
|
|
34522
|
+
*
|
|
34523
|
+
* @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.
|
|
34524
|
+
*/
|
|
34525
|
+
EncodingListQueryParamsBuilder.prototype.search = function (search) {
|
|
34526
|
+
this.internalParams.search = search;
|
|
34527
|
+
return this;
|
|
34528
|
+
};
|
|
34529
|
+
/**
|
|
34530
|
+
*
|
|
34531
|
+
* @param createdAtNewerThan Filter encodings to only return those created after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34532
|
+
*/
|
|
34533
|
+
EncodingListQueryParamsBuilder.prototype.createdAtNewerThan = function (createdAtNewerThan) {
|
|
34534
|
+
this.internalParams.createdAtNewerThan = createdAtNewerThan;
|
|
34535
|
+
return this;
|
|
34536
|
+
};
|
|
34537
|
+
/**
|
|
34538
|
+
*
|
|
34539
|
+
* @param createdAtOlderThan Filter encodings to only return those created before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34540
|
+
*/
|
|
34541
|
+
EncodingListQueryParamsBuilder.prototype.createdAtOlderThan = function (createdAtOlderThan) {
|
|
34542
|
+
this.internalParams.createdAtOlderThan = createdAtOlderThan;
|
|
34543
|
+
return this;
|
|
34544
|
+
};
|
|
34545
|
+
/**
|
|
34546
|
+
*
|
|
34547
|
+
* @param startedAtNewerThan Filter encodings to only return those started after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34548
|
+
*/
|
|
34549
|
+
EncodingListQueryParamsBuilder.prototype.startedAtNewerThan = function (startedAtNewerThan) {
|
|
34550
|
+
this.internalParams.startedAtNewerThan = startedAtNewerThan;
|
|
34551
|
+
return this;
|
|
34552
|
+
};
|
|
34553
|
+
/**
|
|
34554
|
+
*
|
|
34555
|
+
* @param startedAtOlderThan Filter encodings to only return those started before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
34556
|
+
*/
|
|
34557
|
+
EncodingListQueryParamsBuilder.prototype.startedAtOlderThan = function (startedAtOlderThan) {
|
|
34558
|
+
this.internalParams.startedAtOlderThan = startedAtOlderThan;
|
|
34559
|
+
return this;
|
|
34560
|
+
};
|
|
34561
|
+
/**
|
|
34562
|
+
*
|
|
34563
|
+
* @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)
|
|
34564
|
+
*/
|
|
34565
|
+
EncodingListQueryParamsBuilder.prototype.finishedAtNewerThan = function (finishedAtNewerThan) {
|
|
34566
|
+
this.internalParams.finishedAtNewerThan = finishedAtNewerThan;
|
|
34567
|
+
return this;
|
|
34568
|
+
};
|
|
34569
|
+
/**
|
|
34570
|
+
*
|
|
34571
|
+
* @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)
|
|
34572
|
+
*/
|
|
34573
|
+
EncodingListQueryParamsBuilder.prototype.finishedAtOlderThan = function (finishedAtOlderThan) {
|
|
34574
|
+
this.internalParams.finishedAtOlderThan = finishedAtOlderThan;
|
|
34575
|
+
return this;
|
|
34576
|
+
};
|
|
34577
|
+
EncodingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
34578
|
+
return this.internalParams;
|
|
34579
|
+
};
|
|
34580
|
+
return EncodingListQueryParamsBuilder;
|
|
34581
|
+
}());
|
|
34582
|
+
exports.EncodingListQueryParamsBuilder = EncodingListQueryParamsBuilder;
|
|
34583
|
+
|
|
34584
|
+
|
|
34585
|
+
/***/ }),
|
|
34586
|
+
|
|
34587
|
+
/***/ "./encoding/history/encodings/EncodingsApi.ts":
|
|
34588
|
+
/*!****************************************************!*\
|
|
34589
|
+
!*** ./encoding/history/encodings/EncodingsApi.ts ***!
|
|
34590
|
+
\****************************************************/
|
|
34591
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
34592
|
+
|
|
34593
|
+
"use strict";
|
|
34594
|
+
|
|
34595
|
+
var __extends = (this && this.__extends) || (function () {
|
|
34596
|
+
var extendStatics = function (d, b) {
|
|
34597
|
+
extendStatics = Object.setPrototypeOf ||
|
|
34598
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
34599
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
34600
|
+
return extendStatics(d, b);
|
|
34601
|
+
};
|
|
34602
|
+
return function (d, b) {
|
|
34603
|
+
if (typeof b !== "function" && b !== null)
|
|
34604
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
34605
|
+
extendStatics(d, b);
|
|
34606
|
+
function __() { this.constructor = d; }
|
|
34607
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34608
|
+
};
|
|
34609
|
+
})();
|
|
34610
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
34611
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
34612
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
34613
|
+
var Encoding_1 = __webpack_require__(/*! ../../../models/Encoding */ "./models/Encoding.ts");
|
|
34614
|
+
var HistoryEncoding_1 = __webpack_require__(/*! ../../../models/HistoryEncoding */ "./models/HistoryEncoding.ts");
|
|
34615
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
34616
|
+
var EncodingListQueryParams_1 = __webpack_require__(/*! ./EncodingListQueryParams */ "./encoding/history/encodings/EncodingListQueryParams.ts");
|
|
34617
|
+
/**
|
|
34618
|
+
* EncodingsApi - object-oriented interface
|
|
34619
|
+
* @export
|
|
34620
|
+
* @class EncodingsApi
|
|
34621
|
+
* @extends {BaseAPI}
|
|
34622
|
+
*/
|
|
34623
|
+
var EncodingsApi = /** @class */ (function (_super) {
|
|
34624
|
+
__extends(EncodingsApi, _super);
|
|
34625
|
+
function EncodingsApi(configuration) {
|
|
34626
|
+
return _super.call(this, configuration) || this;
|
|
34627
|
+
}
|
|
34628
|
+
/**
|
|
34629
|
+
* @summary (Experimental) History Encoding Details
|
|
34630
|
+
* @param {string} encodingId Id of the encoding.
|
|
34631
|
+
* @throws {BitmovinError}
|
|
34632
|
+
* @memberof EncodingsApi
|
|
34633
|
+
*/
|
|
34634
|
+
EncodingsApi.prototype.get = function (encodingId) {
|
|
34635
|
+
var pathParamMap = {
|
|
34636
|
+
encoding_id: encodingId
|
|
34637
|
+
};
|
|
34638
|
+
return this.restClient.get('/encoding/history/encodings/{encoding_id}', pathParamMap).then(function (response) {
|
|
34639
|
+
return (0, Mapper_1.map)(response, HistoryEncoding_1.default);
|
|
34640
|
+
});
|
|
34641
|
+
};
|
|
34642
|
+
/**
|
|
34643
|
+
* @summary (Experimental) List all History Encodings
|
|
34644
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
34645
|
+
* @throws {BitmovinError}
|
|
34646
|
+
* @memberof EncodingsApi
|
|
34647
|
+
*/
|
|
34648
|
+
EncodingsApi.prototype.list = function (queryParameters) {
|
|
34649
|
+
var queryParams = {};
|
|
34650
|
+
if (typeof queryParameters === 'function') {
|
|
34651
|
+
queryParams = queryParameters(new EncodingListQueryParams_1.EncodingListQueryParamsBuilder()).buildQueryParams();
|
|
34652
|
+
}
|
|
34653
|
+
else if (queryParameters) {
|
|
34654
|
+
queryParams = queryParameters;
|
|
34655
|
+
}
|
|
34656
|
+
return this.restClient.get('/encoding/history/encodings', {}, queryParams).then(function (response) {
|
|
34657
|
+
return new PaginationResponse_1.default(response, Encoding_1.default);
|
|
34658
|
+
});
|
|
34659
|
+
};
|
|
34660
|
+
return EncodingsApi;
|
|
34661
|
+
}(BaseAPI_1.BaseAPI));
|
|
34662
|
+
exports["default"] = EncodingsApi;
|
|
34663
|
+
|
|
34664
|
+
|
|
34361
34665
|
/***/ }),
|
|
34362
34666
|
|
|
34363
34667
|
/***/ "./encoding/infrastructure/InfrastructureApi.ts":
|
|
@@ -70008,6 +70312,159 @@ var HeAacV2Signaling;
|
|
|
70008
70312
|
exports["default"] = HeAacV2Signaling;
|
|
70009
70313
|
|
|
70010
70314
|
|
|
70315
|
+
/***/ }),
|
|
70316
|
+
|
|
70317
|
+
/***/ "./models/HistoryEncoding.ts":
|
|
70318
|
+
/*!***********************************!*\
|
|
70319
|
+
!*** ./models/HistoryEncoding.ts ***!
|
|
70320
|
+
\***********************************/
|
|
70321
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70322
|
+
|
|
70323
|
+
"use strict";
|
|
70324
|
+
|
|
70325
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70326
|
+
exports.HistoryEncoding = void 0;
|
|
70327
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70328
|
+
var ConvertSccCaption_1 = __webpack_require__(/*! ./ConvertSccCaption */ "./models/ConvertSccCaption.ts");
|
|
70329
|
+
var Encoding_1 = __webpack_require__(/*! ./Encoding */ "./models/Encoding.ts");
|
|
70330
|
+
var HistoryMuxing_1 = __webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts");
|
|
70331
|
+
var HistoryStream_1 = __webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts");
|
|
70332
|
+
var Keyframe_1 = __webpack_require__(/*! ./Keyframe */ "./models/Keyframe.ts");
|
|
70333
|
+
var LiveEncoding_1 = __webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts");
|
|
70334
|
+
var SidecarFile_1 = __webpack_require__(/*! ./SidecarFile */ "./models/SidecarFile.ts");
|
|
70335
|
+
var StartEncodingRequest_1 = __webpack_require__(/*! ./StartEncodingRequest */ "./models/StartEncodingRequest.ts");
|
|
70336
|
+
var StartLiveEncodingRequest_1 = __webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/StartLiveEncodingRequest.ts");
|
|
70337
|
+
var StreamInput_1 = __webpack_require__(/*! ./StreamInput */ "./models/StreamInput.ts");
|
|
70338
|
+
var Task_1 = __webpack_require__(/*! ./Task */ "./models/Task.ts");
|
|
70339
|
+
var TransferRetry_1 = __webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts");
|
|
70340
|
+
/**
|
|
70341
|
+
* @export
|
|
70342
|
+
* @class HistoryEncoding
|
|
70343
|
+
*/
|
|
70344
|
+
var HistoryEncoding = /** @class */ (function () {
|
|
70345
|
+
function HistoryEncoding(obj) {
|
|
70346
|
+
if (!obj) {
|
|
70347
|
+
return;
|
|
70348
|
+
}
|
|
70349
|
+
this.encoding = (0, Mapper_1.map)(obj.encoding, Encoding_1.default);
|
|
70350
|
+
this.live = (0, Mapper_1.map)(obj.live, LiveEncoding_1.default);
|
|
70351
|
+
this.vodStartReqeust = (0, Mapper_1.map)(obj.vodStartReqeust, StartEncodingRequest_1.default);
|
|
70352
|
+
this.liveStartReqeust = (0, Mapper_1.map)(obj.liveStartReqeust, StartLiveEncodingRequest_1.default);
|
|
70353
|
+
this.status = (0, Mapper_1.map)(obj.status, Task_1.default);
|
|
70354
|
+
this.inputStreams = (0, Mapper_1.mapArray)(obj.inputStreams, StreamInput_1.default);
|
|
70355
|
+
this.streams = (0, Mapper_1.mapArray)(obj.streams, HistoryStream_1.default);
|
|
70356
|
+
this.muxings = (0, Mapper_1.mapArray)(obj.muxings, HistoryMuxing_1.default);
|
|
70357
|
+
this.keyFrames = (0, Mapper_1.mapArray)(obj.keyFrames, Keyframe_1.default);
|
|
70358
|
+
this.sidecarFiles = (0, Mapper_1.mapArray)(obj.sidecarFiles, SidecarFile_1.default);
|
|
70359
|
+
this.transferRetries = (0, Mapper_1.mapArray)(obj.transferRetries, TransferRetry_1.default);
|
|
70360
|
+
this.convertSccCaptions = (0, Mapper_1.mapArray)(obj.convertSccCaptions, ConvertSccCaption_1.default);
|
|
70361
|
+
}
|
|
70362
|
+
return HistoryEncoding;
|
|
70363
|
+
}());
|
|
70364
|
+
exports.HistoryEncoding = HistoryEncoding;
|
|
70365
|
+
exports["default"] = HistoryEncoding;
|
|
70366
|
+
|
|
70367
|
+
|
|
70368
|
+
/***/ }),
|
|
70369
|
+
|
|
70370
|
+
/***/ "./models/HistoryMuxing.ts":
|
|
70371
|
+
/*!*********************************!*\
|
|
70372
|
+
!*** ./models/HistoryMuxing.ts ***!
|
|
70373
|
+
\*********************************/
|
|
70374
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70375
|
+
|
|
70376
|
+
"use strict";
|
|
70377
|
+
|
|
70378
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70379
|
+
exports.HistoryMuxing = void 0;
|
|
70380
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70381
|
+
var BroadcastTsMuxingInformation_1 = __webpack_require__(/*! ./BroadcastTsMuxingInformation */ "./models/BroadcastTsMuxingInformation.ts");
|
|
70382
|
+
var Drm_1 = __webpack_require__(/*! ./Drm */ "./models/Drm.ts");
|
|
70383
|
+
var Fmp4MuxingInformation_1 = __webpack_require__(/*! ./Fmp4MuxingInformation */ "./models/Fmp4MuxingInformation.ts");
|
|
70384
|
+
var Mp3MuxingInformation_1 = __webpack_require__(/*! ./Mp3MuxingInformation */ "./models/Mp3MuxingInformation.ts");
|
|
70385
|
+
var Mp4MuxingInformation_1 = __webpack_require__(/*! ./Mp4MuxingInformation */ "./models/Mp4MuxingInformation.ts");
|
|
70386
|
+
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
70387
|
+
var PackedAudioMuxingInformation_1 = __webpack_require__(/*! ./PackedAudioMuxingInformation */ "./models/PackedAudioMuxingInformation.ts");
|
|
70388
|
+
var ProgressiveMovMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveMovMuxingInformation */ "./models/ProgressiveMovMuxingInformation.ts");
|
|
70389
|
+
var ProgressiveTsMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveTsMuxingInformation */ "./models/ProgressiveTsMuxingInformation.ts");
|
|
70390
|
+
var ProgressiveWebmMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveWebmMuxingInformation */ "./models/ProgressiveWebmMuxingInformation.ts");
|
|
70391
|
+
/**
|
|
70392
|
+
* @export
|
|
70393
|
+
* @class HistoryMuxing
|
|
70394
|
+
*/
|
|
70395
|
+
var HistoryMuxing = /** @class */ (function () {
|
|
70396
|
+
function HistoryMuxing(obj) {
|
|
70397
|
+
if (!obj) {
|
|
70398
|
+
return;
|
|
70399
|
+
}
|
|
70400
|
+
this.muxing = (0, Mapper_1.map)(obj.muxing, Muxing_1.default);
|
|
70401
|
+
this.drms = (0, Mapper_1.mapArray)(obj.drms, Drm_1.default);
|
|
70402
|
+
this.broadcastTsMuxingInformation = (0, Mapper_1.map)(obj.broadcastTsMuxingInformation, BroadcastTsMuxingInformation_1.default);
|
|
70403
|
+
this.fmp4MuxingInformation = (0, Mapper_1.map)(obj.fmp4MuxingInformation, Fmp4MuxingInformation_1.default);
|
|
70404
|
+
this.mp3MuxingInformation = (0, Mapper_1.map)(obj.mp3MuxingInformation, Mp3MuxingInformation_1.default);
|
|
70405
|
+
this.mp4MuxingInformation = (0, Mapper_1.map)(obj.mp4MuxingInformation, Mp4MuxingInformation_1.default);
|
|
70406
|
+
this.packedAudioMuxingInformation = (0, Mapper_1.map)(obj.packedAudioMuxingInformation, PackedAudioMuxingInformation_1.default);
|
|
70407
|
+
this.progressiveMovMuxingInformation = (0, Mapper_1.map)(obj.progressiveMovMuxingInformation, ProgressiveMovMuxingInformation_1.default);
|
|
70408
|
+
this.progressiveTsMuxingInformation = (0, Mapper_1.map)(obj.progressiveTsMuxingInformation, ProgressiveTsMuxingInformation_1.default);
|
|
70409
|
+
this.progressiveWebmMuxingInformation = (0, Mapper_1.map)(obj.progressiveWebmMuxingInformation, ProgressiveWebmMuxingInformation_1.default);
|
|
70410
|
+
}
|
|
70411
|
+
return HistoryMuxing;
|
|
70412
|
+
}());
|
|
70413
|
+
exports.HistoryMuxing = HistoryMuxing;
|
|
70414
|
+
exports["default"] = HistoryMuxing;
|
|
70415
|
+
|
|
70416
|
+
|
|
70417
|
+
/***/ }),
|
|
70418
|
+
|
|
70419
|
+
/***/ "./models/HistoryStream.ts":
|
|
70420
|
+
/*!*********************************!*\
|
|
70421
|
+
!*** ./models/HistoryStream.ts ***!
|
|
70422
|
+
\*********************************/
|
|
70423
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
70424
|
+
|
|
70425
|
+
"use strict";
|
|
70426
|
+
|
|
70427
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70428
|
+
exports.HistoryStream = void 0;
|
|
70429
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
70430
|
+
var Bif_1 = __webpack_require__(/*! ./Bif */ "./models/Bif.ts");
|
|
70431
|
+
var BurnInSubtitleDvbSub_1 = __webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInSubtitleDvbSub.ts");
|
|
70432
|
+
var BurnInSubtitleSrt_1 = __webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts");
|
|
70433
|
+
var DolbyVisionMetadata_1 = __webpack_require__(/*! ./DolbyVisionMetadata */ "./models/DolbyVisionMetadata.ts");
|
|
70434
|
+
var NexGuardFileMarker_1 = __webpack_require__(/*! ./NexGuardFileMarker */ "./models/NexGuardFileMarker.ts");
|
|
70435
|
+
var PsnrQualityMetric_1 = __webpack_require__(/*! ./PsnrQualityMetric */ "./models/PsnrQualityMetric.ts");
|
|
70436
|
+
var SccCaption_1 = __webpack_require__(/*! ./SccCaption */ "./models/SccCaption.ts");
|
|
70437
|
+
var Sprite_1 = __webpack_require__(/*! ./Sprite */ "./models/Sprite.ts");
|
|
70438
|
+
var Stream_1 = __webpack_require__(/*! ./Stream */ "./models/Stream.ts");
|
|
70439
|
+
var StreamFilter_1 = __webpack_require__(/*! ./StreamFilter */ "./models/StreamFilter.ts");
|
|
70440
|
+
var Thumbnail_1 = __webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts");
|
|
70441
|
+
/**
|
|
70442
|
+
* @export
|
|
70443
|
+
* @class HistoryStream
|
|
70444
|
+
*/
|
|
70445
|
+
var HistoryStream = /** @class */ (function () {
|
|
70446
|
+
function HistoryStream(obj) {
|
|
70447
|
+
if (!obj) {
|
|
70448
|
+
return;
|
|
70449
|
+
}
|
|
70450
|
+
this.stream = (0, Mapper_1.map)(obj.stream, Stream_1.default);
|
|
70451
|
+
this.filters = (0, Mapper_1.mapArray)(obj.filters, StreamFilter_1.default);
|
|
70452
|
+
this.burnInSubtitleDvbSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleDvbSubs, BurnInSubtitleDvbSub_1.default);
|
|
70453
|
+
this.burnInSubtitleSrtSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleSrtSubs, BurnInSubtitleSrt_1.default);
|
|
70454
|
+
this.nexGuardFileMarker = (0, Mapper_1.map)(obj.nexGuardFileMarker, NexGuardFileMarker_1.default);
|
|
70455
|
+
this.sccCaptions = (0, Mapper_1.mapArray)(obj.sccCaptions, SccCaption_1.default);
|
|
70456
|
+
this.bifs = (0, Mapper_1.mapArray)(obj.bifs, Bif_1.default);
|
|
70457
|
+
this.dolbyVisionMetadata = (0, Mapper_1.mapArray)(obj.dolbyVisionMetadata, DolbyVisionMetadata_1.default);
|
|
70458
|
+
this.thumbnails = (0, Mapper_1.mapArray)(obj.thumbnails, Thumbnail_1.default);
|
|
70459
|
+
this.sprites = (0, Mapper_1.mapArray)(obj.sprites, Sprite_1.default);
|
|
70460
|
+
this.psnrMetrics = (0, Mapper_1.mapArray)(obj.psnrMetrics, PsnrQualityMetric_1.default);
|
|
70461
|
+
}
|
|
70462
|
+
return HistoryStream;
|
|
70463
|
+
}());
|
|
70464
|
+
exports.HistoryStream = HistoryStream;
|
|
70465
|
+
exports["default"] = HistoryStream;
|
|
70466
|
+
|
|
70467
|
+
|
|
70011
70468
|
/***/ }),
|
|
70012
70469
|
|
|
70013
70470
|
/***/ "./models/HlsManifest.ts":
|
|
@@ -72138,6 +72595,7 @@ exports["default"] = LiveEncodingStatus;
|
|
|
72138
72595
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
72139
72596
|
exports.LiveHlsManifest = void 0;
|
|
72140
72597
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
72598
|
+
var ProgramDateTimeSettings_1 = __webpack_require__(/*! ./ProgramDateTimeSettings */ "./models/ProgramDateTimeSettings.ts");
|
|
72141
72599
|
/**
|
|
72142
72600
|
* @export
|
|
72143
72601
|
* @class LiveHlsManifest
|
|
@@ -72151,6 +72609,7 @@ var LiveHlsManifest = /** @class */ (function () {
|
|
|
72151
72609
|
this.timeshift = (0, Mapper_1.map)(obj.timeshift);
|
|
72152
72610
|
this.liveEdgeOffset = (0, Mapper_1.map)(obj.liveEdgeOffset);
|
|
72153
72611
|
this.insertProgramDateTime = (0, Mapper_1.map)(obj.insertProgramDateTime);
|
|
72612
|
+
this.programDateTimeSettings = (0, Mapper_1.map)(obj.programDateTimeSettings, ProgramDateTimeSettings_1.default);
|
|
72154
72613
|
}
|
|
72155
72614
|
return LiveHlsManifest;
|
|
72156
72615
|
}());
|
|
@@ -75778,6 +76237,61 @@ var ProfileH265;
|
|
|
75778
76237
|
exports["default"] = ProfileH265;
|
|
75779
76238
|
|
|
75780
76239
|
|
|
76240
|
+
/***/ }),
|
|
76241
|
+
|
|
76242
|
+
/***/ "./models/ProgramDateTimeSettings.ts":
|
|
76243
|
+
/*!*******************************************!*\
|
|
76244
|
+
!*** ./models/ProgramDateTimeSettings.ts ***!
|
|
76245
|
+
\*******************************************/
|
|
76246
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
76247
|
+
|
|
76248
|
+
"use strict";
|
|
76249
|
+
|
|
76250
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
76251
|
+
exports.ProgramDateTimeSettings = void 0;
|
|
76252
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
76253
|
+
/**
|
|
76254
|
+
* @export
|
|
76255
|
+
* @class ProgramDateTimeSettings
|
|
76256
|
+
*/
|
|
76257
|
+
var ProgramDateTimeSettings = /** @class */ (function () {
|
|
76258
|
+
function ProgramDateTimeSettings(obj) {
|
|
76259
|
+
if (!obj) {
|
|
76260
|
+
return;
|
|
76261
|
+
}
|
|
76262
|
+
this.programDateTimeSource = (0, Mapper_1.map)(obj.programDateTimeSource);
|
|
76263
|
+
}
|
|
76264
|
+
return ProgramDateTimeSettings;
|
|
76265
|
+
}());
|
|
76266
|
+
exports.ProgramDateTimeSettings = ProgramDateTimeSettings;
|
|
76267
|
+
exports["default"] = ProgramDateTimeSettings;
|
|
76268
|
+
|
|
76269
|
+
|
|
76270
|
+
/***/ }),
|
|
76271
|
+
|
|
76272
|
+
/***/ "./models/ProgramDateTimeSource.ts":
|
|
76273
|
+
/*!*****************************************!*\
|
|
76274
|
+
!*** ./models/ProgramDateTimeSource.ts ***!
|
|
76275
|
+
\*****************************************/
|
|
76276
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
76277
|
+
|
|
76278
|
+
"use strict";
|
|
76279
|
+
|
|
76280
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
76281
|
+
exports.ProgramDateTimeSource = void 0;
|
|
76282
|
+
/**
|
|
76283
|
+
* Source for the EXT-X-PROGRAM-DATETIME tag
|
|
76284
|
+
* @export
|
|
76285
|
+
* @enum {string}
|
|
76286
|
+
*/
|
|
76287
|
+
var ProgramDateTimeSource;
|
|
76288
|
+
(function (ProgramDateTimeSource) {
|
|
76289
|
+
ProgramDateTimeSource["SYSTEM_CLOCK"] = "SYSTEM_CLOCK";
|
|
76290
|
+
ProgramDateTimeSource["EMBEDDED"] = "EMBEDDED";
|
|
76291
|
+
})(ProgramDateTimeSource = exports.ProgramDateTimeSource || (exports.ProgramDateTimeSource = {}));
|
|
76292
|
+
exports["default"] = ProgramDateTimeSource;
|
|
76293
|
+
|
|
76294
|
+
|
|
75781
76295
|
/***/ }),
|
|
75782
76296
|
|
|
75783
76297
|
/***/ "./models/ProgressiveMovMuxing.ts":
|
|
@@ -81227,6 +81741,70 @@ var StreamSelectionMode;
|
|
|
81227
81741
|
exports["default"] = StreamSelectionMode;
|
|
81228
81742
|
|
|
81229
81743
|
|
|
81744
|
+
/***/ }),
|
|
81745
|
+
|
|
81746
|
+
/***/ "./models/StreamsAdConfigAd.ts":
|
|
81747
|
+
/*!*************************************!*\
|
|
81748
|
+
!*** ./models/StreamsAdConfigAd.ts ***!
|
|
81749
|
+
\*************************************/
|
|
81750
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
81751
|
+
|
|
81752
|
+
"use strict";
|
|
81753
|
+
|
|
81754
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
81755
|
+
exports.StreamsAdConfigAd = void 0;
|
|
81756
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
81757
|
+
/**
|
|
81758
|
+
* @export
|
|
81759
|
+
* @class StreamsAdConfigAd
|
|
81760
|
+
*/
|
|
81761
|
+
var StreamsAdConfigAd = /** @class */ (function () {
|
|
81762
|
+
function StreamsAdConfigAd(obj) {
|
|
81763
|
+
if (!obj) {
|
|
81764
|
+
return;
|
|
81765
|
+
}
|
|
81766
|
+
this.position = (0, Mapper_1.map)(obj.position);
|
|
81767
|
+
this.url = (0, Mapper_1.map)(obj.url);
|
|
81768
|
+
this.type = (0, Mapper_1.map)(obj.type);
|
|
81769
|
+
}
|
|
81770
|
+
return StreamsAdConfigAd;
|
|
81771
|
+
}());
|
|
81772
|
+
exports.StreamsAdConfigAd = StreamsAdConfigAd;
|
|
81773
|
+
exports["default"] = StreamsAdConfigAd;
|
|
81774
|
+
|
|
81775
|
+
|
|
81776
|
+
/***/ }),
|
|
81777
|
+
|
|
81778
|
+
/***/ "./models/StreamsAdConfigResponse.ts":
|
|
81779
|
+
/*!*******************************************!*\
|
|
81780
|
+
!*** ./models/StreamsAdConfigResponse.ts ***!
|
|
81781
|
+
\*******************************************/
|
|
81782
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
81783
|
+
|
|
81784
|
+
"use strict";
|
|
81785
|
+
|
|
81786
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
81787
|
+
exports.StreamsAdConfigResponse = void 0;
|
|
81788
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
81789
|
+
var StreamsAdConfigAd_1 = __webpack_require__(/*! ./StreamsAdConfigAd */ "./models/StreamsAdConfigAd.ts");
|
|
81790
|
+
/**
|
|
81791
|
+
* @export
|
|
81792
|
+
* @class StreamsAdConfigResponse
|
|
81793
|
+
*/
|
|
81794
|
+
var StreamsAdConfigResponse = /** @class */ (function () {
|
|
81795
|
+
function StreamsAdConfigResponse(obj) {
|
|
81796
|
+
if (!obj) {
|
|
81797
|
+
return;
|
|
81798
|
+
}
|
|
81799
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
81800
|
+
this.ads = (0, Mapper_1.mapArray)(obj.ads, StreamsAdConfigAd_1.default);
|
|
81801
|
+
}
|
|
81802
|
+
return StreamsAdConfigResponse;
|
|
81803
|
+
}());
|
|
81804
|
+
exports.StreamsAdConfigResponse = StreamsAdConfigResponse;
|
|
81805
|
+
exports["default"] = StreamsAdConfigResponse;
|
|
81806
|
+
|
|
81807
|
+
|
|
81230
81808
|
/***/ }),
|
|
81231
81809
|
|
|
81232
81810
|
/***/ "./models/StreamsConfigResponse.ts":
|
|
@@ -81286,6 +81864,7 @@ var StreamsLiveCreateRequest = /** @class */ (function () {
|
|
|
81286
81864
|
this.title = (0, Mapper_1.map)(obj.title);
|
|
81287
81865
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
81288
81866
|
this.configId = (0, Mapper_1.map)(obj.configId);
|
|
81867
|
+
this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
|
|
81289
81868
|
}
|
|
81290
81869
|
return StreamsLiveCreateRequest;
|
|
81291
81870
|
}());
|
|
@@ -81332,6 +81911,7 @@ exports["default"] = StreamsLiveLifeCycle;
|
|
|
81332
81911
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
81333
81912
|
exports.StreamsLiveResponse = void 0;
|
|
81334
81913
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
81914
|
+
var StreamsAdConfigResponse_1 = __webpack_require__(/*! ./StreamsAdConfigResponse */ "./models/StreamsAdConfigResponse.ts");
|
|
81335
81915
|
var StreamsConfigResponse_1 = __webpack_require__(/*! ./StreamsConfigResponse */ "./models/StreamsConfigResponse.ts");
|
|
81336
81916
|
/**
|
|
81337
81917
|
* @export
|
|
@@ -81350,6 +81930,7 @@ var StreamsLiveResponse = /** @class */ (function () {
|
|
|
81350
81930
|
this.lifeCycle = (0, Mapper_1.map)(obj.lifeCycle);
|
|
81351
81931
|
this.config = (0, Mapper_1.map)(obj.config, StreamsConfigResponse_1.default);
|
|
81352
81932
|
this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
|
|
81933
|
+
this.adConfig = (0, Mapper_1.map)(obj.adConfig, StreamsAdConfigResponse_1.default);
|
|
81353
81934
|
}
|
|
81354
81935
|
return StreamsLiveResponse;
|
|
81355
81936
|
}());
|
|
@@ -81383,6 +81964,7 @@ var StreamsLiveUpdateRequest = /** @class */ (function () {
|
|
|
81383
81964
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
81384
81965
|
this.configId = (0, Mapper_1.map)(obj.configId);
|
|
81385
81966
|
this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
|
|
81967
|
+
this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
|
|
81386
81968
|
}
|
|
81387
81969
|
return StreamsLiveUpdateRequest;
|
|
81388
81970
|
}());
|
|
@@ -81416,6 +81998,7 @@ var StreamsVideoCreateRequest = /** @class */ (function () {
|
|
|
81416
81998
|
this.title = (0, Mapper_1.map)(obj.title);
|
|
81417
81999
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
81418
82000
|
this.configId = (0, Mapper_1.map)(obj.configId);
|
|
82001
|
+
this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
|
|
81419
82002
|
}
|
|
81420
82003
|
return StreamsVideoCreateRequest;
|
|
81421
82004
|
}());
|
|
@@ -81517,6 +82100,7 @@ exports["default"] = StreamsVideoQuality;
|
|
|
81517
82100
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
81518
82101
|
exports.StreamsVideoResponse = void 0;
|
|
81519
82102
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
82103
|
+
var StreamsAdConfigResponse_1 = __webpack_require__(/*! ./StreamsAdConfigResponse */ "./models/StreamsAdConfigResponse.ts");
|
|
81520
82104
|
var StreamsConfigResponse_1 = __webpack_require__(/*! ./StreamsConfigResponse */ "./models/StreamsConfigResponse.ts");
|
|
81521
82105
|
var StreamsVideoEncodingTask_1 = __webpack_require__(/*! ./StreamsVideoEncodingTask */ "./models/StreamsVideoEncodingTask.ts");
|
|
81522
82106
|
/**
|
|
@@ -81537,6 +82121,7 @@ var StreamsVideoResponse = /** @class */ (function () {
|
|
|
81537
82121
|
this.config = (0, Mapper_1.map)(obj.config, StreamsConfigResponse_1.default);
|
|
81538
82122
|
this.encodingTasks = (0, Mapper_1.mapArray)(obj.encodingTasks, StreamsVideoEncodingTask_1.default);
|
|
81539
82123
|
this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
|
|
82124
|
+
this.adConfig = (0, Mapper_1.map)(obj.adConfig, StreamsAdConfigResponse_1.default);
|
|
81540
82125
|
}
|
|
81541
82126
|
return StreamsVideoResponse;
|
|
81542
82127
|
}());
|
|
@@ -81595,6 +82180,7 @@ var StreamsVideoUpdateRequest = /** @class */ (function () {
|
|
|
81595
82180
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
81596
82181
|
this.configId = (0, Mapper_1.map)(obj.configId);
|
|
81597
82182
|
this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
|
|
82183
|
+
this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
|
|
81598
82184
|
}
|
|
81599
82185
|
return StreamsVideoUpdateRequest;
|
|
81600
82186
|
}());
|
|
@@ -85236,6 +85822,9 @@ __exportStar(__webpack_require__(/*! ./HeAacV1AudioConfiguration */ "./models/He
|
|
|
85236
85822
|
__exportStar(__webpack_require__(/*! ./HeAacV1Signaling */ "./models/HeAacV1Signaling.ts"), exports);
|
|
85237
85823
|
__exportStar(__webpack_require__(/*! ./HeAacV2AudioConfiguration */ "./models/HeAacV2AudioConfiguration.ts"), exports);
|
|
85238
85824
|
__exportStar(__webpack_require__(/*! ./HeAacV2Signaling */ "./models/HeAacV2Signaling.ts"), exports);
|
|
85825
|
+
__exportStar(__webpack_require__(/*! ./HistoryEncoding */ "./models/HistoryEncoding.ts"), exports);
|
|
85826
|
+
__exportStar(__webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts"), exports);
|
|
85827
|
+
__exportStar(__webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts"), exports);
|
|
85239
85828
|
__exportStar(__webpack_require__(/*! ./HlsManifest */ "./models/HlsManifest.ts"), exports);
|
|
85240
85829
|
__exportStar(__webpack_require__(/*! ./HlsManifestDefault */ "./models/HlsManifestDefault.ts"), exports);
|
|
85241
85830
|
__exportStar(__webpack_require__(/*! ./HlsManifestDefaultVersion */ "./models/HlsManifestDefaultVersion.ts"), exports);
|
|
@@ -85389,6 +85978,8 @@ __exportStar(__webpack_require__(/*! ./PrimeTimeDrm */ "./models/PrimeTimeDrm.ts
|
|
|
85389
85978
|
__exportStar(__webpack_require__(/*! ./ProfileH262 */ "./models/ProfileH262.ts"), exports);
|
|
85390
85979
|
__exportStar(__webpack_require__(/*! ./ProfileH264 */ "./models/ProfileH264.ts"), exports);
|
|
85391
85980
|
__exportStar(__webpack_require__(/*! ./ProfileH265 */ "./models/ProfileH265.ts"), exports);
|
|
85981
|
+
__exportStar(__webpack_require__(/*! ./ProgramDateTimeSettings */ "./models/ProgramDateTimeSettings.ts"), exports);
|
|
85982
|
+
__exportStar(__webpack_require__(/*! ./ProgramDateTimeSource */ "./models/ProgramDateTimeSource.ts"), exports);
|
|
85392
85983
|
__exportStar(__webpack_require__(/*! ./ProgressiveMovMuxing */ "./models/ProgressiveMovMuxing.ts"), exports);
|
|
85393
85984
|
__exportStar(__webpack_require__(/*! ./ProgressiveMovMuxingInformation */ "./models/ProgressiveMovMuxingInformation.ts"), exports);
|
|
85394
85985
|
__exportStar(__webpack_require__(/*! ./ProgressiveMuxingInformation */ "./models/ProgressiveMuxingInformation.ts"), exports);
|
|
@@ -85525,6 +86116,8 @@ __exportStar(__webpack_require__(/*! ./StreamMode */ "./models/StreamMode.ts"),
|
|
|
85525
86116
|
__exportStar(__webpack_require__(/*! ./StreamPerTitleFixedResolutionAndBitrateSettings */ "./models/StreamPerTitleFixedResolutionAndBitrateSettings.ts"), exports);
|
|
85526
86117
|
__exportStar(__webpack_require__(/*! ./StreamPerTitleSettings */ "./models/StreamPerTitleSettings.ts"), exports);
|
|
85527
86118
|
__exportStar(__webpack_require__(/*! ./StreamSelectionMode */ "./models/StreamSelectionMode.ts"), exports);
|
|
86119
|
+
__exportStar(__webpack_require__(/*! ./StreamsAdConfigAd */ "./models/StreamsAdConfigAd.ts"), exports);
|
|
86120
|
+
__exportStar(__webpack_require__(/*! ./StreamsAdConfigResponse */ "./models/StreamsAdConfigResponse.ts"), exports);
|
|
85528
86121
|
__exportStar(__webpack_require__(/*! ./StreamsConfigResponse */ "./models/StreamsConfigResponse.ts"), exports);
|
|
85529
86122
|
__exportStar(__webpack_require__(/*! ./StreamsLiveCreateRequest */ "./models/StreamsLiveCreateRequest.ts"), exports);
|
|
85530
86123
|
__exportStar(__webpack_require__(/*! ./StreamsLiveLifeCycle */ "./models/StreamsLiveLifeCycle.ts"), exports);
|
|
@@ -89278,7 +89871,6 @@ var Mapper_1 = __webpack_require__(/*! ../../common/Mapper */ "./common/Mapper.t
|
|
|
89278
89871
|
var StopApi_1 = __webpack_require__(/*! ./stop/StopApi */ "./streams/live/stop/StopApi.ts");
|
|
89279
89872
|
var StartApi_1 = __webpack_require__(/*! ./start/StartApi */ "./streams/live/start/StartApi.ts");
|
|
89280
89873
|
var StreamsLiveResponse_1 = __webpack_require__(/*! ../../models/StreamsLiveResponse */ "./models/StreamsLiveResponse.ts");
|
|
89281
|
-
var StreamsLiveUpdateRequest_1 = __webpack_require__(/*! ../../models/StreamsLiveUpdateRequest */ "./models/StreamsLiveUpdateRequest.ts");
|
|
89282
89874
|
var PaginationResponse_1 = __webpack_require__(/*! ../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
89283
89875
|
var StreamsLiveResponseListQueryParams_1 = __webpack_require__(/*! ./StreamsLiveResponseListQueryParams */ "./streams/live/StreamsLiveResponseListQueryParams.ts");
|
|
89284
89876
|
/**
|
|
@@ -89350,7 +89942,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
89350
89942
|
stream_id: streamId
|
|
89351
89943
|
};
|
|
89352
89944
|
return this.restClient.patch('/streams/live/{stream_id}', pathParamMap, streamsLiveUpdateRequest).then(function (response) {
|
|
89353
|
-
return (0, Mapper_1.map)(response,
|
|
89945
|
+
return (0, Mapper_1.map)(response, StreamsLiveResponse_1.default);
|
|
89354
89946
|
});
|
|
89355
89947
|
};
|
|
89356
89948
|
/**
|
|
@@ -89365,7 +89957,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
89365
89957
|
stream_id: streamId
|
|
89366
89958
|
};
|
|
89367
89959
|
return this.restClient.put('/streams/live/{stream_id}', pathParamMap, streamsLiveUpdateRequest).then(function (response) {
|
|
89368
|
-
return (0, Mapper_1.map)(response,
|
|
89960
|
+
return (0, Mapper_1.map)(response, StreamsLiveResponse_1.default);
|
|
89369
89961
|
});
|
|
89370
89962
|
};
|
|
89371
89963
|
return LiveApi;
|
|
@@ -89793,11 +90385,11 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (nam
|
|
|
89793
90385
|
"use strict";
|
|
89794
90386
|
__webpack_require__.r(__webpack_exports__);
|
|
89795
90387
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
89796
|
-
/* harmony export */
|
|
89797
|
-
/* harmony export */
|
|
89798
|
-
/* harmony export */
|
|
89799
|
-
/* harmony export */
|
|
89800
|
-
/* harmony export */
|
|
90388
|
+
/* harmony export */ DOMException: () => (/* binding */ DOMException),
|
|
90389
|
+
/* harmony export */ Headers: () => (/* binding */ Headers),
|
|
90390
|
+
/* harmony export */ Request: () => (/* binding */ Request),
|
|
90391
|
+
/* harmony export */ Response: () => (/* binding */ Response),
|
|
90392
|
+
/* harmony export */ fetch: () => (/* binding */ fetch)
|
|
89801
90393
|
/* harmony export */ });
|
|
89802
90394
|
var global =
|
|
89803
90395
|
(typeof globalThis !== 'undefined' && globalThis) ||
|