@bitmovin/api-sdk 1.178.1 → 1.179.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.
@@ -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.178.1',
243
+ 'X-Api-Client-Version': '1.179.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
@@ -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";
@@ -5,6 +5,7 @@
5
5
  export declare enum ProfileH264 {
6
6
  BASELINE = "BASELINE",
7
7
  MAIN = "MAIN",
8
- HIGH = "HIGH"
8
+ HIGH = "HIGH",
9
+ HIGH422 = "HIGH422"
9
10
  }
10
11
  export default ProfileH264;
@@ -10,5 +10,6 @@ var ProfileH264;
10
10
  ProfileH264["BASELINE"] = "BASELINE";
11
11
  ProfileH264["MAIN"] = "MAIN";
12
12
  ProfileH264["HIGH"] = "HIGH";
13
+ ProfileH264["HIGH422"] = "HIGH422";
13
14
  })(ProfileH264 || (exports.ProfileH264 = ProfileH264 = {}));
14
15
  exports.default = ProfileH264;
@@ -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
- * @type {InvitationStatus}
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.178.1",
3
+ "version": "1.179.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [