@bitmovin/api-sdk 1.178.1 → 1.180.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 +15 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/outputs/OutputListQueryParams.d.ts +11 -0
- package/dist/encoding/outputs/OutputListQueryParams.js +8 -0
- package/dist/models/AccountInformation.d.ts +5 -0
- package/dist/models/AccountInformation.js +1 -0
- package/dist/models/CloudRegion.d.ts +4 -0
- package/dist/models/CloudRegion.js +4 -0
- package/dist/models/ProfileH264.d.ts +2 -1
- package/dist/models/ProfileH264.js +1 -0
- package/dist/models/TenantWithGroups.d.ts +3 -9
- package/dist/models/TenantWithGroups.js +0 -1
- 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.180.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -18,6 +18,12 @@ export interface OutputListQueryParams {
|
|
|
18
18
|
* @memberof OutputListQueryParams
|
|
19
19
|
*/
|
|
20
20
|
name?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* Order list result according to a output resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof OutputListQueryParams
|
|
25
|
+
*/
|
|
26
|
+
sort?: string | undefined;
|
|
21
27
|
/**
|
|
22
28
|
* Filter outputs by type
|
|
23
29
|
* @type {OutputType}
|
|
@@ -42,6 +48,11 @@ export declare class OutputListQueryParamsBuilder {
|
|
|
42
48
|
* @param name Filter outputs by name
|
|
43
49
|
*/
|
|
44
50
|
name(name: string): this;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @param sort Order list result according to a output resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
54
|
+
*/
|
|
55
|
+
sort(sort: string): this;
|
|
45
56
|
/**
|
|
46
57
|
*
|
|
47
58
|
* @param type Filter outputs by type
|
|
@@ -29,6 +29,14 @@ var OutputListQueryParamsBuilder = /** @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 output resource attribute. The fields that can be used for sorting are: + `id` + `createdAt` + `modifiedAt` + `type` + `name`
|
|
35
|
+
*/
|
|
36
|
+
OutputListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
37
|
+
this.internalParams.sort = sort;
|
|
38
|
+
return this;
|
|
39
|
+
};
|
|
32
40
|
/**
|
|
33
41
|
*
|
|
34
42
|
* @param type Filter outputs by type
|
|
@@ -57,6 +57,11 @@ export declare class AccountInformation extends BitmovinResource {
|
|
|
57
57
|
* @memberof AccountInformation
|
|
58
58
|
*/
|
|
59
59
|
mfaEnabled?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof AccountInformation
|
|
63
|
+
*/
|
|
64
|
+
intercomIdVerification?: string;
|
|
60
65
|
constructor(obj?: Partial<AccountInformation>);
|
|
61
66
|
}
|
|
62
67
|
export default AccountInformation;
|
|
@@ -39,6 +39,7 @@ var AccountInformation = /** @class */ (function (_super) {
|
|
|
39
39
|
_this.verified = (0, Mapper_1.map)(obj.verified);
|
|
40
40
|
_this.marketplace = (0, Mapper_1.map)(obj.marketplace);
|
|
41
41
|
_this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
|
|
42
|
+
_this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
|
|
42
43
|
return _this;
|
|
43
44
|
}
|
|
44
45
|
return AccountInformation;
|
|
@@ -59,6 +59,10 @@ export declare enum CloudRegion {
|
|
|
59
59
|
AZURE_US_WEST = "AZURE_US_WEST",
|
|
60
60
|
AZURE_US_WEST2 = "AZURE_US_WEST2",
|
|
61
61
|
AZURE_US_SOUTH_CENTRAL = "AZURE_US_SOUTH_CENTRAL",
|
|
62
|
+
AKAMAI_BR_GRU = "AKAMAI_BR_GRU",
|
|
63
|
+
AKAMAI_FR_PAR = "AKAMAI_FR_PAR",
|
|
64
|
+
AKAMAI_JP_OSA = "AKAMAI_JP_OSA",
|
|
65
|
+
AKAMAI_US_SEA = "AKAMAI_US_SEA",
|
|
62
66
|
NORTH_AMERICA = "NORTH_AMERICA",
|
|
63
67
|
SOUTH_AMERICA = "SOUTH_AMERICA",
|
|
64
68
|
EUROPE = "EUROPE",
|
|
@@ -63,6 +63,10 @@ var CloudRegion;
|
|
|
63
63
|
CloudRegion["AZURE_US_WEST"] = "AZURE_US_WEST";
|
|
64
64
|
CloudRegion["AZURE_US_WEST2"] = "AZURE_US_WEST2";
|
|
65
65
|
CloudRegion["AZURE_US_SOUTH_CENTRAL"] = "AZURE_US_SOUTH_CENTRAL";
|
|
66
|
+
CloudRegion["AKAMAI_BR_GRU"] = "AKAMAI_BR_GRU";
|
|
67
|
+
CloudRegion["AKAMAI_FR_PAR"] = "AKAMAI_FR_PAR";
|
|
68
|
+
CloudRegion["AKAMAI_JP_OSA"] = "AKAMAI_JP_OSA";
|
|
69
|
+
CloudRegion["AKAMAI_US_SEA"] = "AKAMAI_US_SEA";
|
|
66
70
|
CloudRegion["NORTH_AMERICA"] = "NORTH_AMERICA";
|
|
67
71
|
CloudRegion["SOUTH_AMERICA"] = "SOUTH_AMERICA";
|
|
68
72
|
CloudRegion["EUROPE"] = "EUROPE";
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import InvitationStatus from './InvitationStatus';
|
|
2
1
|
import TenantGroupDetail from './TenantGroupDetail';
|
|
3
2
|
/**
|
|
4
3
|
* @export
|
|
@@ -6,24 +5,19 @@ import TenantGroupDetail from './TenantGroupDetail';
|
|
|
6
5
|
*/
|
|
7
6
|
export declare class TenantWithGroups {
|
|
8
7
|
/**
|
|
9
|
-
* Id of Tenant
|
|
8
|
+
* Id of Tenant (required)
|
|
10
9
|
* @type {string}
|
|
11
10
|
* @memberof TenantWithGroups
|
|
12
11
|
*/
|
|
13
12
|
id?: string;
|
|
14
13
|
/**
|
|
15
|
-
* Email of Tenant
|
|
14
|
+
* Email of Tenant (required)
|
|
16
15
|
* @type {string}
|
|
17
16
|
* @memberof TenantWithGroups
|
|
18
17
|
*/
|
|
19
18
|
email?: string;
|
|
20
19
|
/**
|
|
21
|
-
*
|
|
22
|
-
* @memberof TenantWithGroups
|
|
23
|
-
*/
|
|
24
|
-
invitationStatus?: InvitationStatus;
|
|
25
|
-
/**
|
|
26
|
-
* List of all groups of Tenant
|
|
20
|
+
* List of all groups of Tenant (required)
|
|
27
21
|
* @type {TenantGroupDetail[]}
|
|
28
22
|
* @memberof TenantWithGroups
|
|
29
23
|
*/
|
|
@@ -14,7 +14,6 @@ var TenantWithGroups = /** @class */ (function () {
|
|
|
14
14
|
}
|
|
15
15
|
this.id = (0, Mapper_1.map)(obj.id);
|
|
16
16
|
this.email = (0, Mapper_1.map)(obj.email);
|
|
17
|
-
this.invitationStatus = (0, Mapper_1.map)(obj.invitationStatus);
|
|
18
17
|
this.groups = (0, Mapper_1.mapArray)(obj.groups, TenantGroupDetail_1.default);
|
|
19
18
|
}
|
|
20
19
|
return TenantWithGroups;
|