@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 +1 -1
- package/dist/bitmovin-api-sdk.browser.js +8 -8
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +2 -2
- package/dist/encoding/manifests/dash/DashApi.d.ts +1 -1
- package/dist/encoding/manifests/dash/DashApi.js +1 -1
- package/dist/encoding/manifests/dash/default/DefaultApi.d.ts +1 -1
- package/dist/encoding/manifests/dash/default/DefaultApi.js +1 -1
- package/dist/encoding/manifests/hls/HlsApi.d.ts +1 -1
- package/dist/encoding/manifests/hls/HlsApi.js +1 -1
- package/dist/encoding/manifests/hls/default/DefaultApi.d.ts +1 -1
- package/dist/encoding/manifests/hls/default/DefaultApi.js +1 -1
- package/dist/encoding/manifests/smooth/SmoothApi.d.ts +1 -1
- package/dist/encoding/manifests/smooth/SmoothApi.js +1 -1
- package/dist/encoding/manifests/smooth/default/DefaultApi.d.ts +1 -1
- package/dist/encoding/manifests/smooth/default/DefaultApi.js +1 -1
- package/dist/models/StartEncodingRequest.d.ts +1 -1
- package/dist/models/StartLiveEncodingRequest.d.ts +1 -1
- package/dist/models/StartManifestRequest.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
*/
|