@bitmovin/api-sdk 1.109.0 → 1.110.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 -11
- package/dist/bitmovin-api-sdk.browser.js.map +1 -1
- package/dist/bitmovin-api-sdk.browser.min.js +2 -2
- package/dist/common/RestClient.js +1 -1
- package/dist/models/SimpleEncodingVodJobOutput.d.ts +15 -0
- package/dist/models/SimpleEncodingVodJobOutput.js +22 -0
- package/dist/models/SimpleEncodingVodJobOutput.js.map +1 -0
- package/dist/models/SimpleEncodingVodJobOutputType.d.ts +9 -0
- package/dist/models/SimpleEncodingVodJobOutputType.js +14 -0
- package/dist/models/SimpleEncodingVodJobOutputType.js.map +1 -0
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +4 -3
- package/dist/models/SimpleEncodingVodJobRequest.js +2 -2
- package/dist/models/SimpleEncodingVodJobRequest.js.map +1 -1
- package/dist/models/SimpleEncodingVodJobResponse.d.ts +3 -3
- package/dist/models/SimpleEncodingVodJobResponse.js +2 -2
- package/dist/models/SimpleEncodingVodJobResponse.js.map +1 -1
- package/dist/models/SimpleEncodingVodJobUrlOutput.d.ts +9 -1
- package/dist/models/SimpleEncodingVodJobUrlOutput.js +30 -6
- package/dist/models/SimpleEncodingVodJobUrlOutput.js.map +1 -1
- 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
|
@@ -6974,7 +6974,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6974
6974
|
var headers = {
|
|
6975
6975
|
'X-Api-Key': apiKey,
|
|
6976
6976
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6977
|
-
'X-Api-Client-Version': '1.
|
|
6977
|
+
'X-Api-Client-Version': '1.110.0',
|
|
6978
6978
|
'Content-Type': 'application/json'
|
|
6979
6979
|
};
|
|
6980
6980
|
if (tenantOrgId) {
|
|
@@ -79548,6 +79548,64 @@ var SimpleEncodingVodJobInputType;
|
|
|
79548
79548
|
exports.default = SimpleEncodingVodJobInputType;
|
|
79549
79549
|
|
|
79550
79550
|
|
|
79551
|
+
/***/ }),
|
|
79552
|
+
|
|
79553
|
+
/***/ "./models/SimpleEncodingVodJobOutput.ts":
|
|
79554
|
+
/*!**********************************************!*\
|
|
79555
|
+
!*** ./models/SimpleEncodingVodJobOutput.ts ***!
|
|
79556
|
+
\**********************************************/
|
|
79557
|
+
/*! no static exports found */
|
|
79558
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
79559
|
+
|
|
79560
|
+
"use strict";
|
|
79561
|
+
|
|
79562
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79563
|
+
exports.SimpleEncodingVodJobOutput = void 0;
|
|
79564
|
+
/**
|
|
79565
|
+
* @export
|
|
79566
|
+
* @class SimpleEncodingVodJobOutput
|
|
79567
|
+
*/
|
|
79568
|
+
var SimpleEncodingVodJobOutput = /** @class */ (function () {
|
|
79569
|
+
function SimpleEncodingVodJobOutput(obj) {
|
|
79570
|
+
if (!obj) {
|
|
79571
|
+
return;
|
|
79572
|
+
}
|
|
79573
|
+
}
|
|
79574
|
+
SimpleEncodingVodJobOutput._discriminatorName = 'type';
|
|
79575
|
+
SimpleEncodingVodJobOutput._discriminatorMapping = {
|
|
79576
|
+
URL: 'SimpleEncodingVodJobUrlOutput'
|
|
79577
|
+
};
|
|
79578
|
+
return SimpleEncodingVodJobOutput;
|
|
79579
|
+
}());
|
|
79580
|
+
exports.SimpleEncodingVodJobOutput = SimpleEncodingVodJobOutput;
|
|
79581
|
+
exports.default = SimpleEncodingVodJobOutput;
|
|
79582
|
+
|
|
79583
|
+
|
|
79584
|
+
/***/ }),
|
|
79585
|
+
|
|
79586
|
+
/***/ "./models/SimpleEncodingVodJobOutputType.ts":
|
|
79587
|
+
/*!**************************************************!*\
|
|
79588
|
+
!*** ./models/SimpleEncodingVodJobOutputType.ts ***!
|
|
79589
|
+
\**************************************************/
|
|
79590
|
+
/*! no static exports found */
|
|
79591
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
79592
|
+
|
|
79593
|
+
"use strict";
|
|
79594
|
+
|
|
79595
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79596
|
+
exports.SimpleEncodingVodJobOutputType = void 0;
|
|
79597
|
+
/**
|
|
79598
|
+
* Output type
|
|
79599
|
+
* @export
|
|
79600
|
+
* @enum {string}
|
|
79601
|
+
*/
|
|
79602
|
+
var SimpleEncodingVodJobOutputType;
|
|
79603
|
+
(function (SimpleEncodingVodJobOutputType) {
|
|
79604
|
+
SimpleEncodingVodJobOutputType["URL"] = "URL";
|
|
79605
|
+
})(SimpleEncodingVodJobOutputType = exports.SimpleEncodingVodJobOutputType || (exports.SimpleEncodingVodJobOutputType = {}));
|
|
79606
|
+
exports.default = SimpleEncodingVodJobOutputType;
|
|
79607
|
+
|
|
79608
|
+
|
|
79551
79609
|
/***/ }),
|
|
79552
79610
|
|
|
79553
79611
|
/***/ "./models/SimpleEncodingVodJobRequest.ts":
|
|
@@ -79562,8 +79620,8 @@ exports.default = SimpleEncodingVodJobInputType;
|
|
|
79562
79620
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79563
79621
|
exports.SimpleEncodingVodJobRequest = void 0;
|
|
79564
79622
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79623
|
+
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79565
79624
|
var SimpleEncodingVodJobUrlInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobUrlInput */ "./models/SimpleEncodingVodJobUrlInput.ts");
|
|
79566
|
-
var SimpleEncodingVodJobUrlOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobUrlOutput */ "./models/SimpleEncodingVodJobUrlOutput.ts");
|
|
79567
79625
|
/**
|
|
79568
79626
|
* @export
|
|
79569
79627
|
* @class SimpleEncodingVodJobRequest
|
|
@@ -79575,7 +79633,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
|
|
|
79575
79633
|
}
|
|
79576
79634
|
this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
|
|
79577
79635
|
this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
|
|
79578
|
-
this.outputs = Mapper_1.mapArray(obj.outputs,
|
|
79636
|
+
this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79579
79637
|
this.name = Mapper_1.map(obj.name);
|
|
79580
79638
|
}
|
|
79581
79639
|
return SimpleEncodingVodJobRequest;
|
|
@@ -79599,8 +79657,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
79599
79657
|
exports.SimpleEncodingVodJobResponse = void 0;
|
|
79600
79658
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79601
79659
|
var SimpleEncodingVodJobErrors_1 = __webpack_require__(/*! ./SimpleEncodingVodJobErrors */ "./models/SimpleEncodingVodJobErrors.ts");
|
|
79660
|
+
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79602
79661
|
var SimpleEncodingVodJobUrlInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobUrlInput */ "./models/SimpleEncodingVodJobUrlInput.ts");
|
|
79603
|
-
var SimpleEncodingVodJobUrlOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobUrlOutput */ "./models/SimpleEncodingVodJobUrlOutput.ts");
|
|
79604
79662
|
/**
|
|
79605
79663
|
* @export
|
|
79606
79664
|
* @class SimpleEncodingVodJobResponse
|
|
@@ -79615,7 +79673,7 @@ var SimpleEncodingVodJobResponse = /** @class */ (function () {
|
|
|
79615
79673
|
this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
|
|
79616
79674
|
this.encodingId = Mapper_1.map(obj.encodingId);
|
|
79617
79675
|
this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
|
|
79618
|
-
this.outputs = Mapper_1.mapArray(obj.outputs,
|
|
79676
|
+
this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79619
79677
|
this.errors = Mapper_1.mapArray(obj.errors, SimpleEncodingVodJobErrors_1.default);
|
|
79620
79678
|
this.createdAt = Mapper_1.map(obj.createdAt, Date);
|
|
79621
79679
|
this.modifiedAt = Mapper_1.map(obj.modifiedAt, Date);
|
|
@@ -79752,25 +79810,49 @@ exports.default = SimpleEncodingVodJobUrlInput;
|
|
|
79752
79810
|
|
|
79753
79811
|
"use strict";
|
|
79754
79812
|
|
|
79813
|
+
var __extends = (this && this.__extends) || (function () {
|
|
79814
|
+
var extendStatics = function (d, b) {
|
|
79815
|
+
extendStatics = Object.setPrototypeOf ||
|
|
79816
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
79817
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
79818
|
+
return extendStatics(d, b);
|
|
79819
|
+
};
|
|
79820
|
+
return function (d, b) {
|
|
79821
|
+
extendStatics(d, b);
|
|
79822
|
+
function __() { this.constructor = d; }
|
|
79823
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
79824
|
+
};
|
|
79825
|
+
})();
|
|
79755
79826
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
79756
79827
|
exports.SimpleEncodingVodJobUrlOutput = void 0;
|
|
79757
79828
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79758
79829
|
var SimpleEncodingVodJobCredentials_1 = __webpack_require__(/*! ./SimpleEncodingVodJobCredentials */ "./models/SimpleEncodingVodJobCredentials.ts");
|
|
79830
|
+
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79831
|
+
var SimpleEncodingVodJobOutputType_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutputType */ "./models/SimpleEncodingVodJobOutputType.ts");
|
|
79759
79832
|
/**
|
|
79760
79833
|
* @export
|
|
79761
79834
|
* @class SimpleEncodingVodJobUrlOutput
|
|
79762
79835
|
*/
|
|
79763
|
-
var SimpleEncodingVodJobUrlOutput = /** @class */ (function () {
|
|
79836
|
+
var SimpleEncodingVodJobUrlOutput = /** @class */ (function (_super) {
|
|
79837
|
+
__extends(SimpleEncodingVodJobUrlOutput, _super);
|
|
79764
79838
|
function SimpleEncodingVodJobUrlOutput(obj) {
|
|
79839
|
+
var _this = _super.call(this, obj) || this;
|
|
79840
|
+
/**
|
|
79841
|
+
* Discriminator property for SimpleEncodingVodJobOutput
|
|
79842
|
+
* @type {string}
|
|
79843
|
+
* @memberof SimpleEncodingVodJobUrlOutput
|
|
79844
|
+
*/
|
|
79845
|
+
_this.type = SimpleEncodingVodJobOutputType_1.default.URL;
|
|
79765
79846
|
if (!obj) {
|
|
79766
|
-
return;
|
|
79847
|
+
return _this;
|
|
79767
79848
|
}
|
|
79768
|
-
|
|
79769
|
-
|
|
79770
|
-
|
|
79849
|
+
_this.url = Mapper_1.map(obj.url);
|
|
79850
|
+
_this.credentials = Mapper_1.map(obj.credentials, SimpleEncodingVodJobCredentials_1.default);
|
|
79851
|
+
_this.makePublic = Mapper_1.map(obj.makePublic);
|
|
79852
|
+
return _this;
|
|
79771
79853
|
}
|
|
79772
79854
|
return SimpleEncodingVodJobUrlOutput;
|
|
79773
|
-
}());
|
|
79855
|
+
}(SimpleEncodingVodJobOutput_1.default));
|
|
79774
79856
|
exports.SimpleEncodingVodJobUrlOutput = SimpleEncodingVodJobUrlOutput;
|
|
79775
79857
|
exports.default = SimpleEncodingVodJobUrlOutput;
|
|
79776
79858
|
|
|
@@ -85759,6 +85841,8 @@ __exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobCredentials */ "./mod
|
|
|
85759
85841
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobErrors */ "./models/SimpleEncodingVodJobErrors.ts"), exports);
|
|
85760
85842
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobGcsServiceAccountCredentials */ "./models/SimpleEncodingVodJobGcsServiceAccountCredentials.ts"), exports);
|
|
85761
85843
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInputType */ "./models/SimpleEncodingVodJobInputType.ts"), exports);
|
|
85844
|
+
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts"), exports);
|
|
85845
|
+
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutputType */ "./models/SimpleEncodingVodJobOutputType.ts"), exports);
|
|
85762
85846
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobRequest */ "./models/SimpleEncodingVodJobRequest.ts"), exports);
|
|
85763
85847
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobResponse */ "./models/SimpleEncodingVodJobResponse.ts"), exports);
|
|
85764
85848
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobS3RoleBasedCredentials */ "./models/SimpleEncodingVodJobS3RoleBasedCredentials.ts"), exports);
|