@bitmovin/api-sdk 1.163.0 → 1.164.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.163.0
34
+ npm install @bitmovin/api-sdk@1.164.0
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -5821,7 +5821,7 @@ function queryParams(params) {
5821
5821
  var addSeperator = false;
5822
5822
  for (var _i = 0, _a = Object.keys(params); _i < _a.length; _i++) {
5823
5823
  var key = _a[_i];
5824
- if (params[key] && typeof params[key] !== 'function') {
5824
+ if (params[key] != null && typeof params[key] !== 'function') {
5825
5825
  queryParameterString += (addSeperator ? '&' : '') + encodeURIComponent(key) + '=' + encodeURIComponent(prepareUrlParameterValue(params[key]));
5826
5826
  addSeperator = true;
5827
5827
  }
@@ -5987,7 +5987,7 @@ var HeaderHandler = /** @class */ (function (_super) {
5987
5987
  var headers = {
5988
5988
  'X-Api-Key': apiKey,
5989
5989
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
5990
- 'X-Api-Client-Version': '1.163.0',
5990
+ 'X-Api-Client-Version': '1.164.0',
5991
5991
  'Content-Type': 'application/json'
5992
5992
  };
5993
5993
  if (tenantOrgId) {
@@ -40232,7 +40232,7 @@ var DashApi = /** @class */ (function (_super) {
40232
40232
  }
40233
40233
  /**
40234
40234
  * @summary Create Custom DASH Manifest
40235
- * @param {DashManifest} dashManifest A Custom DASH Manifest gives you full control over its contents. Add Periods, Adaptation Sets, Representations, Content Protections or Custom XML Elements via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
40235
+ * @param {DashManifest} dashManifest A Custom DASH Manifest gives you full control over its contents. Add Periods, Adaptation Sets, Representations, Content Protections or Custom XML Elements via the respective endpoints. If you need a simpler solution, create a Default Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
40236
40236
  * @throws {BitmovinError}
40237
40237
  * @memberof DashApi
40238
40238
  */
@@ -40498,7 +40498,7 @@ var DefaultApi = /** @class */ (function (_super) {
40498
40498
  }
40499
40499
  /**
40500
40500
  * @summary Create Default DASH Manifest
40501
- * @param {DashManifestDefault} dashManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
40501
+ * @param {DashManifestDefault} dashManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
40502
40502
  * @throws {BitmovinError}
40503
40503
  * @memberof DefaultApi
40504
40504
  */
@@ -44807,7 +44807,7 @@ var HlsApi = /** @class */ (function (_super) {
44807
44807
  }
44808
44808
  /**
44809
44809
  * @summary Create Custom HLS Manifest
44810
- * @param {HlsManifest} hlsManifest A Custom HLS Manifest gives you full control over its contents. Add Variant Streams and Media elements via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
44810
+ * @param {HlsManifest} hlsManifest A Custom HLS Manifest gives you full control over its contents. Add Variant Streams and Media elements via the respective endpoints. If you need a simpler solution, create a Default Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
44811
44811
  * @throws {BitmovinError}
44812
44812
  * @memberof HlsApi
44813
44813
  */
@@ -45073,7 +45073,7 @@ var DefaultApi = /** @class */ (function (_super) {
45073
45073
  }
45074
45074
  /**
45075
45075
  * @summary Create Default HLS Manifest
45076
- * @param {HlsManifestDefault} hlsManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
45076
+ * @param {HlsManifestDefault} hlsManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
45077
45077
  * @throws {BitmovinError}
45078
45078
  * @memberof DefaultApi
45079
45079
  */
@@ -46704,7 +46704,7 @@ var SmoothApi = /** @class */ (function (_super) {
46704
46704
  }
46705
46705
  /**
46706
46706
  * @summary Create Smooth Streaming Manifest
46707
- * @param {SmoothStreamingManifest} smoothStreamingManifest A Custom Smooth Streaming Manifest gives you full control over its contents. Add Representations and Content Protections via the respective endpoints. If you need a simpler solution, create a Default Manifest instead. See TODO: link
46707
+ * @param {SmoothStreamingManifest} smoothStreamingManifest A Custom Smooth Streaming Manifest gives you full control over its contents. Add Representations and Content Protections via the respective endpoints. If you need a simpler solution, create a Default Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
46708
46708
  * @throws {BitmovinError}
46709
46709
  * @memberof SmoothApi
46710
46710
  */
@@ -47127,7 +47127,7 @@ var DefaultApi = /** @class */ (function (_super) {
47127
47127
  }
47128
47128
  /**
47129
47129
  * @summary Create Default Smooth Streaming Manifest
47130
- * @param {SmoothManifestDefault} smoothManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest instead. See TODO: link
47130
+ * @param {SmoothManifestDefault} smoothManifestDefault A Default Manifest is the easiest way to create a manifest file. Its contents will be configured automatically, depending on what output your encoding creates (muxings, thumbnails, sprites, subtitles, DRM information). If you need more control, create a Custom Manifest resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
47131
47131
  * @throws {BitmovinError}
47132
47132
  * @memberof DefaultApi
47133
47133
  */