@bitmovin/api-sdk 1.198.0 → 1.199.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 +2 -462
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/EncodingApi.d.ts +0 -2
- package/dist/encoding/EncodingApi.js +0 -2
- package/dist/models/Keyframe.d.ts +0 -6
- package/dist/models/Keyframe.js +0 -1
- package/dist/models/ResetLiveManifestTimeShift.d.ts +6 -0
- package/dist/models/ResetLiveManifestTimeShift.js +1 -0
- package/dist/models/index.d.ts +0 -3
- package/dist/models/index.js +0 -3
- package/package.json +1 -1
- package/dist/encoding/history/HistoryApi.d.ts +0 -13
- package/dist/encoding/history/HistoryApi.js +0 -35
- package/dist/encoding/history/encodings/EncodingListQueryParams.d.ts +0 -217
- package/dist/encoding/history/encodings/EncodingListQueryParams.js +0 -165
- package/dist/encoding/history/encodings/EncodingsApi.d.ts +0 -29
- package/dist/encoding/history/encodings/EncodingsApi.js +0 -69
- package/dist/models/HistoryEncoding.d.ts +0 -85
- package/dist/models/HistoryEncoding.js +0 -42
- package/dist/models/HistoryMuxing.d.ts +0 -69
- package/dist/models/HistoryMuxing.js +0 -38
- package/dist/models/HistoryStream.d.ts +0 -85
- package/dist/models/HistoryStream.js +0 -40
package/README.md
CHANGED
|
@@ -6091,7 +6091,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6091
6091
|
var headers = {
|
|
6092
6092
|
'X-Api-Key': apiKey,
|
|
6093
6093
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6094
|
-
'X-Api-Client-Version': '1.
|
|
6094
|
+
'X-Api-Client-Version': '1.199.0',
|
|
6095
6095
|
'Content-Type': 'application/json'
|
|
6096
6096
|
};
|
|
6097
6097
|
if (tenantOrgId) {
|
|
@@ -6280,7 +6280,6 @@ var InfrastructureApi_1 = __webpack_require__(/*! ./infrastructure/Infrastructur
|
|
|
6280
6280
|
var StatisticsApi_1 = __webpack_require__(/*! ./statistics/StatisticsApi */ "./encoding/statistics/StatisticsApi.ts");
|
|
6281
6281
|
var WatchFoldersApi_1 = __webpack_require__(/*! ./watchFolders/WatchFoldersApi */ "./encoding/watchFolders/WatchFoldersApi.ts");
|
|
6282
6282
|
var SimpleApi_1 = __webpack_require__(/*! ./simple/SimpleApi */ "./encoding/simple/SimpleApi.ts");
|
|
6283
|
-
var HistoryApi_1 = __webpack_require__(/*! ./history/HistoryApi */ "./encoding/history/HistoryApi.ts");
|
|
6284
6283
|
var ErrorDefinitionsApi_1 = __webpack_require__(/*! ./errorDefinitions/ErrorDefinitionsApi */ "./encoding/errorDefinitions/ErrorDefinitionsApi.ts");
|
|
6285
6284
|
/**
|
|
6286
6285
|
* EncodingApi - object-oriented interface
|
|
@@ -6303,7 +6302,6 @@ var EncodingApi = /** @class */ (function (_super) {
|
|
|
6303
6302
|
_this.statistics = new StatisticsApi_1.default(configuration);
|
|
6304
6303
|
_this.watchFolders = new WatchFoldersApi_1.default(configuration);
|
|
6305
6304
|
_this.simple = new SimpleApi_1.default(configuration);
|
|
6306
|
-
_this.history = new HistoryApi_1.default(configuration);
|
|
6307
6305
|
_this.errorDefinitions = new ErrorDefinitionsApi_1.default(configuration);
|
|
6308
6306
|
return _this;
|
|
6309
6307
|
}
|
|
@@ -35136,308 +35134,6 @@ var CustomdataApi = /** @class */ (function (_super) {
|
|
|
35136
35134
|
exports["default"] = CustomdataApi;
|
|
35137
35135
|
|
|
35138
35136
|
|
|
35139
|
-
/***/ }),
|
|
35140
|
-
|
|
35141
|
-
/***/ "./encoding/history/HistoryApi.ts":
|
|
35142
|
-
/*!****************************************!*\
|
|
35143
|
-
!*** ./encoding/history/HistoryApi.ts ***!
|
|
35144
|
-
\****************************************/
|
|
35145
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
35146
|
-
|
|
35147
|
-
"use strict";
|
|
35148
|
-
|
|
35149
|
-
var __extends = (this && this.__extends) || (function () {
|
|
35150
|
-
var extendStatics = function (d, b) {
|
|
35151
|
-
extendStatics = Object.setPrototypeOf ||
|
|
35152
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
35153
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
35154
|
-
return extendStatics(d, b);
|
|
35155
|
-
};
|
|
35156
|
-
return function (d, b) {
|
|
35157
|
-
if (typeof b !== "function" && b !== null)
|
|
35158
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
35159
|
-
extendStatics(d, b);
|
|
35160
|
-
function __() { this.constructor = d; }
|
|
35161
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35162
|
-
};
|
|
35163
|
-
})();
|
|
35164
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35165
|
-
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
35166
|
-
var EncodingsApi_1 = __webpack_require__(/*! ./encodings/EncodingsApi */ "./encoding/history/encodings/EncodingsApi.ts");
|
|
35167
|
-
/**
|
|
35168
|
-
* HistoryApi - object-oriented interface
|
|
35169
|
-
* @export
|
|
35170
|
-
* @class HistoryApi
|
|
35171
|
-
* @extends {BaseAPI}
|
|
35172
|
-
*/
|
|
35173
|
-
var HistoryApi = /** @class */ (function (_super) {
|
|
35174
|
-
__extends(HistoryApi, _super);
|
|
35175
|
-
function HistoryApi(configuration) {
|
|
35176
|
-
var _this = _super.call(this, configuration) || this;
|
|
35177
|
-
_this.encodings = new EncodingsApi_1.default(configuration);
|
|
35178
|
-
return _this;
|
|
35179
|
-
}
|
|
35180
|
-
return HistoryApi;
|
|
35181
|
-
}(BaseAPI_1.BaseAPI));
|
|
35182
|
-
exports["default"] = HistoryApi;
|
|
35183
|
-
|
|
35184
|
-
|
|
35185
|
-
/***/ }),
|
|
35186
|
-
|
|
35187
|
-
/***/ "./encoding/history/encodings/EncodingListQueryParams.ts":
|
|
35188
|
-
/*!***************************************************************!*\
|
|
35189
|
-
!*** ./encoding/history/encodings/EncodingListQueryParams.ts ***!
|
|
35190
|
-
\***************************************************************/
|
|
35191
|
-
/***/ ((__unused_webpack_module, exports) => {
|
|
35192
|
-
|
|
35193
|
-
"use strict";
|
|
35194
|
-
|
|
35195
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35196
|
-
exports.EncodingListQueryParamsBuilder = void 0;
|
|
35197
|
-
var EncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
35198
|
-
function EncodingListQueryParamsBuilder() {
|
|
35199
|
-
this.internalParams = {};
|
|
35200
|
-
}
|
|
35201
|
-
/**
|
|
35202
|
-
*
|
|
35203
|
-
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
35204
|
-
*/
|
|
35205
|
-
EncodingListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
35206
|
-
this.internalParams.offset = offset;
|
|
35207
|
-
return this;
|
|
35208
|
-
};
|
|
35209
|
-
/**
|
|
35210
|
-
*
|
|
35211
|
-
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
35212
|
-
*/
|
|
35213
|
-
EncodingListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
35214
|
-
this.internalParams.limit = limit;
|
|
35215
|
-
return this;
|
|
35216
|
-
};
|
|
35217
|
-
/**
|
|
35218
|
-
*
|
|
35219
|
-
* @param includeTotalCount A boolean indicating whether the total count should be returned as well. Default is false
|
|
35220
|
-
*/
|
|
35221
|
-
EncodingListQueryParamsBuilder.prototype.includeTotalCount = function (includeTotalCount) {
|
|
35222
|
-
this.internalParams.includeTotalCount = includeTotalCount;
|
|
35223
|
-
return this;
|
|
35224
|
-
};
|
|
35225
|
-
/**
|
|
35226
|
-
*
|
|
35227
|
-
* @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`
|
|
35228
|
-
*/
|
|
35229
|
-
EncodingListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
35230
|
-
this.internalParams.sort = sort;
|
|
35231
|
-
return this;
|
|
35232
|
-
};
|
|
35233
|
-
/**
|
|
35234
|
-
*
|
|
35235
|
-
* @param type Filter encodings to only show the ones with the type specified.
|
|
35236
|
-
*/
|
|
35237
|
-
EncodingListQueryParamsBuilder.prototype.type = function (type) {
|
|
35238
|
-
this.internalParams.type = type;
|
|
35239
|
-
return this;
|
|
35240
|
-
};
|
|
35241
|
-
/**
|
|
35242
|
-
*
|
|
35243
|
-
* @param status Filter encodings to only show the ones with the status specified.
|
|
35244
|
-
*/
|
|
35245
|
-
EncodingListQueryParamsBuilder.prototype.status = function (status) {
|
|
35246
|
-
this.internalParams.status = status;
|
|
35247
|
-
return this;
|
|
35248
|
-
};
|
|
35249
|
-
/**
|
|
35250
|
-
*
|
|
35251
|
-
* @param cloudRegion Filter encodings to only show the ones with the cloudRegion specified.
|
|
35252
|
-
*/
|
|
35253
|
-
EncodingListQueryParamsBuilder.prototype.cloudRegion = function (cloudRegion) {
|
|
35254
|
-
this.internalParams.cloudRegion = cloudRegion;
|
|
35255
|
-
return this;
|
|
35256
|
-
};
|
|
35257
|
-
/**
|
|
35258
|
-
*
|
|
35259
|
-
* @param selectedCloudRegion Filter encodings to only show the ones with the selectedCloudRegion specified which was selected when cloudregion:AUTO was set
|
|
35260
|
-
*/
|
|
35261
|
-
EncodingListQueryParamsBuilder.prototype.selectedCloudRegion = function (selectedCloudRegion) {
|
|
35262
|
-
this.internalParams.selectedCloudRegion = selectedCloudRegion;
|
|
35263
|
-
return this;
|
|
35264
|
-
};
|
|
35265
|
-
/**
|
|
35266
|
-
*
|
|
35267
|
-
* @param encoderVersion Filter encodings to only show the ones with the encoderVersion specified.
|
|
35268
|
-
*/
|
|
35269
|
-
EncodingListQueryParamsBuilder.prototype.encoderVersion = function (encoderVersion) {
|
|
35270
|
-
this.internalParams.encoderVersion = encoderVersion;
|
|
35271
|
-
return this;
|
|
35272
|
-
};
|
|
35273
|
-
/**
|
|
35274
|
-
*
|
|
35275
|
-
* @param selectedEncoderVersion Filter encodings to only show the ones with the encoderVersion specified that was actually used for the encoding.
|
|
35276
|
-
*/
|
|
35277
|
-
EncodingListQueryParamsBuilder.prototype.selectedEncoderVersion = function (selectedEncoderVersion) {
|
|
35278
|
-
this.internalParams.selectedEncoderVersion = selectedEncoderVersion;
|
|
35279
|
-
return this;
|
|
35280
|
-
};
|
|
35281
|
-
/**
|
|
35282
|
-
*
|
|
35283
|
-
* @param selectedEncodingMode Filter encodings to only show the ones with the encodingMode specified that was actually used for the encoding.
|
|
35284
|
-
*/
|
|
35285
|
-
EncodingListQueryParamsBuilder.prototype.selectedEncodingMode = function (selectedEncodingMode) {
|
|
35286
|
-
this.internalParams.selectedEncodingMode = selectedEncodingMode;
|
|
35287
|
-
return this;
|
|
35288
|
-
};
|
|
35289
|
-
/**
|
|
35290
|
-
*
|
|
35291
|
-
* @param name Filter encodings to only show the ones with this exact name.
|
|
35292
|
-
*/
|
|
35293
|
-
EncodingListQueryParamsBuilder.prototype.name = function (name) {
|
|
35294
|
-
this.internalParams.name = name;
|
|
35295
|
-
return this;
|
|
35296
|
-
};
|
|
35297
|
-
/**
|
|
35298
|
-
*
|
|
35299
|
-
* @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.
|
|
35300
|
-
*/
|
|
35301
|
-
EncodingListQueryParamsBuilder.prototype.search = function (search) {
|
|
35302
|
-
this.internalParams.search = search;
|
|
35303
|
-
return this;
|
|
35304
|
-
};
|
|
35305
|
-
/**
|
|
35306
|
-
*
|
|
35307
|
-
* @param createdAtNewerThan Filter encodings to only return those created after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
35308
|
-
*/
|
|
35309
|
-
EncodingListQueryParamsBuilder.prototype.createdAtNewerThan = function (createdAtNewerThan) {
|
|
35310
|
-
this.internalParams.createdAtNewerThan = createdAtNewerThan;
|
|
35311
|
-
return this;
|
|
35312
|
-
};
|
|
35313
|
-
/**
|
|
35314
|
-
*
|
|
35315
|
-
* @param createdAtOlderThan Filter encodings to only return those created before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
35316
|
-
*/
|
|
35317
|
-
EncodingListQueryParamsBuilder.prototype.createdAtOlderThan = function (createdAtOlderThan) {
|
|
35318
|
-
this.internalParams.createdAtOlderThan = createdAtOlderThan;
|
|
35319
|
-
return this;
|
|
35320
|
-
};
|
|
35321
|
-
/**
|
|
35322
|
-
*
|
|
35323
|
-
* @param startedAtNewerThan Filter encodings to only return those started after this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
35324
|
-
*/
|
|
35325
|
-
EncodingListQueryParamsBuilder.prototype.startedAtNewerThan = function (startedAtNewerThan) {
|
|
35326
|
-
this.internalParams.startedAtNewerThan = startedAtNewerThan;
|
|
35327
|
-
return this;
|
|
35328
|
-
};
|
|
35329
|
-
/**
|
|
35330
|
-
*
|
|
35331
|
-
* @param startedAtOlderThan Filter encodings to only return those started before this exact time, provided in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
|
|
35332
|
-
*/
|
|
35333
|
-
EncodingListQueryParamsBuilder.prototype.startedAtOlderThan = function (startedAtOlderThan) {
|
|
35334
|
-
this.internalParams.startedAtOlderThan = startedAtOlderThan;
|
|
35335
|
-
return this;
|
|
35336
|
-
};
|
|
35337
|
-
/**
|
|
35338
|
-
*
|
|
35339
|
-
* @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)
|
|
35340
|
-
*/
|
|
35341
|
-
EncodingListQueryParamsBuilder.prototype.finishedAtNewerThan = function (finishedAtNewerThan) {
|
|
35342
|
-
this.internalParams.finishedAtNewerThan = finishedAtNewerThan;
|
|
35343
|
-
return this;
|
|
35344
|
-
};
|
|
35345
|
-
/**
|
|
35346
|
-
*
|
|
35347
|
-
* @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)
|
|
35348
|
-
*/
|
|
35349
|
-
EncodingListQueryParamsBuilder.prototype.finishedAtOlderThan = function (finishedAtOlderThan) {
|
|
35350
|
-
this.internalParams.finishedAtOlderThan = finishedAtOlderThan;
|
|
35351
|
-
return this;
|
|
35352
|
-
};
|
|
35353
|
-
EncodingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
35354
|
-
return this.internalParams;
|
|
35355
|
-
};
|
|
35356
|
-
return EncodingListQueryParamsBuilder;
|
|
35357
|
-
}());
|
|
35358
|
-
exports.EncodingListQueryParamsBuilder = EncodingListQueryParamsBuilder;
|
|
35359
|
-
|
|
35360
|
-
|
|
35361
|
-
/***/ }),
|
|
35362
|
-
|
|
35363
|
-
/***/ "./encoding/history/encodings/EncodingsApi.ts":
|
|
35364
|
-
/*!****************************************************!*\
|
|
35365
|
-
!*** ./encoding/history/encodings/EncodingsApi.ts ***!
|
|
35366
|
-
\****************************************************/
|
|
35367
|
-
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
35368
|
-
|
|
35369
|
-
"use strict";
|
|
35370
|
-
|
|
35371
|
-
var __extends = (this && this.__extends) || (function () {
|
|
35372
|
-
var extendStatics = function (d, b) {
|
|
35373
|
-
extendStatics = Object.setPrototypeOf ||
|
|
35374
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
35375
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
35376
|
-
return extendStatics(d, b);
|
|
35377
|
-
};
|
|
35378
|
-
return function (d, b) {
|
|
35379
|
-
if (typeof b !== "function" && b !== null)
|
|
35380
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
35381
|
-
extendStatics(d, b);
|
|
35382
|
-
function __() { this.constructor = d; }
|
|
35383
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35384
|
-
};
|
|
35385
|
-
})();
|
|
35386
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35387
|
-
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
35388
|
-
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
35389
|
-
var Encoding_1 = __webpack_require__(/*! ../../../models/Encoding */ "./models/Encoding.ts");
|
|
35390
|
-
var HistoryEncoding_1 = __webpack_require__(/*! ../../../models/HistoryEncoding */ "./models/HistoryEncoding.ts");
|
|
35391
|
-
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
35392
|
-
var EncodingListQueryParams_1 = __webpack_require__(/*! ./EncodingListQueryParams */ "./encoding/history/encodings/EncodingListQueryParams.ts");
|
|
35393
|
-
/**
|
|
35394
|
-
* EncodingsApi - object-oriented interface
|
|
35395
|
-
* @export
|
|
35396
|
-
* @class EncodingsApi
|
|
35397
|
-
* @extends {BaseAPI}
|
|
35398
|
-
*/
|
|
35399
|
-
var EncodingsApi = /** @class */ (function (_super) {
|
|
35400
|
-
__extends(EncodingsApi, _super);
|
|
35401
|
-
function EncodingsApi(configuration) {
|
|
35402
|
-
return _super.call(this, configuration) || this;
|
|
35403
|
-
}
|
|
35404
|
-
/**
|
|
35405
|
-
* @summary (Experimental) History Encoding Details
|
|
35406
|
-
* @param {string} encodingId Id of the encoding.
|
|
35407
|
-
* @throws {BitmovinError}
|
|
35408
|
-
* @memberof EncodingsApi
|
|
35409
|
-
*/
|
|
35410
|
-
EncodingsApi.prototype.get = function (encodingId) {
|
|
35411
|
-
var pathParamMap = {
|
|
35412
|
-
encoding_id: encodingId
|
|
35413
|
-
};
|
|
35414
|
-
return this.restClient.get('/encoding/history/encodings/{encoding_id}', pathParamMap).then(function (response) {
|
|
35415
|
-
return (0, Mapper_1.map)(response, HistoryEncoding_1.default);
|
|
35416
|
-
});
|
|
35417
|
-
};
|
|
35418
|
-
/**
|
|
35419
|
-
* @summary (Experimental) List all History Encodings
|
|
35420
|
-
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
35421
|
-
* @throws {BitmovinError}
|
|
35422
|
-
* @memberof EncodingsApi
|
|
35423
|
-
*/
|
|
35424
|
-
EncodingsApi.prototype.list = function (queryParameters) {
|
|
35425
|
-
var queryParams = {};
|
|
35426
|
-
if (typeof queryParameters === 'function') {
|
|
35427
|
-
queryParams = queryParameters(new EncodingListQueryParams_1.EncodingListQueryParamsBuilder()).buildQueryParams();
|
|
35428
|
-
}
|
|
35429
|
-
else if (queryParameters) {
|
|
35430
|
-
queryParams = queryParameters;
|
|
35431
|
-
}
|
|
35432
|
-
return this.restClient.get('/encoding/history/encodings', {}, queryParams).then(function (response) {
|
|
35433
|
-
return new PaginationResponse_1.default(response, Encoding_1.default);
|
|
35434
|
-
});
|
|
35435
|
-
};
|
|
35436
|
-
return EncodingsApi;
|
|
35437
|
-
}(BaseAPI_1.BaseAPI));
|
|
35438
|
-
exports["default"] = EncodingsApi;
|
|
35439
|
-
|
|
35440
|
-
|
|
35441
35137
|
/***/ }),
|
|
35442
35138
|
|
|
35443
35139
|
/***/ "./encoding/infrastructure/InfrastructureApi.ts":
|
|
@@ -71579,159 +71275,6 @@ var HeAacV2Signaling;
|
|
|
71579
71275
|
exports["default"] = HeAacV2Signaling;
|
|
71580
71276
|
|
|
71581
71277
|
|
|
71582
|
-
/***/ }),
|
|
71583
|
-
|
|
71584
|
-
/***/ "./models/HistoryEncoding.ts":
|
|
71585
|
-
/*!***********************************!*\
|
|
71586
|
-
!*** ./models/HistoryEncoding.ts ***!
|
|
71587
|
-
\***********************************/
|
|
71588
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
71589
|
-
|
|
71590
|
-
"use strict";
|
|
71591
|
-
|
|
71592
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
71593
|
-
exports.HistoryEncoding = void 0;
|
|
71594
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
71595
|
-
var ConvertSccCaption_1 = __webpack_require__(/*! ./ConvertSccCaption */ "./models/ConvertSccCaption.ts");
|
|
71596
|
-
var Encoding_1 = __webpack_require__(/*! ./Encoding */ "./models/Encoding.ts");
|
|
71597
|
-
var HistoryMuxing_1 = __webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts");
|
|
71598
|
-
var HistoryStream_1 = __webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts");
|
|
71599
|
-
var Keyframe_1 = __webpack_require__(/*! ./Keyframe */ "./models/Keyframe.ts");
|
|
71600
|
-
var LiveEncoding_1 = __webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts");
|
|
71601
|
-
var SidecarFile_1 = __webpack_require__(/*! ./SidecarFile */ "./models/SidecarFile.ts");
|
|
71602
|
-
var StartEncodingRequest_1 = __webpack_require__(/*! ./StartEncodingRequest */ "./models/StartEncodingRequest.ts");
|
|
71603
|
-
var StartLiveEncodingRequest_1 = __webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/StartLiveEncodingRequest.ts");
|
|
71604
|
-
var StreamInput_1 = __webpack_require__(/*! ./StreamInput */ "./models/StreamInput.ts");
|
|
71605
|
-
var Task_1 = __webpack_require__(/*! ./Task */ "./models/Task.ts");
|
|
71606
|
-
var TransferRetry_1 = __webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts");
|
|
71607
|
-
/**
|
|
71608
|
-
* @export
|
|
71609
|
-
* @class HistoryEncoding
|
|
71610
|
-
*/
|
|
71611
|
-
var HistoryEncoding = /** @class */ (function () {
|
|
71612
|
-
function HistoryEncoding(obj) {
|
|
71613
|
-
if (!obj) {
|
|
71614
|
-
return;
|
|
71615
|
-
}
|
|
71616
|
-
this.encoding = (0, Mapper_1.map)(obj.encoding, Encoding_1.default);
|
|
71617
|
-
this.live = (0, Mapper_1.map)(obj.live, LiveEncoding_1.default);
|
|
71618
|
-
this.vodStartReqeust = (0, Mapper_1.map)(obj.vodStartReqeust, StartEncodingRequest_1.default);
|
|
71619
|
-
this.liveStartReqeust = (0, Mapper_1.map)(obj.liveStartReqeust, StartLiveEncodingRequest_1.default);
|
|
71620
|
-
this.status = (0, Mapper_1.map)(obj.status, Task_1.default);
|
|
71621
|
-
this.inputStreams = (0, Mapper_1.mapArray)(obj.inputStreams, StreamInput_1.default);
|
|
71622
|
-
this.streams = (0, Mapper_1.mapArray)(obj.streams, HistoryStream_1.default);
|
|
71623
|
-
this.muxings = (0, Mapper_1.mapArray)(obj.muxings, HistoryMuxing_1.default);
|
|
71624
|
-
this.keyFrames = (0, Mapper_1.mapArray)(obj.keyFrames, Keyframe_1.default);
|
|
71625
|
-
this.sidecarFiles = (0, Mapper_1.mapArray)(obj.sidecarFiles, SidecarFile_1.default);
|
|
71626
|
-
this.transferRetries = (0, Mapper_1.mapArray)(obj.transferRetries, TransferRetry_1.default);
|
|
71627
|
-
this.convertSccCaptions = (0, Mapper_1.mapArray)(obj.convertSccCaptions, ConvertSccCaption_1.default);
|
|
71628
|
-
}
|
|
71629
|
-
return HistoryEncoding;
|
|
71630
|
-
}());
|
|
71631
|
-
exports.HistoryEncoding = HistoryEncoding;
|
|
71632
|
-
exports["default"] = HistoryEncoding;
|
|
71633
|
-
|
|
71634
|
-
|
|
71635
|
-
/***/ }),
|
|
71636
|
-
|
|
71637
|
-
/***/ "./models/HistoryMuxing.ts":
|
|
71638
|
-
/*!*********************************!*\
|
|
71639
|
-
!*** ./models/HistoryMuxing.ts ***!
|
|
71640
|
-
\*********************************/
|
|
71641
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
71642
|
-
|
|
71643
|
-
"use strict";
|
|
71644
|
-
|
|
71645
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
71646
|
-
exports.HistoryMuxing = void 0;
|
|
71647
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
71648
|
-
var BroadcastTsMuxingInformation_1 = __webpack_require__(/*! ./BroadcastTsMuxingInformation */ "./models/BroadcastTsMuxingInformation.ts");
|
|
71649
|
-
var Drm_1 = __webpack_require__(/*! ./Drm */ "./models/Drm.ts");
|
|
71650
|
-
var Fmp4MuxingInformation_1 = __webpack_require__(/*! ./Fmp4MuxingInformation */ "./models/Fmp4MuxingInformation.ts");
|
|
71651
|
-
var Mp3MuxingInformation_1 = __webpack_require__(/*! ./Mp3MuxingInformation */ "./models/Mp3MuxingInformation.ts");
|
|
71652
|
-
var Mp4MuxingInformation_1 = __webpack_require__(/*! ./Mp4MuxingInformation */ "./models/Mp4MuxingInformation.ts");
|
|
71653
|
-
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
71654
|
-
var PackedAudioMuxingInformation_1 = __webpack_require__(/*! ./PackedAudioMuxingInformation */ "./models/PackedAudioMuxingInformation.ts");
|
|
71655
|
-
var ProgressiveMovMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveMovMuxingInformation */ "./models/ProgressiveMovMuxingInformation.ts");
|
|
71656
|
-
var ProgressiveTsMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveTsMuxingInformation */ "./models/ProgressiveTsMuxingInformation.ts");
|
|
71657
|
-
var ProgressiveWebmMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveWebmMuxingInformation */ "./models/ProgressiveWebmMuxingInformation.ts");
|
|
71658
|
-
/**
|
|
71659
|
-
* @export
|
|
71660
|
-
* @class HistoryMuxing
|
|
71661
|
-
*/
|
|
71662
|
-
var HistoryMuxing = /** @class */ (function () {
|
|
71663
|
-
function HistoryMuxing(obj) {
|
|
71664
|
-
if (!obj) {
|
|
71665
|
-
return;
|
|
71666
|
-
}
|
|
71667
|
-
this.muxing = (0, Mapper_1.map)(obj.muxing, Muxing_1.default);
|
|
71668
|
-
this.drms = (0, Mapper_1.mapArray)(obj.drms, Drm_1.default);
|
|
71669
|
-
this.broadcastTsMuxingInformation = (0, Mapper_1.map)(obj.broadcastTsMuxingInformation, BroadcastTsMuxingInformation_1.default);
|
|
71670
|
-
this.fmp4MuxingInformation = (0, Mapper_1.map)(obj.fmp4MuxingInformation, Fmp4MuxingInformation_1.default);
|
|
71671
|
-
this.mp3MuxingInformation = (0, Mapper_1.map)(obj.mp3MuxingInformation, Mp3MuxingInformation_1.default);
|
|
71672
|
-
this.mp4MuxingInformation = (0, Mapper_1.map)(obj.mp4MuxingInformation, Mp4MuxingInformation_1.default);
|
|
71673
|
-
this.packedAudioMuxingInformation = (0, Mapper_1.map)(obj.packedAudioMuxingInformation, PackedAudioMuxingInformation_1.default);
|
|
71674
|
-
this.progressiveMovMuxingInformation = (0, Mapper_1.map)(obj.progressiveMovMuxingInformation, ProgressiveMovMuxingInformation_1.default);
|
|
71675
|
-
this.progressiveTsMuxingInformation = (0, Mapper_1.map)(obj.progressiveTsMuxingInformation, ProgressiveTsMuxingInformation_1.default);
|
|
71676
|
-
this.progressiveWebmMuxingInformation = (0, Mapper_1.map)(obj.progressiveWebmMuxingInformation, ProgressiveWebmMuxingInformation_1.default);
|
|
71677
|
-
}
|
|
71678
|
-
return HistoryMuxing;
|
|
71679
|
-
}());
|
|
71680
|
-
exports.HistoryMuxing = HistoryMuxing;
|
|
71681
|
-
exports["default"] = HistoryMuxing;
|
|
71682
|
-
|
|
71683
|
-
|
|
71684
|
-
/***/ }),
|
|
71685
|
-
|
|
71686
|
-
/***/ "./models/HistoryStream.ts":
|
|
71687
|
-
/*!*********************************!*\
|
|
71688
|
-
!*** ./models/HistoryStream.ts ***!
|
|
71689
|
-
\*********************************/
|
|
71690
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
71691
|
-
|
|
71692
|
-
"use strict";
|
|
71693
|
-
|
|
71694
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
71695
|
-
exports.HistoryStream = void 0;
|
|
71696
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
71697
|
-
var Bif_1 = __webpack_require__(/*! ./Bif */ "./models/Bif.ts");
|
|
71698
|
-
var BurnInSubtitleDvbSub_1 = __webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInSubtitleDvbSub.ts");
|
|
71699
|
-
var BurnInSubtitleSrt_1 = __webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts");
|
|
71700
|
-
var DolbyVisionMetadata_1 = __webpack_require__(/*! ./DolbyVisionMetadata */ "./models/DolbyVisionMetadata.ts");
|
|
71701
|
-
var NexGuardFileMarker_1 = __webpack_require__(/*! ./NexGuardFileMarker */ "./models/NexGuardFileMarker.ts");
|
|
71702
|
-
var PsnrQualityMetric_1 = __webpack_require__(/*! ./PsnrQualityMetric */ "./models/PsnrQualityMetric.ts");
|
|
71703
|
-
var SccCaption_1 = __webpack_require__(/*! ./SccCaption */ "./models/SccCaption.ts");
|
|
71704
|
-
var Sprite_1 = __webpack_require__(/*! ./Sprite */ "./models/Sprite.ts");
|
|
71705
|
-
var Stream_1 = __webpack_require__(/*! ./Stream */ "./models/Stream.ts");
|
|
71706
|
-
var StreamFilter_1 = __webpack_require__(/*! ./StreamFilter */ "./models/StreamFilter.ts");
|
|
71707
|
-
var Thumbnail_1 = __webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts");
|
|
71708
|
-
/**
|
|
71709
|
-
* @export
|
|
71710
|
-
* @class HistoryStream
|
|
71711
|
-
*/
|
|
71712
|
-
var HistoryStream = /** @class */ (function () {
|
|
71713
|
-
function HistoryStream(obj) {
|
|
71714
|
-
if (!obj) {
|
|
71715
|
-
return;
|
|
71716
|
-
}
|
|
71717
|
-
this.stream = (0, Mapper_1.map)(obj.stream, Stream_1.default);
|
|
71718
|
-
this.filters = (0, Mapper_1.mapArray)(obj.filters, StreamFilter_1.default);
|
|
71719
|
-
this.burnInSubtitleDvbSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleDvbSubs, BurnInSubtitleDvbSub_1.default);
|
|
71720
|
-
this.burnInSubtitleSrtSubs = (0, Mapper_1.mapArray)(obj.burnInSubtitleSrtSubs, BurnInSubtitleSrt_1.default);
|
|
71721
|
-
this.nexGuardFileMarker = (0, Mapper_1.map)(obj.nexGuardFileMarker, NexGuardFileMarker_1.default);
|
|
71722
|
-
this.sccCaptions = (0, Mapper_1.mapArray)(obj.sccCaptions, SccCaption_1.default);
|
|
71723
|
-
this.bifs = (0, Mapper_1.mapArray)(obj.bifs, Bif_1.default);
|
|
71724
|
-
this.dolbyVisionMetadata = (0, Mapper_1.mapArray)(obj.dolbyVisionMetadata, DolbyVisionMetadata_1.default);
|
|
71725
|
-
this.thumbnails = (0, Mapper_1.mapArray)(obj.thumbnails, Thumbnail_1.default);
|
|
71726
|
-
this.sprites = (0, Mapper_1.mapArray)(obj.sprites, Sprite_1.default);
|
|
71727
|
-
this.psnrMetrics = (0, Mapper_1.mapArray)(obj.psnrMetrics, PsnrQualityMetric_1.default);
|
|
71728
|
-
}
|
|
71729
|
-
return HistoryStream;
|
|
71730
|
-
}());
|
|
71731
|
-
exports.HistoryStream = HistoryStream;
|
|
71732
|
-
exports["default"] = HistoryStream;
|
|
71733
|
-
|
|
71734
|
-
|
|
71735
71278
|
/***/ }),
|
|
71736
71279
|
|
|
71737
71280
|
/***/ "./models/HlsManifest.ts":
|
|
@@ -73403,7 +72946,6 @@ var Keyframe = /** @class */ (function (_super) {
|
|
|
73403
72946
|
return _this;
|
|
73404
72947
|
}
|
|
73405
72948
|
_this.time = (0, Mapper_1.map)(obj.time);
|
|
73406
|
-
_this.segmentCut = (0, Mapper_1.map)(obj.segmentCut);
|
|
73407
72949
|
return _this;
|
|
73408
72950
|
}
|
|
73409
72951
|
return Keyframe;
|
|
@@ -78863,6 +78405,7 @@ var ResetLiveManifestTimeShift = /** @class */ (function (_super) {
|
|
|
78863
78405
|
}
|
|
78864
78406
|
_this.residualPeriodInSeconds = (0, Mapper_1.map)(obj.residualPeriodInSeconds);
|
|
78865
78407
|
_this.manifestIds = (0, Mapper_1.mapArray)(obj.manifestIds);
|
|
78408
|
+
_this.shiftProgressiveMuxingStartPosition = (0, Mapper_1.map)(obj.shiftProgressiveMuxingStartPosition);
|
|
78866
78409
|
return _this;
|
|
78867
78410
|
}
|
|
78868
78411
|
return ResetLiveManifestTimeShift;
|
|
@@ -88471,9 +88014,6 @@ __exportStar(__webpack_require__(/*! ./HeAacV1AudioConfiguration */ "./models/He
|
|
|
88471
88014
|
__exportStar(__webpack_require__(/*! ./HeAacV1Signaling */ "./models/HeAacV1Signaling.ts"), exports);
|
|
88472
88015
|
__exportStar(__webpack_require__(/*! ./HeAacV2AudioConfiguration */ "./models/HeAacV2AudioConfiguration.ts"), exports);
|
|
88473
88016
|
__exportStar(__webpack_require__(/*! ./HeAacV2Signaling */ "./models/HeAacV2Signaling.ts"), exports);
|
|
88474
|
-
__exportStar(__webpack_require__(/*! ./HistoryEncoding */ "./models/HistoryEncoding.ts"), exports);
|
|
88475
|
-
__exportStar(__webpack_require__(/*! ./HistoryMuxing */ "./models/HistoryMuxing.ts"), exports);
|
|
88476
|
-
__exportStar(__webpack_require__(/*! ./HistoryStream */ "./models/HistoryStream.ts"), exports);
|
|
88477
88017
|
__exportStar(__webpack_require__(/*! ./HlsManifest */ "./models/HlsManifest.ts"), exports);
|
|
88478
88018
|
__exportStar(__webpack_require__(/*! ./HlsManifestAdMarkerSettings */ "./models/HlsManifestAdMarkerSettings.ts"), exports);
|
|
88479
88019
|
__exportStar(__webpack_require__(/*! ./HlsManifestAdMarkerType */ "./models/HlsManifestAdMarkerType.ts"), exports);
|