@bitmovin/api-sdk 1.178.0 → 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.
package/README.md CHANGED
@@ -31,7 +31,7 @@ If you have any questions regarding the SDK, provided examples or our services,
31
31
  ## Installation
32
32
 
33
33
  ``` bash
34
- npm install @bitmovin/api-sdk@1.178.0
34
+ npm install @bitmovin/api-sdk@1.179.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -6048,7 +6048,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6048
6048
  var headers = {
6049
6049
  'X-Api-Key': apiKey,
6050
6050
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6051
- 'X-Api-Client-Version': '1.178.0',
6051
+ 'X-Api-Client-Version': '1.179.0',
6052
6052
  'Content-Type': 'application/json'
6053
6053
  };
6054
6054
  if (tenantOrgId) {
@@ -47597,6 +47597,14 @@ var OutputListQueryParamsBuilder = /** @class */ (function () {
47597
47597
  this.internalParams.name = name;
47598
47598
  return this;
47599
47599
  };
47600
+ /**
47601
+ *
47602
+ * @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`
47603
+ */
47604
+ OutputListQueryParamsBuilder.prototype.sort = function (sort) {
47605
+ this.internalParams.sort = sort;
47606
+ return this;
47607
+ };
47600
47608
  /**
47601
47609
  *
47602
47610
  * @param type Filter outputs by type
@@ -62168,6 +62176,10 @@ var CloudRegion;
62168
62176
  CloudRegion["AZURE_US_WEST"] = "AZURE_US_WEST";
62169
62177
  CloudRegion["AZURE_US_WEST2"] = "AZURE_US_WEST2";
62170
62178
  CloudRegion["AZURE_US_SOUTH_CENTRAL"] = "AZURE_US_SOUTH_CENTRAL";
62179
+ CloudRegion["AKAMAI_BR_GRU"] = "AKAMAI_BR_GRU";
62180
+ CloudRegion["AKAMAI_FR_PAR"] = "AKAMAI_FR_PAR";
62181
+ CloudRegion["AKAMAI_JP_OSA"] = "AKAMAI_JP_OSA";
62182
+ CloudRegion["AKAMAI_US_SEA"] = "AKAMAI_US_SEA";
62171
62183
  CloudRegion["NORTH_AMERICA"] = "NORTH_AMERICA";
62172
62184
  CloudRegion["SOUTH_AMERICA"] = "SOUTH_AMERICA";
62173
62185
  CloudRegion["EUROPE"] = "EUROPE";
@@ -76803,6 +76815,7 @@ var ProfileH264;
76803
76815
  ProfileH264["BASELINE"] = "BASELINE";
76804
76816
  ProfileH264["MAIN"] = "MAIN";
76805
76817
  ProfileH264["HIGH"] = "HIGH";
76818
+ ProfileH264["HIGH422"] = "HIGH422";
76806
76819
  })(ProfileH264 || (exports.ProfileH264 = ProfileH264 = {}));
76807
76820
  exports["default"] = ProfileH264;
76808
76821
 
@@ -83596,7 +83609,6 @@ var TenantWithGroups = /** @class */ (function () {
83596
83609
  }
83597
83610
  this.id = (0, Mapper_1.map)(obj.id);
83598
83611
  this.email = (0, Mapper_1.map)(obj.email);
83599
- this.invitationStatus = (0, Mapper_1.map)(obj.invitationStatus);
83600
83612
  this.groups = (0, Mapper_1.mapArray)(obj.groups, TenantGroupDetail_1.default);
83601
83613
  }
83602
83614
  return TenantWithGroups;