@bitmovin/api-sdk 1.213.0 → 1.214.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.213.0
34
+ npm install @bitmovin/api-sdk@1.214.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -39,7 +39,7 @@ npm install @bitmovin/api-sdk@1.213.0
39
39
  ### Node
40
40
 
41
41
  Using ES6 `import`
42
- ```es6
42
+ ```js
43
43
  import BitmovinApi from '@bitmovin/api-sdk';
44
44
 
45
45
  const bitmovinApi = new BitmovinApi({apiKey: '<YOUR_API_KEY>'});
@@ -6029,7 +6029,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6029
6029
  var headers = {
6030
6030
  'X-Api-Key': apiKey,
6031
6031
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6032
- 'X-Api-Client-Version': '1.213.0',
6032
+ 'X-Api-Client-Version': '1.214.0',
6033
6033
  'Content-Type': 'application/json'
6034
6034
  };
6035
6035
  if (tenantOrgId) {
@@ -62964,6 +62964,7 @@ var CdnOutput = /** @class */ (function (_super) {
62964
62964
  return _this;
62965
62965
  }
62966
62966
  _this.domainName = (0, Mapper_1.map)(obj.domainName);
62967
+ _this.cdnProvider = (0, Mapper_1.map)(obj.cdnProvider);
62967
62968
  return _this;
62968
62969
  }
62969
62970
  return CdnOutput;
@@ -62972,6 +62973,30 @@ exports.CdnOutput = CdnOutput;
62972
62973
  exports["default"] = CdnOutput;
62973
62974
 
62974
62975
 
62976
+ /***/ }),
62977
+
62978
+ /***/ "./models/CdnProvider.ts":
62979
+ /*!*******************************!*\
62980
+ !*** ./models/CdnProvider.ts ***!
62981
+ \*******************************/
62982
+ /***/ ((__unused_webpack_module, exports) => {
62983
+
62984
+ "use strict";
62985
+
62986
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
62987
+ exports.CdnProvider = void 0;
62988
+ /**
62989
+ * @export
62990
+ * @enum {string}
62991
+ */
62992
+ var CdnProvider;
62993
+ (function (CdnProvider) {
62994
+ CdnProvider["AKAMAI"] = "AKAMAI";
62995
+ CdnProvider["AWS"] = "AWS";
62996
+ })(CdnProvider || (exports.CdnProvider = CdnProvider = {}));
62997
+ exports["default"] = CdnProvider;
62998
+
62999
+
62975
63000
  /***/ }),
62976
63001
 
62977
63002
  /***/ "./models/CdnUsage.ts":
@@ -71040,6 +71065,7 @@ exports.GceAccount = void 0;
71040
71065
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
71041
71066
  var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
71042
71067
  /**
71068
+ * GCE Cloud Connect Account. Configure either by passing a single service account credentials JSON string or by passing the service account email, private key and project ID individually.
71043
71069
  * @export
71044
71070
  * @class GceAccount
71045
71071
  */
@@ -71050,6 +71076,7 @@ var GceAccount = /** @class */ (function (_super) {
71050
71076
  if (!obj) {
71051
71077
  return _this;
71052
71078
  }
71079
+ _this.serviceAccountCredentials = (0, Mapper_1.map)(obj.serviceAccountCredentials);
71053
71080
  _this.serviceAccountEmail = (0, Mapper_1.map)(obj.serviceAccountEmail);
71054
71081
  _this.privateKey = (0, Mapper_1.map)(obj.privateKey);
71055
71082
  _this.projectId = (0, Mapper_1.map)(obj.projectId);
@@ -89467,6 +89494,7 @@ __exportStar(__webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInS
89467
89494
  __exportStar(__webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts"), exports);
89468
89495
  __exportStar(__webpack_require__(/*! ./CaptionCharacterEncoding */ "./models/CaptionCharacterEncoding.ts"), exports);
89469
89496
  __exportStar(__webpack_require__(/*! ./CdnOutput */ "./models/CdnOutput.ts"), exports);
89497
+ __exportStar(__webpack_require__(/*! ./CdnProvider */ "./models/CdnProvider.ts"), exports);
89470
89498
  __exportStar(__webpack_require__(/*! ./CdnUsage */ "./models/CdnUsage.ts"), exports);
89471
89499
  __exportStar(__webpack_require__(/*! ./CdnUsageStatistics */ "./models/CdnUsageStatistics.ts"), exports);
89472
89500
  __exportStar(__webpack_require__(/*! ./Cea608708SubtitleConfiguration */ "./models/Cea608708SubtitleConfiguration.ts"), exports);