@bitmovin/api-sdk 1.165.0 → 1.166.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 +59 -29
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/configurations/audio/ac3/Ac3Api.d.ts +4 -4
- package/dist/encoding/configurations/audio/ac3/Ac3Api.js +4 -4
- package/dist/encoding/configurations/audio/eac3/Eac3Api.d.ts +4 -4
- package/dist/encoding/configurations/audio/eac3/Eac3Api.js +4 -4
- package/dist/encoding/encodings/live/insertableContent/InsertableContentApi.d.ts +2 -2
- package/dist/encoding/encodings/live/insertableContent/InsertableContentApi.js +2 -2
- package/dist/encoding/encodings/live/insertableContent/schedule/ScheduleApi.d.ts +1 -1
- package/dist/encoding/encodings/live/insertableContent/schedule/ScheduleApi.js +1 -1
- package/dist/encoding/encodings/live/insertableContent/scheduled/ScheduledApi.d.ts +1 -1
- package/dist/encoding/encodings/live/insertableContent/scheduled/ScheduledApi.js +1 -1
- package/dist/encoding/encodings/streams/qc/psnr/PsnrApi.d.ts +1 -1
- package/dist/encoding/encodings/streams/qc/psnr/PsnrApi.js +1 -1
- package/dist/encoding/encodings/transferRetries/TransferRetriesApi.d.ts +1 -1
- package/dist/encoding/encodings/transferRetries/TransferRetriesApi.js +1 -1
- package/dist/encoding/filters/conform/ConformApi.d.ts +1 -1
- package/dist/encoding/filters/conform/ConformApi.js +1 -1
- 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/encoding/simple/jobs/live/LiveApi.d.ts +1 -1
- package/dist/encoding/simple/jobs/live/LiveApi.js +1 -1
- package/dist/encoding/simple/jobs/vod/VodApi.d.ts +1 -1
- package/dist/encoding/simple/jobs/vod/VodApi.js +1 -1
- package/dist/models/Encoding.d.ts +8 -1
- package/dist/models/Encoding.js +1 -0
- package/dist/models/LiveOptionsType.d.ts +8 -0
- package/dist/models/LiveOptionsType.js +12 -0
- package/dist/models/PresetConfiguration.d.ts +2 -1
- package/dist/models/PresetConfiguration.js +1 -0
- package/dist/models/SpekeDrmProvider.d.ts +6 -0
- package/dist/models/SpekeDrmProvider.js +1 -0
- package/dist/models/StartEncodingRequest.d.ts +1 -1
- package/dist/models/StartLiveEncodingRequest.d.ts +1 -1
- package/dist/models/Stream.d.ts +1 -1
- package/dist/models/StreamsContentProtectionResponse.d.ts +6 -0
- package/dist/models/StreamsContentProtectionResponse.js +1 -0
- package/dist/models/StreamsLiveUpdateRequest.d.ts +6 -0
- package/dist/models/StreamsLiveUpdateRequest.js +1 -0
- package/dist/models/StreamsVideoUpdateRequest.d.ts +6 -0
- package/dist/models/StreamsVideoUpdateRequest.js +1 -0
- package/dist/models/VideoConfiguration.d.ts +1 -1
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/notifications/webhooks/encoding/encodings/error/ErrorApi.d.ts +1 -1
- package/dist/notifications/webhooks/encoding/encodings/error/ErrorApi.js +1 -1
- package/dist/notifications/webhooks/encoding/encodings/finished/FinishedApi.d.ts +1 -1
- package/dist/notifications/webhooks/encoding/encodings/finished/FinishedApi.js +1 -1
- package/dist/notifications/webhooks/encoding/encodings/transferError/TransferErrorApi.d.ts +1 -1
- package/dist/notifications/webhooks/encoding/encodings/transferError/TransferErrorApi.js +1 -1
- package/dist/notifications/webhooks/encoding/manifest/error/ErrorApi.d.ts +1 -1
- package/dist/notifications/webhooks/encoding/manifest/error/ErrorApi.js +1 -1
- package/dist/notifications/webhooks/encoding/manifest/finished/FinishedApi.d.ts +1 -1
- package/dist/notifications/webhooks/encoding/manifest/finished/FinishedApi.js +1 -1
- package/package.json +1 -1
|
@@ -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.166.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -15,28 +15,28 @@ export default class Ac3Api extends BaseAPI {
|
|
|
15
15
|
customdata: CustomdataApi;
|
|
16
16
|
constructor(configuration: Configuration);
|
|
17
17
|
/**
|
|
18
|
-
* @summary Create AC3 Codec Configuration
|
|
18
|
+
* @summary Create AC3 Codec Configuration
|
|
19
19
|
* @param {Ac3AudioConfiguration} ac3AudioConfiguration The AC3 Codec Configuration to be created
|
|
20
20
|
* @throws {BitmovinError}
|
|
21
21
|
* @memberof Ac3Api
|
|
22
22
|
*/
|
|
23
23
|
create(ac3AudioConfiguration?: Ac3AudioConfiguration): Promise<Ac3AudioConfiguration>;
|
|
24
24
|
/**
|
|
25
|
-
* @summary Delete AC3 Codec Configuration
|
|
25
|
+
* @summary Delete AC3 Codec Configuration
|
|
26
26
|
* @param {string} configurationId Id of the codec configuration
|
|
27
27
|
* @throws {BitmovinError}
|
|
28
28
|
* @memberof Ac3Api
|
|
29
29
|
*/
|
|
30
30
|
delete(configurationId: string): Promise<BitmovinResponse>;
|
|
31
31
|
/**
|
|
32
|
-
* @summary AC3 Codec Configuration Details
|
|
32
|
+
* @summary AC3 Codec Configuration Details
|
|
33
33
|
* @param {string} configurationId Id of the codec configuration
|
|
34
34
|
* @throws {BitmovinError}
|
|
35
35
|
* @memberof Ac3Api
|
|
36
36
|
*/
|
|
37
37
|
get(configurationId: string): Promise<Ac3AudioConfiguration>;
|
|
38
38
|
/**
|
|
39
|
-
* @summary List AC3 Configurations
|
|
39
|
+
* @summary List AC3 Configurations
|
|
40
40
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41
41
|
* @throws {BitmovinError}
|
|
42
42
|
* @memberof Ac3Api
|
|
@@ -36,7 +36,7 @@ var Ac3Api = /** @class */ (function (_super) {
|
|
|
36
36
|
return _this;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
* @summary Create AC3 Codec Configuration
|
|
39
|
+
* @summary Create AC3 Codec Configuration
|
|
40
40
|
* @param {Ac3AudioConfiguration} ac3AudioConfiguration The AC3 Codec Configuration to be created
|
|
41
41
|
* @throws {BitmovinError}
|
|
42
42
|
* @memberof Ac3Api
|
|
@@ -47,7 +47,7 @@ var Ac3Api = /** @class */ (function (_super) {
|
|
|
47
47
|
});
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
|
-
* @summary Delete AC3 Codec Configuration
|
|
50
|
+
* @summary Delete AC3 Codec Configuration
|
|
51
51
|
* @param {string} configurationId Id of the codec configuration
|
|
52
52
|
* @throws {BitmovinError}
|
|
53
53
|
* @memberof Ac3Api
|
|
@@ -61,7 +61,7 @@ var Ac3Api = /** @class */ (function (_super) {
|
|
|
61
61
|
});
|
|
62
62
|
};
|
|
63
63
|
/**
|
|
64
|
-
* @summary AC3 Codec Configuration Details
|
|
64
|
+
* @summary AC3 Codec Configuration Details
|
|
65
65
|
* @param {string} configurationId Id of the codec configuration
|
|
66
66
|
* @throws {BitmovinError}
|
|
67
67
|
* @memberof Ac3Api
|
|
@@ -75,7 +75,7 @@ var Ac3Api = /** @class */ (function (_super) {
|
|
|
75
75
|
});
|
|
76
76
|
};
|
|
77
77
|
/**
|
|
78
|
-
* @summary List AC3 Configurations
|
|
78
|
+
* @summary List AC3 Configurations
|
|
79
79
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
80
80
|
* @throws {BitmovinError}
|
|
81
81
|
* @memberof Ac3Api
|
|
@@ -15,28 +15,28 @@ export default class Eac3Api extends BaseAPI {
|
|
|
15
15
|
customdata: CustomdataApi;
|
|
16
16
|
constructor(configuration: Configuration);
|
|
17
17
|
/**
|
|
18
|
-
* @summary Create E-AC3 Codec Configuration
|
|
18
|
+
* @summary Create E-AC3 Codec Configuration
|
|
19
19
|
* @param {Eac3AudioConfiguration} eac3AudioConfiguration The E-AC3 Codec Configuration to be created
|
|
20
20
|
* @throws {BitmovinError}
|
|
21
21
|
* @memberof Eac3Api
|
|
22
22
|
*/
|
|
23
23
|
create(eac3AudioConfiguration?: Eac3AudioConfiguration): Promise<Eac3AudioConfiguration>;
|
|
24
24
|
/**
|
|
25
|
-
* @summary Delete E-AC3 Codec Configuration
|
|
25
|
+
* @summary Delete E-AC3 Codec Configuration
|
|
26
26
|
* @param {string} configurationId Id of the codec configuration
|
|
27
27
|
* @throws {BitmovinError}
|
|
28
28
|
* @memberof Eac3Api
|
|
29
29
|
*/
|
|
30
30
|
delete(configurationId: string): Promise<BitmovinResponse>;
|
|
31
31
|
/**
|
|
32
|
-
* @summary E-AC3 Codec Configuration Details
|
|
32
|
+
* @summary E-AC3 Codec Configuration Details
|
|
33
33
|
* @param {string} configurationId Id of the codec configuration
|
|
34
34
|
* @throws {BitmovinError}
|
|
35
35
|
* @memberof Eac3Api
|
|
36
36
|
*/
|
|
37
37
|
get(configurationId: string): Promise<Eac3AudioConfiguration>;
|
|
38
38
|
/**
|
|
39
|
-
* @summary List E-AC3 Configurations
|
|
39
|
+
* @summary List E-AC3 Configurations
|
|
40
40
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41
41
|
* @throws {BitmovinError}
|
|
42
42
|
* @memberof Eac3Api
|
|
@@ -36,7 +36,7 @@ var Eac3Api = /** @class */ (function (_super) {
|
|
|
36
36
|
return _this;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
* @summary Create E-AC3 Codec Configuration
|
|
39
|
+
* @summary Create E-AC3 Codec Configuration
|
|
40
40
|
* @param {Eac3AudioConfiguration} eac3AudioConfiguration The E-AC3 Codec Configuration to be created
|
|
41
41
|
* @throws {BitmovinError}
|
|
42
42
|
* @memberof Eac3Api
|
|
@@ -47,7 +47,7 @@ var Eac3Api = /** @class */ (function (_super) {
|
|
|
47
47
|
});
|
|
48
48
|
};
|
|
49
49
|
/**
|
|
50
|
-
* @summary Delete E-AC3 Codec Configuration
|
|
50
|
+
* @summary Delete E-AC3 Codec Configuration
|
|
51
51
|
* @param {string} configurationId Id of the codec configuration
|
|
52
52
|
* @throws {BitmovinError}
|
|
53
53
|
* @memberof Eac3Api
|
|
@@ -61,7 +61,7 @@ var Eac3Api = /** @class */ (function (_super) {
|
|
|
61
61
|
});
|
|
62
62
|
};
|
|
63
63
|
/**
|
|
64
|
-
* @summary E-AC3 Codec Configuration Details
|
|
64
|
+
* @summary E-AC3 Codec Configuration Details
|
|
65
65
|
* @param {string} configurationId Id of the codec configuration
|
|
66
66
|
* @throws {BitmovinError}
|
|
67
67
|
* @memberof Eac3Api
|
|
@@ -75,7 +75,7 @@ var Eac3Api = /** @class */ (function (_super) {
|
|
|
75
75
|
});
|
|
76
76
|
};
|
|
77
77
|
/**
|
|
78
|
-
* @summary List E-AC3 Configurations
|
|
78
|
+
* @summary List E-AC3 Configurations
|
|
79
79
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
80
80
|
* @throws {BitmovinError}
|
|
81
81
|
* @memberof Eac3Api
|
|
@@ -18,7 +18,7 @@ export default class InsertableContentApi extends BaseAPI {
|
|
|
18
18
|
stop: StopApi;
|
|
19
19
|
constructor(configuration: Configuration);
|
|
20
20
|
/**
|
|
21
|
-
* @summary
|
|
21
|
+
* @summary Create Insertable Content
|
|
22
22
|
* @param {string} encodingId Id of the encoding.
|
|
23
23
|
* @param {InsertableContent} insertableContent The insertable content to be created
|
|
24
24
|
* @throws {BitmovinError}
|
|
@@ -26,7 +26,7 @@ export default class InsertableContentApi extends BaseAPI {
|
|
|
26
26
|
*/
|
|
27
27
|
create(encodingId: string, insertableContent?: InsertableContent): Promise<InsertableContent>;
|
|
28
28
|
/**
|
|
29
|
-
* @summary List
|
|
29
|
+
* @summary List Insertable Content
|
|
30
30
|
* @param {string} encodingId Id of the encoding.
|
|
31
31
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
32
32
|
* @throws {BitmovinError}
|
|
@@ -39,7 +39,7 @@ var InsertableContentApi = /** @class */ (function (_super) {
|
|
|
39
39
|
return _this;
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
|
-
* @summary
|
|
42
|
+
* @summary Create Insertable Content
|
|
43
43
|
* @param {string} encodingId Id of the encoding.
|
|
44
44
|
* @param {InsertableContent} insertableContent The insertable content to be created
|
|
45
45
|
* @throws {BitmovinError}
|
|
@@ -54,7 +54,7 @@ var InsertableContentApi = /** @class */ (function (_super) {
|
|
|
54
54
|
});
|
|
55
55
|
};
|
|
56
56
|
/**
|
|
57
|
-
* @summary List
|
|
57
|
+
* @summary List Insertable Content
|
|
58
58
|
* @param {string} encodingId Id of the encoding.
|
|
59
59
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
60
60
|
* @throws {BitmovinError}
|
|
@@ -11,7 +11,7 @@ import ScheduledInsertableContent from '../../../../../models/ScheduledInsertabl
|
|
|
11
11
|
export default class ScheduleApi extends BaseAPI {
|
|
12
12
|
constructor(configuration: Configuration);
|
|
13
13
|
/**
|
|
14
|
-
* @summary Schedule Insertable Content
|
|
14
|
+
* @summary Schedule Insertable Content
|
|
15
15
|
* @param {string} encodingId Id of the encoding.
|
|
16
16
|
* @param {string} contentId Id of the insertable content.
|
|
17
17
|
* @param {ScheduledInsertableContent} scheduledInsertableContent The scheduled insertable content to be created
|
|
@@ -31,7 +31,7 @@ var ScheduleApi = /** @class */ (function (_super) {
|
|
|
31
31
|
return _super.call(this, configuration) || this;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* @summary Schedule Insertable Content
|
|
34
|
+
* @summary Schedule Insertable Content
|
|
35
35
|
* @param {string} encodingId Id of the encoding.
|
|
36
36
|
* @param {string} contentId Id of the insertable content.
|
|
37
37
|
* @param {ScheduledInsertableContent} scheduledInsertableContent The scheduled insertable content to be created
|
|
@@ -12,7 +12,7 @@ import { ScheduledInsertableContentListQueryParams, ScheduledInsertableContentLi
|
|
|
12
12
|
export default class ScheduledApi extends BaseAPI {
|
|
13
13
|
constructor(configuration: Configuration);
|
|
14
14
|
/**
|
|
15
|
-
* @summary List
|
|
15
|
+
* @summary List Scheduled Insertable Content
|
|
16
16
|
* @param {string} encodingId Id of the encoding.
|
|
17
17
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
18
18
|
* @throws {BitmovinError}
|
|
@@ -31,7 +31,7 @@ var ScheduledApi = /** @class */ (function (_super) {
|
|
|
31
31
|
return _super.call(this, configuration) || this;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
|
-
* @summary List
|
|
34
|
+
* @summary List Scheduled Insertable Content
|
|
35
35
|
* @param {string} encodingId Id of the encoding.
|
|
36
36
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
37
37
|
* @throws {BitmovinError}
|
|
@@ -13,7 +13,7 @@ import { PsnrQualityMetricListQueryParams, PsnrQualityMetricListQueryParamsBuild
|
|
|
13
13
|
export default class PsnrApi extends BaseAPI {
|
|
14
14
|
constructor(configuration: Configuration);
|
|
15
15
|
/**
|
|
16
|
-
* @summary
|
|
16
|
+
* @summary PSNR quality metrics
|
|
17
17
|
* @param {string} encodingId Id of the encoding.
|
|
18
18
|
* @param {string} streamId Id of the stream.
|
|
19
19
|
* @throws {BitmovinError}
|
|
@@ -33,7 +33,7 @@ var PsnrApi = /** @class */ (function (_super) {
|
|
|
33
33
|
return _super.call(this, configuration) || this;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
-
* @summary
|
|
36
|
+
* @summary PSNR quality metrics
|
|
37
37
|
* @param {string} encodingId Id of the encoding.
|
|
38
38
|
* @param {string} streamId Id of the stream.
|
|
39
39
|
* @throws {BitmovinError}
|
|
@@ -12,7 +12,7 @@ import { TransferRetryListQueryParams, TransferRetryListQueryParamsBuilder } fro
|
|
|
12
12
|
export default class TransferRetriesApi extends BaseAPI {
|
|
13
13
|
constructor(configuration: Configuration);
|
|
14
14
|
/**
|
|
15
|
-
* @summary
|
|
15
|
+
* @summary Transfer retry
|
|
16
16
|
* @param {string} encodingId Id of the encoding.
|
|
17
17
|
* @throws {BitmovinError}
|
|
18
18
|
* @memberof TransferRetriesApi
|
|
@@ -32,7 +32,7 @@ var TransferRetriesApi = /** @class */ (function (_super) {
|
|
|
32
32
|
return _super.call(this, configuration) || this;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
|
-
* @summary
|
|
35
|
+
* @summary Transfer retry
|
|
36
36
|
* @param {string} encodingId Id of the encoding.
|
|
37
37
|
* @throws {BitmovinError}
|
|
38
38
|
* @memberof TransferRetriesApi
|
|
@@ -15,7 +15,7 @@ export default class ConformApi extends BaseAPI {
|
|
|
15
15
|
customdata: CustomdataApi;
|
|
16
16
|
constructor(configuration: Configuration);
|
|
17
17
|
/**
|
|
18
|
-
* @summary Create Conform Filter
|
|
18
|
+
* @summary Create Conform Filter
|
|
19
19
|
* @param {ConformFilter} conformFilter The Conform Filter to be created
|
|
20
20
|
* @throws {BitmovinError}
|
|
21
21
|
* @memberof ConformApi
|
|
@@ -36,7 +36,7 @@ var ConformApi = /** @class */ (function (_super) {
|
|
|
36
36
|
return _this;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
* @summary Create Conform Filter
|
|
39
|
+
* @summary Create Conform Filter
|
|
40
40
|
* @param {ConformFilter} conformFilter The Conform Filter to be created
|
|
41
41
|
* @throws {BitmovinError}
|
|
42
42
|
* @memberof ConformApi
|
|
@@ -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
|
|
25
|
+
* @param {DashManifest} dashManifest The Custom DASH Manifest to be created.
|
|
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
|
|
46
|
+
* @param {DashManifest} dashManifest The Custom DASH Manifest to be created.
|
|
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
|
|
14
|
+
* @param {DashManifestDefault} dashManifestDefault The Default DASH Manifest to be created.
|
|
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
|
|
34
|
+
* @param {DashManifestDefault} dashManifestDefault The Default DASH Manifest to be created.
|
|
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
|
|
27
|
+
* @param {HlsManifest} hlsManifest The Custom HLS Manifest to be created.
|
|
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
|
|
48
|
+
* @param {HlsManifest} hlsManifest The Custom HLS Manifest to be created.
|
|
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
|
|
14
|
+
* @param {HlsManifestDefault} hlsManifestDefault The Default HLS Manifest to be created.
|
|
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
|
|
34
|
+
* @param {HlsManifestDefault} hlsManifestDefault The Default HLS Manifest to be created.
|
|
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
|
|
27
|
+
* @param {SmoothStreamingManifest} smoothStreamingManifest The Custom Smooth Streaming Manifest to be created.
|
|
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
|
|
48
|
+
* @param {SmoothStreamingManifest} smoothStreamingManifest The Custom Smooth Streaming Manifest to be created.
|
|
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
|
|
14
|
+
* @param {SmoothManifestDefault} smoothManifestDefault The Default Smooth Streaming Manifest to be created.
|
|
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
|
|
34
|
+
* @param {SmoothManifestDefault} smoothManifestDefault The Default Smooth Streaming Manifest to be created.
|
|
35
35
|
* @throws {BitmovinError}
|
|
36
36
|
* @memberof DefaultApi
|
|
37
37
|
*/
|
|
@@ -12,7 +12,7 @@ export default class LiveApi extends BaseAPI {
|
|
|
12
12
|
constructor(configuration: Configuration);
|
|
13
13
|
/**
|
|
14
14
|
* @summary Create a Simple Encoding Live Job
|
|
15
|
-
* @param {SimpleEncodingLiveJobRequest} simpleEncodingLiveJobRequest The Simple Encoding Live Job to be created.
|
|
15
|
+
* @param {SimpleEncodingLiveJobRequest} simpleEncodingLiveJobRequest The Simple Encoding Live Job to be created.
|
|
16
16
|
* @throws {BitmovinError}
|
|
17
17
|
* @memberof LiveApi
|
|
18
18
|
*/
|
|
@@ -31,7 +31,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @summary Create a Simple Encoding Live Job
|
|
34
|
-
* @param {SimpleEncodingLiveJobRequest} simpleEncodingLiveJobRequest The Simple Encoding Live Job to be created.
|
|
34
|
+
* @param {SimpleEncodingLiveJobRequest} simpleEncodingLiveJobRequest The Simple Encoding Live Job to be created.
|
|
35
35
|
* @throws {BitmovinError}
|
|
36
36
|
* @memberof LiveApi
|
|
37
37
|
*/
|
|
@@ -14,7 +14,7 @@ export default class VodApi extends BaseAPI {
|
|
|
14
14
|
constructor(configuration: Configuration);
|
|
15
15
|
/**
|
|
16
16
|
* @summary Create a Simple Encoding VOD Job
|
|
17
|
-
* @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created.
|
|
17
|
+
* @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created.
|
|
18
18
|
* @throws {BitmovinError}
|
|
19
19
|
* @memberof VodApi
|
|
20
20
|
*/
|
|
@@ -33,7 +33,7 @@ var VodApi = /** @class */ (function (_super) {
|
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* @summary Create a Simple Encoding VOD Job
|
|
36
|
-
* @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created.
|
|
36
|
+
* @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created.
|
|
37
37
|
* @throws {BitmovinError}
|
|
38
38
|
* @memberof VodApi
|
|
39
39
|
*/
|
|
@@ -3,6 +3,7 @@ import CloudRegion from './CloudRegion';
|
|
|
3
3
|
import EncodingMode from './EncodingMode';
|
|
4
4
|
import EncodingType from './EncodingType';
|
|
5
5
|
import InfrastructureSettings from './InfrastructureSettings';
|
|
6
|
+
import LiveOptionsType from './LiveOptionsType';
|
|
6
7
|
import Status from './Status';
|
|
7
8
|
/**
|
|
8
9
|
* @export
|
|
@@ -86,7 +87,7 @@ export declare class Encoding extends BitmovinResource {
|
|
|
86
87
|
*/
|
|
87
88
|
selectedEncoderVersion?: string;
|
|
88
89
|
/**
|
|
89
|
-
* After the encoding has been started, this will contain the encoding mode that was actually used. Especially useful when
|
|
90
|
+
* After the encoding has been started, this will contain the encoding mode that was actually used. Especially useful when `encodingMode` was not set explicitly or set to STANDARD (which translates to one of the other possible values on encoding start).
|
|
90
91
|
* @type {EncodingMode}
|
|
91
92
|
* @memberof Encoding
|
|
92
93
|
*/
|
|
@@ -109,6 +110,12 @@ export declare class Encoding extends BitmovinResource {
|
|
|
109
110
|
* @memberof Encoding
|
|
110
111
|
*/
|
|
111
112
|
labels?: string[];
|
|
113
|
+
/**
|
|
114
|
+
* The chosen live option type of the live encoding
|
|
115
|
+
* @type {LiveOptionsType}
|
|
116
|
+
* @memberof Encoding
|
|
117
|
+
*/
|
|
118
|
+
liveOptionsType?: LiveOptionsType;
|
|
112
119
|
constructor(obj?: Partial<Encoding>);
|
|
113
120
|
}
|
|
114
121
|
export default Encoding;
|
package/dist/models/Encoding.js
CHANGED
|
@@ -47,6 +47,7 @@ var Encoding = /** @class */ (function (_super) {
|
|
|
47
47
|
_this.selectedCloudRegion = (0, Mapper_1.map)(obj.selectedCloudRegion);
|
|
48
48
|
_this.status = (0, Mapper_1.map)(obj.status);
|
|
49
49
|
_this.labels = (0, Mapper_1.mapArray)(obj.labels);
|
|
50
|
+
_this.liveOptionsType = (0, Mapper_1.map)(obj.liveOptionsType);
|
|
50
51
|
return _this;
|
|
51
52
|
}
|
|
52
53
|
return Encoding;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LiveOptionsType = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @export
|
|
6
|
+
* @enum {string}
|
|
7
|
+
*/
|
|
8
|
+
var LiveOptionsType;
|
|
9
|
+
(function (LiveOptionsType) {
|
|
10
|
+
LiveOptionsType["HD"] = "HD";
|
|
11
|
+
})(LiveOptionsType = exports.LiveOptionsType || (exports.LiveOptionsType = {}));
|
|
12
|
+
exports.default = LiveOptionsType;
|
|
@@ -18,6 +18,7 @@ export declare enum PresetConfiguration {
|
|
|
18
18
|
VOD_VERYHIGH_SPEED = "VOD_VERYHIGH_SPEED",
|
|
19
19
|
VOD_EXTRAHIGH_SPEED = "VOD_EXTRAHIGH_SPEED",
|
|
20
20
|
VOD_SUPERHIGH_SPEED = "VOD_SUPERHIGH_SPEED",
|
|
21
|
-
VOD_ULTRAHIGH_SPEED = "VOD_ULTRAHIGH_SPEED"
|
|
21
|
+
VOD_ULTRAHIGH_SPEED = "VOD_ULTRAHIGH_SPEED",
|
|
22
|
+
VOD_HARDWARE_SHORTFORM = "VOD_HARDWARE_SHORTFORM"
|
|
22
23
|
}
|
|
23
24
|
export default PresetConfiguration;
|
|
@@ -23,5 +23,6 @@ var PresetConfiguration;
|
|
|
23
23
|
PresetConfiguration["VOD_EXTRAHIGH_SPEED"] = "VOD_EXTRAHIGH_SPEED";
|
|
24
24
|
PresetConfiguration["VOD_SUPERHIGH_SPEED"] = "VOD_SUPERHIGH_SPEED";
|
|
25
25
|
PresetConfiguration["VOD_ULTRAHIGH_SPEED"] = "VOD_ULTRAHIGH_SPEED";
|
|
26
|
+
PresetConfiguration["VOD_HARDWARE_SHORTFORM"] = "VOD_HARDWARE_SHORTFORM";
|
|
26
27
|
})(PresetConfiguration = exports.PresetConfiguration || (exports.PresetConfiguration = {}));
|
|
27
28
|
exports.default = PresetConfiguration;
|
|
@@ -22,6 +22,12 @@ export declare class SpekeDrmProvider {
|
|
|
22
22
|
* @memberof SpekeDrmProvider
|
|
23
23
|
*/
|
|
24
24
|
password?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Your API key for authentication via X-API-Key HTTP Header
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof SpekeDrmProvider
|
|
29
|
+
*/
|
|
30
|
+
apiKey?: string;
|
|
25
31
|
/**
|
|
26
32
|
* AWS role that will be assumed for the key exchange in case the provider runs on AWS. During the key exchange the role will be assumed to be able to access the key provider. This role is to be created in the customer's account and must be granted access to the API Gateway of the SPEKE server. For Bitmovin to be able to assume this role, the following has to be added to the trust policy of the role: ``` { \"Effect\": \"Allow\", \"Principal\": { \"AWS\": \"arn:aws:iam::630681592166:user/bitmovinCustomerSpekeAccess\" }, \"Action\": \"sts:AssumeRole\", \"Condition\": { \"StringEquals\": { \"sts:ExternalId\": \"{{externalId}}\" } } } ``` It is recommended to also set the {{externalId}} due to security reasons but it can also be ommitted. Additionally the role needs a policy similar to the following to be able to invoke the API gateway: ``` { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"execute-api:Invoke\" ], \"Resource\": [ \"arn:aws:execute-api:{{region}}:*:*_/_*_/POST/_*\" ] } ] } ``` where `{{region}}` is the region of the API gateway (for example `us-west-2`), the same has to be set in the property 'gatewayRegion'. It's also possible to set `{{region}` to `*` to give the role access to all regions.
|
|
27
33
|
* @type {string}
|
|
@@ -14,6 +14,7 @@ var SpekeDrmProvider = /** @class */ (function () {
|
|
|
14
14
|
this.url = (0, Mapper_1.map)(obj.url);
|
|
15
15
|
this.username = (0, Mapper_1.map)(obj.username);
|
|
16
16
|
this.password = (0, Mapper_1.map)(obj.password);
|
|
17
|
+
this.apiKey = (0, Mapper_1.map)(obj.apiKey);
|
|
17
18
|
this.roleArn = (0, Mapper_1.map)(obj.roleArn);
|
|
18
19
|
this.externalId = (0, Mapper_1.map)(obj.externalId);
|
|
19
20
|
this.externalIdMode = (0, Mapper_1.map)(obj.externalIdMode);
|
|
@@ -35,7 +35,7 @@ export declare class StartEncodingRequest {
|
|
|
35
35
|
*/
|
|
36
36
|
handleVariableInputFps?: boolean;
|
|
37
37
|
/**
|
|
38
|
-
* The pass mode of the encoding
|
|
38
|
+
* The pass mode of the encoding. Must only be set when `encodingMode` is not set on any codec configuration used by this encoding.
|
|
39
39
|
* @type {EncodingMode}
|
|
40
40
|
* @memberof StartEncodingRequest
|
|
41
41
|
*/
|
|
@@ -29,7 +29,7 @@ export declare class StartLiveEncodingRequest {
|
|
|
29
29
|
*/
|
|
30
30
|
dashManifests?: LiveDashManifest[];
|
|
31
31
|
/**
|
|
32
|
-
* The pass mode of the encoding
|
|
32
|
+
* The pass mode of the encoding. Must only be set when `encodingMode` is not set on any codec configuration used by this encoding.
|
|
33
33
|
* @type {EncodingMode}
|
|
34
34
|
* @memberof StartLiveEncodingRequest
|
|
35
35
|
*/
|
package/dist/models/Stream.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare class Stream extends BitmovinResource {
|
|
|
62
62
|
*/
|
|
63
63
|
mode?: StreamMode;
|
|
64
64
|
/**
|
|
65
|
-
* The encoding mode
|
|
65
|
+
* The encoding mode that was used for this stream. This is derived from `encodingMode`, which can be specified in the codec configuration or in the encoding start request. Note that all streams of an encoding need to use the same encoding mode. This will therefore always match `selectedEncodingMode` of the related Encoding resource. Especially useful when `encodingMode` was not set explicitly or set to STANDARD (which translates to one of the other possible values on encoding start).
|
|
66
66
|
* @type {EncodingMode}
|
|
67
67
|
* @memberof Stream
|
|
68
68
|
*/
|
|
@@ -21,6 +21,12 @@ export declare class StreamsContentProtectionResponse {
|
|
|
21
21
|
* @memberof StreamsContentProtectionResponse
|
|
22
22
|
*/
|
|
23
23
|
allowNoReferer?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Controls if Stream is accessible via sharing URL or not
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof StreamsContentProtectionResponse
|
|
28
|
+
*/
|
|
29
|
+
allowShare?: boolean;
|
|
24
30
|
constructor(obj?: Partial<StreamsContentProtectionResponse>);
|
|
25
31
|
}
|
|
26
32
|
export default StreamsContentProtectionResponse;
|