@bitmovin/api-sdk 1.229.0 → 1.231.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 +8 -4
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/templates/TemplatesApi.d.ts +1 -1
- package/dist/encoding/templates/TemplatesApi.js +1 -1
- package/dist/models/AccountInformation.d.ts +6 -0
- package/dist/models/AccountInformation.js +1 -0
- package/dist/models/Organization.d.ts +6 -0
- package/dist/models/Organization.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1223,7 +1223,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (nam
|
|
|
1223
1223
|
(__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) :
|
|
1224
1224
|
__WEBPACK_AMD_DEFINE_FACTORY__),
|
|
1225
1225
|
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
1226
|
-
else
|
|
1226
|
+
else // removed by dead control flow
|
|
1227
|
+
{}
|
|
1227
1228
|
})('urljoin', this, function () {
|
|
1228
1229
|
|
|
1229
1230
|
function normalize (strArray) {
|
|
@@ -7010,7 +7011,8 @@ var RestClient = /** @class */ (function () {
|
|
|
7010
7011
|
catch (error) {
|
|
7011
7012
|
throw (0, BitmovinErrorBuilder_1.buildBitmovinError)("Response body could not be parsed to JSON", request, response, bodyResponse, error);
|
|
7012
7013
|
}
|
|
7013
|
-
|
|
7014
|
+
// removed by dead control flow
|
|
7015
|
+
{}
|
|
7014
7016
|
}
|
|
7015
7017
|
});
|
|
7016
7018
|
});
|
|
@@ -7030,7 +7032,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
7030
7032
|
var headers = {
|
|
7031
7033
|
'X-Api-Key': apiKey,
|
|
7032
7034
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
7033
|
-
'X-Api-Client-Version': '1.
|
|
7035
|
+
'X-Api-Client-Version': '1.231.0',
|
|
7034
7036
|
'Content-Type': 'application/json'
|
|
7035
7037
|
};
|
|
7036
7038
|
if (tenantOrgId) {
|
|
@@ -55822,7 +55824,7 @@ var TemplatesApi = /** @class */ (function (_super) {
|
|
|
55822
55824
|
});
|
|
55823
55825
|
};
|
|
55824
55826
|
/**
|
|
55825
|
-
* @summary
|
|
55827
|
+
* @summary Start an Encoding defined with an Encoding Template
|
|
55826
55828
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
55827
55829
|
* @throws {BitmovinError}
|
|
55828
55830
|
* @memberof TemplatesApi
|
|
@@ -56586,6 +56588,7 @@ var AccountInformation = /** @class */ (function (_super) {
|
|
|
56586
56588
|
_this.marketplace = (0, Mapper_1.map)(obj.marketplace);
|
|
56587
56589
|
_this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
|
|
56588
56590
|
_this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
|
|
56591
|
+
_this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
|
|
56589
56592
|
return _this;
|
|
56590
56593
|
}
|
|
56591
56594
|
return AccountInformation;
|
|
@@ -79579,6 +79582,7 @@ var Organization = /** @class */ (function (_super) {
|
|
|
79579
79582
|
_this.limitsPerResource = (0, Mapper_1.mapArray)(obj.limitsPerResource, ResourceLimitContainer_1.default);
|
|
79580
79583
|
_this.signupSource = (0, Mapper_1.map)(obj.signupSource);
|
|
79581
79584
|
_this.mfaRequired = (0, Mapper_1.map)(obj.mfaRequired);
|
|
79585
|
+
_this.ownerUserId = (0, Mapper_1.map)(obj.ownerUserId);
|
|
79582
79586
|
return _this;
|
|
79583
79587
|
}
|
|
79584
79588
|
return Organization;
|