@bitmovin/api-sdk 1.124.0 → 1.127.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 +95 -1
- package/dist/bitmovin-api-sdk.browser.js.map +1 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/inputs/InputListQueryParams.d.ts +22 -0
- package/dist/encoding/inputs/InputListQueryParams.js +16 -0
- package/dist/encoding/inputs/InputListQueryParams.js.map +1 -1
- package/dist/models/ColorConfig.d.ts +14 -0
- package/dist/models/ColorConfig.js +2 -0
- package/dist/models/ColorConfig.js.map +1 -1
- package/dist/models/InputColorPrimaries.d.ts +20 -0
- package/dist/models/InputColorPrimaries.js +25 -0
- package/dist/models/InputColorPrimaries.js.map +1 -0
- package/dist/models/InputColorTransfer.d.ts +24 -0
- package/dist/models/InputColorTransfer.js +29 -0
- package/dist/models/InputColorTransfer.js.map +1 -0
- package/dist/models/Muxing.d.ts +2 -2
- package/dist/models/Stream.d.ts +2 -2
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5985,7 +5985,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
5985
5985
|
var headers = {
|
|
5986
5986
|
'X-Api-Key': apiKey,
|
|
5987
5987
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
5988
|
-
'X-Api-Client-Version': '1.
|
|
5988
|
+
'X-Api-Client-Version': '1.127.0',
|
|
5989
5989
|
'Content-Type': 'application/json'
|
|
5990
5990
|
};
|
|
5991
5991
|
if (tenantOrgId) {
|
|
@@ -36337,6 +36337,22 @@ var InputListQueryParamsBuilder = /** @class */ (function () {
|
|
|
36337
36337
|
this.internalParams.name = name;
|
|
36338
36338
|
return this;
|
|
36339
36339
|
};
|
|
36340
|
+
/**
|
|
36341
|
+
*
|
|
36342
|
+
* @param type Filter inputs by type
|
|
36343
|
+
*/
|
|
36344
|
+
InputListQueryParamsBuilder.prototype.type = function (type) {
|
|
36345
|
+
this.internalParams.type = type;
|
|
36346
|
+
return this;
|
|
36347
|
+
};
|
|
36348
|
+
/**
|
|
36349
|
+
*
|
|
36350
|
+
* @param sort Order list result according an input resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
36351
|
+
*/
|
|
36352
|
+
InputListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
36353
|
+
this.internalParams.sort = sort;
|
|
36354
|
+
return this;
|
|
36355
|
+
};
|
|
36340
36356
|
InputListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
36341
36357
|
return this.internalParams;
|
|
36342
36358
|
};
|
|
@@ -62108,6 +62124,8 @@ var ColorConfig = /** @class */ (function () {
|
|
|
62108
62124
|
this.colorTransfer = (0, Mapper_1.map)(obj.colorTransfer);
|
|
62109
62125
|
this.inputColorSpace = (0, Mapper_1.map)(obj.inputColorSpace);
|
|
62110
62126
|
this.inputColorRange = (0, Mapper_1.map)(obj.inputColorRange);
|
|
62127
|
+
this.inputColorPrimaries = (0, Mapper_1.map)(obj.inputColorPrimaries);
|
|
62128
|
+
this.inputColorTransfer = (0, Mapper_1.map)(obj.inputColorTransfer);
|
|
62111
62129
|
}
|
|
62112
62130
|
return ColorConfig;
|
|
62113
62131
|
}());
|
|
@@ -71195,6 +71213,41 @@ exports.Input = Input;
|
|
|
71195
71213
|
exports["default"] = Input;
|
|
71196
71214
|
|
|
71197
71215
|
|
|
71216
|
+
/***/ }),
|
|
71217
|
+
|
|
71218
|
+
/***/ "./models/InputColorPrimaries.ts":
|
|
71219
|
+
/*!***************************************!*\
|
|
71220
|
+
!*** ./models/InputColorPrimaries.ts ***!
|
|
71221
|
+
\***************************************/
|
|
71222
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
71223
|
+
|
|
71224
|
+
"use strict";
|
|
71225
|
+
|
|
71226
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
71227
|
+
exports.InputColorPrimaries = void 0;
|
|
71228
|
+
/**
|
|
71229
|
+
* @export
|
|
71230
|
+
* @enum {string}
|
|
71231
|
+
*/
|
|
71232
|
+
var InputColorPrimaries;
|
|
71233
|
+
(function (InputColorPrimaries) {
|
|
71234
|
+
InputColorPrimaries["UNSPECIFIED"] = "UNSPECIFIED";
|
|
71235
|
+
InputColorPrimaries["BT709"] = "BT709";
|
|
71236
|
+
InputColorPrimaries["BT470M"] = "BT470M";
|
|
71237
|
+
InputColorPrimaries["BT470BG"] = "BT470BG";
|
|
71238
|
+
InputColorPrimaries["SMPTE170M"] = "SMPTE170M";
|
|
71239
|
+
InputColorPrimaries["SMPTE240M"] = "SMPTE240M";
|
|
71240
|
+
InputColorPrimaries["FILM"] = "FILM";
|
|
71241
|
+
InputColorPrimaries["BT2020"] = "BT2020";
|
|
71242
|
+
InputColorPrimaries["SMPTE428"] = "SMPTE428";
|
|
71243
|
+
InputColorPrimaries["SMPTEST428_1"] = "SMPTEST428_1";
|
|
71244
|
+
InputColorPrimaries["SMPTE431"] = "SMPTE431";
|
|
71245
|
+
InputColorPrimaries["SMPTE432"] = "SMPTE432";
|
|
71246
|
+
InputColorPrimaries["JEDEC_P22"] = "JEDEC_P22";
|
|
71247
|
+
})(InputColorPrimaries = exports.InputColorPrimaries || (exports.InputColorPrimaries = {}));
|
|
71248
|
+
exports["default"] = InputColorPrimaries;
|
|
71249
|
+
|
|
71250
|
+
|
|
71198
71251
|
/***/ }),
|
|
71199
71252
|
|
|
71200
71253
|
/***/ "./models/InputColorRange.ts":
|
|
@@ -71256,6 +71309,45 @@ var InputColorSpace;
|
|
|
71256
71309
|
exports["default"] = InputColorSpace;
|
|
71257
71310
|
|
|
71258
71311
|
|
|
71312
|
+
/***/ }),
|
|
71313
|
+
|
|
71314
|
+
/***/ "./models/InputColorTransfer.ts":
|
|
71315
|
+
/*!**************************************!*\
|
|
71316
|
+
!*** ./models/InputColorTransfer.ts ***!
|
|
71317
|
+
\**************************************/
|
|
71318
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
71319
|
+
|
|
71320
|
+
"use strict";
|
|
71321
|
+
|
|
71322
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
71323
|
+
exports.InputColorTransfer = void 0;
|
|
71324
|
+
/**
|
|
71325
|
+
* @export
|
|
71326
|
+
* @enum {string}
|
|
71327
|
+
*/
|
|
71328
|
+
var InputColorTransfer;
|
|
71329
|
+
(function (InputColorTransfer) {
|
|
71330
|
+
InputColorTransfer["UNSPECIFIED"] = "UNSPECIFIED";
|
|
71331
|
+
InputColorTransfer["BT709"] = "BT709";
|
|
71332
|
+
InputColorTransfer["GAMMA22"] = "GAMMA22";
|
|
71333
|
+
InputColorTransfer["GAMMA28"] = "GAMMA28";
|
|
71334
|
+
InputColorTransfer["SMPTE170M"] = "SMPTE170M";
|
|
71335
|
+
InputColorTransfer["SMPTE240M"] = "SMPTE240M";
|
|
71336
|
+
InputColorTransfer["LINEAR"] = "LINEAR";
|
|
71337
|
+
InputColorTransfer["LOG"] = "LOG";
|
|
71338
|
+
InputColorTransfer["LOG_SQRT"] = "LOG_SQRT";
|
|
71339
|
+
InputColorTransfer["IEC61966_2_4"] = "IEC61966_2_4";
|
|
71340
|
+
InputColorTransfer["BT1361_ECG"] = "BT1361_ECG";
|
|
71341
|
+
InputColorTransfer["IEC61966_2_1"] = "IEC61966_2_1";
|
|
71342
|
+
InputColorTransfer["BT2020_10"] = "BT2020_10";
|
|
71343
|
+
InputColorTransfer["BT2020_12"] = "BT2020_12";
|
|
71344
|
+
InputColorTransfer["SMPTE2084"] = "SMPTE2084";
|
|
71345
|
+
InputColorTransfer["SMPTE428"] = "SMPTE428";
|
|
71346
|
+
InputColorTransfer["ARIB_STD_B67"] = "ARIB_STD_B67";
|
|
71347
|
+
})(InputColorTransfer = exports.InputColorTransfer || (exports.InputColorTransfer = {}));
|
|
71348
|
+
exports["default"] = InputColorTransfer;
|
|
71349
|
+
|
|
71350
|
+
|
|
71259
71351
|
/***/ }),
|
|
71260
71352
|
|
|
71261
71353
|
/***/ "./models/InputFactor.ts":
|
|
@@ -85288,8 +85380,10 @@ __exportStar(__webpack_require__(/*! ./ImscStylingMode */ "./models/ImscStylingM
|
|
|
85288
85380
|
__exportStar(__webpack_require__(/*! ./InfrastructureSettings */ "./models/InfrastructureSettings.ts"), exports);
|
|
85289
85381
|
__exportStar(__webpack_require__(/*! ./IngestInputStream */ "./models/IngestInputStream.ts"), exports);
|
|
85290
85382
|
__exportStar(__webpack_require__(/*! ./Input */ "./models/Input.ts"), exports);
|
|
85383
|
+
__exportStar(__webpack_require__(/*! ./InputColorPrimaries */ "./models/InputColorPrimaries.ts"), exports);
|
|
85291
85384
|
__exportStar(__webpack_require__(/*! ./InputColorRange */ "./models/InputColorRange.ts"), exports);
|
|
85292
85385
|
__exportStar(__webpack_require__(/*! ./InputColorSpace */ "./models/InputColorSpace.ts"), exports);
|
|
85386
|
+
__exportStar(__webpack_require__(/*! ./InputColorTransfer */ "./models/InputColorTransfer.ts"), exports);
|
|
85293
85387
|
__exportStar(__webpack_require__(/*! ./InputFactor */ "./models/InputFactor.ts"), exports);
|
|
85294
85388
|
__exportStar(__webpack_require__(/*! ./InputFactorBitrate */ "./models/InputFactorBitrate.ts"), exports);
|
|
85295
85389
|
__exportStar(__webpack_require__(/*! ./InputFactorCodec */ "./models/InputFactorCodec.ts"), exports);
|