@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 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.1
34
+ npm install @bitmovin/api-sdk@1.180.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.1',
6051
+ 'X-Api-Client-Version': '1.180.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
@@ -53448,6 +53456,7 @@ var AccountInformation = /** @class */ (function (_super) {
53448
53456
  _this.verified = (0, Mapper_1.map)(obj.verified);
53449
53457
  _this.marketplace = (0, Mapper_1.map)(obj.marketplace);
53450
53458
  _this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
53459
+ _this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
53451
53460
  return _this;
53452
53461
  }
53453
53462
  return AccountInformation;
@@ -62168,6 +62177,10 @@ var CloudRegion;
62168
62177
  CloudRegion["AZURE_US_WEST"] = "AZURE_US_WEST";
62169
62178
  CloudRegion["AZURE_US_WEST2"] = "AZURE_US_WEST2";
62170
62179
  CloudRegion["AZURE_US_SOUTH_CENTRAL"] = "AZURE_US_SOUTH_CENTRAL";
62180
+ CloudRegion["AKAMAI_BR_GRU"] = "AKAMAI_BR_GRU";
62181
+ CloudRegion["AKAMAI_FR_PAR"] = "AKAMAI_FR_PAR";
62182
+ CloudRegion["AKAMAI_JP_OSA"] = "AKAMAI_JP_OSA";
62183
+ CloudRegion["AKAMAI_US_SEA"] = "AKAMAI_US_SEA";
62171
62184
  CloudRegion["NORTH_AMERICA"] = "NORTH_AMERICA";
62172
62185
  CloudRegion["SOUTH_AMERICA"] = "SOUTH_AMERICA";
62173
62186
  CloudRegion["EUROPE"] = "EUROPE";
@@ -76803,6 +76816,7 @@ var ProfileH264;
76803
76816
  ProfileH264["BASELINE"] = "BASELINE";
76804
76817
  ProfileH264["MAIN"] = "MAIN";
76805
76818
  ProfileH264["HIGH"] = "HIGH";
76819
+ ProfileH264["HIGH422"] = "HIGH422";
76806
76820
  })(ProfileH264 || (exports.ProfileH264 = ProfileH264 = {}));
76807
76821
  exports["default"] = ProfileH264;
76808
76822
 
@@ -83596,7 +83610,6 @@ var TenantWithGroups = /** @class */ (function () {
83596
83610
  }
83597
83611
  this.id = (0, Mapper_1.map)(obj.id);
83598
83612
  this.email = (0, Mapper_1.map)(obj.email);
83599
- this.invitationStatus = (0, Mapper_1.map)(obj.invitationStatus);
83600
83613
  this.groups = (0, Mapper_1.mapArray)(obj.groups, TenantGroupDetail_1.default);
83601
83614
  }
83602
83615
  return TenantWithGroups;