@bitmovin/api-sdk 1.181.0 → 1.182.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/account/organizations/OrganizationsApi.d.ts +2 -0
- package/dist/account/organizations/OrganizationsApi.js +2 -0
- package/dist/account/organizations/invitations/InvitationsApi.d.ts +20 -0
- package/dist/account/organizations/invitations/InvitationsApi.js +48 -0
- package/dist/bitmovin-api-sdk.browser.js +104 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/configurations/CodecConfigurationListQueryParams.d.ts +11 -0
- package/dist/encoding/configurations/CodecConfigurationListQueryParams.js +8 -0
- package/dist/models/OrganizationPendingInvitation.d.ts +32 -0
- package/dist/models/OrganizationPendingInvitation.js +22 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.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.182.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -17,6 +17,12 @@ export interface CodecConfigurationListQueryParams {
|
|
|
17
17
|
* @memberof CodecConfigurationListQueryParams
|
|
18
18
|
*/
|
|
19
19
|
name?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Order list result according to a filter resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof CodecConfigurationListQueryParams
|
|
24
|
+
*/
|
|
25
|
+
sort?: string | undefined;
|
|
20
26
|
}
|
|
21
27
|
export declare class CodecConfigurationListQueryParamsBuilder {
|
|
22
28
|
private internalParams;
|
|
@@ -35,5 +41,10 @@ export declare class CodecConfigurationListQueryParamsBuilder {
|
|
|
35
41
|
* @param name Filter configuration by name
|
|
36
42
|
*/
|
|
37
43
|
name(name: string): this;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @param sort Order list result according to a filter resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
47
|
+
*/
|
|
48
|
+
sort(sort: string): this;
|
|
38
49
|
buildQueryParams(): CodecConfigurationListQueryParams;
|
|
39
50
|
}
|
|
@@ -29,6 +29,14 @@ var CodecConfigurationListQueryParamsBuilder = /** @class */ (function () {
|
|
|
29
29
|
this.internalParams.name = name;
|
|
30
30
|
return this;
|
|
31
31
|
};
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @param sort Order list result according to a filter resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
35
|
+
*/
|
|
36
|
+
CodecConfigurationListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
37
|
+
this.internalParams.sort = sort;
|
|
38
|
+
return this;
|
|
39
|
+
};
|
|
32
40
|
CodecConfigurationListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
33
41
|
return this.internalParams;
|
|
34
42
|
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class OrganizationPendingInvitation
|
|
4
|
+
*/
|
|
5
|
+
export declare class OrganizationPendingInvitation {
|
|
6
|
+
/**
|
|
7
|
+
* Id of Tenant (required)
|
|
8
|
+
* @type {string}
|
|
9
|
+
* @memberof OrganizationPendingInvitation
|
|
10
|
+
*/
|
|
11
|
+
id?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Email of Tenant (required)
|
|
14
|
+
* @type {string}
|
|
15
|
+
* @memberof OrganizationPendingInvitation
|
|
16
|
+
*/
|
|
17
|
+
email?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Id of group (required)
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OrganizationPendingInvitation
|
|
22
|
+
*/
|
|
23
|
+
groupId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Name of group (required)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrganizationPendingInvitation
|
|
28
|
+
*/
|
|
29
|
+
groupName?: string;
|
|
30
|
+
constructor(obj?: Partial<OrganizationPendingInvitation>);
|
|
31
|
+
}
|
|
32
|
+
export default OrganizationPendingInvitation;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OrganizationPendingInvitation = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class OrganizationPendingInvitation
|
|
8
|
+
*/
|
|
9
|
+
var OrganizationPendingInvitation = /** @class */ (function () {
|
|
10
|
+
function OrganizationPendingInvitation(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
15
|
+
this.email = (0, Mapper_1.map)(obj.email);
|
|
16
|
+
this.groupId = (0, Mapper_1.map)(obj.groupId);
|
|
17
|
+
this.groupName = (0, Mapper_1.map)(obj.groupName);
|
|
18
|
+
}
|
|
19
|
+
return OrganizationPendingInvitation;
|
|
20
|
+
}());
|
|
21
|
+
exports.OrganizationPendingInvitation = OrganizationPendingInvitation;
|
|
22
|
+
exports.default = OrganizationPendingInvitation;
|
package/dist/models/index.d.ts
CHANGED
|
@@ -519,6 +519,7 @@ export * from './OpusAudioConfiguration';
|
|
|
519
519
|
export * from './OpusChannelLayout';
|
|
520
520
|
export * from './OrConjunction';
|
|
521
521
|
export * from './Organization';
|
|
522
|
+
export * from './OrganizationPendingInvitation';
|
|
522
523
|
export * from './OrganizationType';
|
|
523
524
|
export * from './OttLoudnessMode';
|
|
524
525
|
export * from './Output';
|
package/dist/models/index.js
CHANGED
|
@@ -535,6 +535,7 @@ __exportStar(require("./OpusAudioConfiguration"), exports);
|
|
|
535
535
|
__exportStar(require("./OpusChannelLayout"), exports);
|
|
536
536
|
__exportStar(require("./OrConjunction"), exports);
|
|
537
537
|
__exportStar(require("./Organization"), exports);
|
|
538
|
+
__exportStar(require("./OrganizationPendingInvitation"), exports);
|
|
538
539
|
__exportStar(require("./OrganizationType"), exports);
|
|
539
540
|
__exportStar(require("./OttLoudnessMode"), exports);
|
|
540
541
|
__exportStar(require("./Output"), exports);
|