@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
|
@@ -74,7 +74,7 @@ function queryParams(params) {
|
|
|
74
74
|
var addSeperator = false;
|
|
75
75
|
for (var _i = 0, _a = Object.keys(params); _i < _a.length; _i++) {
|
|
76
76
|
var key = _a[_i];
|
|
77
|
-
if (params[key] && typeof params[key] !== 'function') {
|
|
77
|
+
if (params[key] != null && typeof params[key] !== 'function') {
|
|
78
78
|
queryParameterString += (addSeperator ? '&' : '') + encodeURIComponent(key) + '=' + encodeURIComponent(prepareUrlParameterValue(params[key]));
|
|
79
79
|
addSeperator = true;
|
|
80
80
|
}
|
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.164.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -22,7 +22,7 @@ export default class DashApi extends BaseAPI {
|
|
|
22
22
|
constructor(configuration: Configuration);
|
|
23
23
|
/**
|
|
24
24
|
* @summary Create Custom DASH Manifest
|
|
25
|
-
* @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
|
|
25
|
+
* @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
|
|
26
26
|
* @throws {BitmovinError}
|
|
27
27
|
* @memberof DashApi
|
|
28
28
|
*/
|
|
@@ -43,7 +43,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* @summary Create Custom DASH Manifest
|
|
46
|
-
* @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
|
|
46
|
+
* @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
|
|
47
47
|
* @throws {BitmovinError}
|
|
48
48
|
* @memberof DashApi
|
|
49
49
|
*/
|
|
@@ -11,7 +11,7 @@ export default class DefaultApi extends BaseAPI {
|
|
|
11
11
|
constructor(configuration: Configuration);
|
|
12
12
|
/**
|
|
13
13
|
* @summary Create Default DASH Manifest
|
|
14
|
-
* @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
|
|
14
|
+
* @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
|
|
15
15
|
* @throws {BitmovinError}
|
|
16
16
|
* @memberof DefaultApi
|
|
17
17
|
*/
|
|
@@ -31,7 +31,7 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @summary Create Default DASH Manifest
|
|
34
|
-
* @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
|
|
34
|
+
* @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
|
|
35
35
|
* @throws {BitmovinError}
|
|
36
36
|
* @memberof DefaultApi
|
|
37
37
|
*/
|
|
@@ -24,7 +24,7 @@ export default class HlsApi extends BaseAPI {
|
|
|
24
24
|
constructor(configuration: Configuration);
|
|
25
25
|
/**
|
|
26
26
|
* @summary Create Custom HLS Manifest
|
|
27
|
-
* @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
|
|
27
|
+
* @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
|
|
28
28
|
* @throws {BitmovinError}
|
|
29
29
|
* @memberof HlsApi
|
|
30
30
|
*/
|
|
@@ -45,7 +45,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
47
|
* @summary Create Custom HLS Manifest
|
|
48
|
-
* @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
|
|
48
|
+
* @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
|
|
49
49
|
* @throws {BitmovinError}
|
|
50
50
|
* @memberof HlsApi
|
|
51
51
|
*/
|
|
@@ -11,7 +11,7 @@ export default class DefaultApi extends BaseAPI {
|
|
|
11
11
|
constructor(configuration: Configuration);
|
|
12
12
|
/**
|
|
13
13
|
* @summary Create Default HLS Manifest
|
|
14
|
-
* @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
|
|
14
|
+
* @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
|
|
15
15
|
* @throws {BitmovinError}
|
|
16
16
|
* @memberof DefaultApi
|
|
17
17
|
*/
|
|
@@ -31,7 +31,7 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @summary Create Default HLS Manifest
|
|
34
|
-
* @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
|
|
34
|
+
* @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
|
|
35
35
|
* @throws {BitmovinError}
|
|
36
36
|
* @memberof DefaultApi
|
|
37
37
|
*/
|
|
@@ -24,7 +24,7 @@ export default class SmoothApi extends BaseAPI {
|
|
|
24
24
|
constructor(configuration: Configuration);
|
|
25
25
|
/**
|
|
26
26
|
* @summary Create Smooth Streaming Manifest
|
|
27
|
-
* @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
|
|
27
|
+
* @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
|
|
28
28
|
* @throws {BitmovinError}
|
|
29
29
|
* @memberof SmoothApi
|
|
30
30
|
*/
|
|
@@ -45,7 +45,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
47
|
* @summary Create Smooth Streaming Manifest
|
|
48
|
-
* @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
|
|
48
|
+
* @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
|
|
49
49
|
* @throws {BitmovinError}
|
|
50
50
|
* @memberof SmoothApi
|
|
51
51
|
*/
|
|
@@ -11,7 +11,7 @@ export default class DefaultApi extends BaseAPI {
|
|
|
11
11
|
constructor(configuration: Configuration);
|
|
12
12
|
/**
|
|
13
13
|
* @summary Create Default Smooth Streaming Manifest
|
|
14
|
-
* @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
|
|
14
|
+
* @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
|
|
15
15
|
* @throws {BitmovinError}
|
|
16
16
|
* @memberof DefaultApi
|
|
17
17
|
*/
|
|
@@ -31,7 +31,7 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @summary Create Default Smooth Streaming Manifest
|
|
34
|
-
* @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
|
|
34
|
+
* @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
|
|
35
35
|
* @throws {BitmovinError}
|
|
36
36
|
* @memberof DefaultApi
|
|
37
37
|
*/
|
|
@@ -71,7 +71,7 @@ export declare class StartEncodingRequest {
|
|
|
71
71
|
*/
|
|
72
72
|
vodSmoothManifests?: ManifestResource[];
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Major version of the manifest generator to be used for manifests referenced in this request (by properties vodDashManifests, vodHlsManifests, vodSmoothManifests, previewDashManifests, previewHlsManifests). `V2` is available for encoder versions 2.70.0 and above and is the recommended option. The default value depends on the sign-up date of your organization. See [documentation](https://developer.bitmovin.com/encoding/docs/manifest-generator-v2) page for a detailed explanation.
|
|
75
75
|
* @type {ManifestGenerator}
|
|
76
76
|
* @memberof StartEncodingRequest
|
|
77
77
|
*/
|
|
@@ -41,7 +41,7 @@ export declare class StartLiveEncodingRequest {
|
|
|
41
41
|
*/
|
|
42
42
|
reuploadSettings?: ReuploadSettings;
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Major version of the manifest generator to be used for manifests referenced in this request (by properties dashManifests, dashManifests). `V2` is available for encoder versions 2.70.0 and above and is the recommended option. The default value depends on the sign-up date of your organization. See [documentation](https://developer.bitmovin.com/encoding/docs/manifest-generator-v2) page for a detailed explanation.
|
|
45
45
|
* @type {ManifestGenerator}
|
|
46
46
|
* @memberof StartLiveEncodingRequest
|
|
47
47
|
*/
|
|
@@ -5,7 +5,7 @@ import ManifestGenerator from './ManifestGenerator';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare class StartManifestRequest {
|
|
7
7
|
/**
|
|
8
|
-
* Major version of the manifest generator to be used. `V2` is the recommended option and requires the following minimum encoder versions: 2.121.0 for DASH, 2.111.0 for HLS, 2.108.0 for SMOOTH. The default value depends on the sign-up date of your organization.
|
|
8
|
+
* Major version of the manifest generator to be used. `V2` is the recommended option and requires the following minimum encoder versions: 2.121.0 for DASH, 2.111.0 for HLS, 2.108.0 for SMOOTH. The default value depends on the sign-up date of your organization. See [documentation](https://developer.bitmovin.com/encoding/docs/manifest-generator-v2) page for a detailed explanation.
|
|
9
9
|
* @type {ManifestGenerator}
|
|
10
10
|
* @memberof StartManifestRequest
|
|
11
11
|
*/
|