@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
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.231.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -43,7 +43,7 @@ export default class TemplatesApi extends BaseAPI {
|
|
|
43
43
|
*/
|
|
44
44
|
list(queryParameters?: EncodingTemplateResponseListQueryParams | ((q: EncodingTemplateResponseListQueryParamsBuilder) => EncodingTemplateResponseListQueryParamsBuilder)): Promise<PaginationResponse<EncodingTemplateResponse>>;
|
|
45
45
|
/**
|
|
46
|
-
* @summary
|
|
46
|
+
* @summary Start an Encoding defined with an Encoding Template
|
|
47
47
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
48
48
|
* @throws {BitmovinError}
|
|
49
49
|
* @memberof TemplatesApi
|
|
@@ -92,7 +92,7 @@ var TemplatesApi = /** @class */ (function (_super) {
|
|
|
92
92
|
});
|
|
93
93
|
};
|
|
94
94
|
/**
|
|
95
|
-
* @summary
|
|
95
|
+
* @summary Start an Encoding defined with an Encoding Template
|
|
96
96
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
97
97
|
* @throws {BitmovinError}
|
|
98
98
|
* @memberof TemplatesApi
|
|
@@ -62,6 +62,12 @@ export declare class AccountInformation extends BitmovinResource {
|
|
|
62
62
|
* @memberof AccountInformation
|
|
63
63
|
*/
|
|
64
64
|
intercomIdVerification?: string;
|
|
65
|
+
/**
|
|
66
|
+
* The Saml Domain of this Account
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof AccountInformation
|
|
69
|
+
*/
|
|
70
|
+
samlDomain?: string;
|
|
65
71
|
constructor(obj?: Partial<AccountInformation>);
|
|
66
72
|
}
|
|
67
73
|
export default AccountInformation;
|
|
@@ -40,6 +40,7 @@ var AccountInformation = /** @class */ (function (_super) {
|
|
|
40
40
|
_this.marketplace = (0, Mapper_1.map)(obj.marketplace);
|
|
41
41
|
_this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
|
|
42
42
|
_this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
|
|
43
|
+
_this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
|
|
43
44
|
return _this;
|
|
44
45
|
}
|
|
45
46
|
return AccountInformation;
|
|
@@ -42,6 +42,12 @@ export declare class Organization extends BitmovinResource {
|
|
|
42
42
|
* @memberof Organization
|
|
43
43
|
*/
|
|
44
44
|
mfaRequired?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* ID of the user who owns the organization
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof Organization
|
|
49
|
+
*/
|
|
50
|
+
ownerUserId?: string;
|
|
45
51
|
constructor(obj?: Partial<Organization>);
|
|
46
52
|
}
|
|
47
53
|
export default Organization;
|
|
@@ -36,6 +36,7 @@ var Organization = /** @class */ (function (_super) {
|
|
|
36
36
|
_this.limitsPerResource = (0, Mapper_1.mapArray)(obj.limitsPerResource, ResourceLimitContainer_1.default);
|
|
37
37
|
_this.signupSource = (0, Mapper_1.map)(obj.signupSource);
|
|
38
38
|
_this.mfaRequired = (0, Mapper_1.map)(obj.mfaRequired);
|
|
39
|
+
_this.ownerUserId = (0, Mapper_1.map)(obj.ownerUserId);
|
|
39
40
|
return _this;
|
|
40
41
|
}
|
|
41
42
|
return Organization;
|