@bitmovin/api-sdk 1.162.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 +116 -29
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +2 -2
- package/dist/encoding/history/encodings/EncodingListQueryParams.d.ts +11 -0
- package/dist/encoding/history/encodings/EncodingListQueryParams.js +8 -0
- package/dist/encoding/manifests/dash/DashApi.d.ts +14 -7
- package/dist/encoding/manifests/dash/DashApi.js +22 -7
- package/dist/encoding/manifests/dash/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/dash/default/DefaultApi.js +2 -2
- package/dist/encoding/manifests/hls/HlsApi.d.ts +14 -7
- package/dist/encoding/manifests/hls/HlsApi.js +22 -7
- package/dist/encoding/manifests/hls/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/hls/default/DefaultApi.js +2 -2
- package/dist/encoding/manifests/smooth/SmoothApi.d.ts +13 -6
- package/dist/encoding/manifests/smooth/SmoothApi.js +21 -6
- package/dist/encoding/manifests/smooth/default/DefaultApi.d.ts +2 -2
- package/dist/encoding/manifests/smooth/default/DefaultApi.js +2 -2
- package/dist/models/DashManifestDefault.d.ts +3 -4
- package/dist/models/DashManifestDefault.js +0 -1
- package/dist/models/H265VideoConfiguration.d.ts +2 -2
- package/dist/models/HlsManifestDefault.d.ts +1 -1
- package/dist/models/Scheduling.d.ts +1 -1
- package/dist/models/SimpleEncodingVodJobOptions.d.ts +14 -0
- package/dist/models/SimpleEncodingVodJobOptions.js +19 -0
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobRequest.js +2 -0
- package/dist/models/SimpleEncodingVodJobResponse.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobResponse.js +2 -0
- package/dist/models/SmoothManifestDefault.d.ts +1 -1
- package/dist/models/SmoothStreamingRepresentation.d.ts +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/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- 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) {
|
|
@@ -34446,6 +34446,14 @@ var EncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
|
34446
34446
|
this.internalParams.limit = limit;
|
|
34447
34447
|
return this;
|
|
34448
34448
|
};
|
|
34449
|
+
/**
|
|
34450
|
+
*
|
|
34451
|
+
* @param includeTotalCount A boolean indicating whether the total count should be returned as well. Default is false
|
|
34452
|
+
*/
|
|
34453
|
+
EncodingListQueryParamsBuilder.prototype.includeTotalCount = function (includeTotalCount) {
|
|
34454
|
+
this.internalParams.includeTotalCount = includeTotalCount;
|
|
34455
|
+
return this;
|
|
34456
|
+
};
|
|
34449
34457
|
/**
|
|
34450
34458
|
*
|
|
34451
34459
|
* @param sort Order list result according an encoding resource attribute. The fields that can be used for sorting are: + `id` + `startedAt` + `createdAt` + `modifiedAt` + `finishedAt` + `type` + `name` + `status` + `cloudRegion` + `encoderVersion`
|
|
@@ -40203,6 +40211,7 @@ var CustomdataApi_1 = __webpack_require__(/*! ./customdata/CustomdataApi */ "./e
|
|
|
40203
40211
|
var PeriodsApi_1 = __webpack_require__(/*! ./periods/PeriodsApi */ "./encoding/manifests/dash/periods/PeriodsApi.ts");
|
|
40204
40212
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
40205
40213
|
var DashManifest_1 = __webpack_require__(/*! ../../../models/DashManifest */ "./models/DashManifest.ts");
|
|
40214
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
40206
40215
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
40207
40216
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
40208
40217
|
var DashManifestListQueryParams_1 = __webpack_require__(/*! ./DashManifestListQueryParams */ "./encoding/manifests/dash/DashManifestListQueryParams.ts");
|
|
@@ -40222,8 +40231,8 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40222
40231
|
return _this;
|
|
40223
40232
|
}
|
|
40224
40233
|
/**
|
|
40225
|
-
* @summary Create DASH Manifest
|
|
40226
|
-
* @param {DashManifest} dashManifest
|
|
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 resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
|
|
40227
40236
|
* @throws {BitmovinError}
|
|
40228
40237
|
* @memberof DashApi
|
|
40229
40238
|
*/
|
|
@@ -40234,7 +40243,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40234
40243
|
};
|
|
40235
40244
|
/**
|
|
40236
40245
|
* @summary Delete DASH Manifest
|
|
40237
|
-
* @param {string} manifestId UUID of the DASH
|
|
40246
|
+
* @param {string} manifestId UUID of the DASH Manifest to be deleted
|
|
40238
40247
|
* @throws {BitmovinError}
|
|
40239
40248
|
* @memberof DashApi
|
|
40240
40249
|
*/
|
|
@@ -40248,7 +40257,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40248
40257
|
};
|
|
40249
40258
|
/**
|
|
40250
40259
|
* @summary DASH Manifest Details
|
|
40251
|
-
* @param {string} manifestId UUID of the
|
|
40260
|
+
* @param {string} manifestId UUID of the DASH Manifest
|
|
40252
40261
|
* @throws {BitmovinError}
|
|
40253
40262
|
* @memberof DashApi
|
|
40254
40263
|
*/
|
|
@@ -40260,6 +40269,20 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40260
40269
|
return (0, Mapper_1.map)(response, DashManifest_1.default);
|
|
40261
40270
|
});
|
|
40262
40271
|
};
|
|
40272
|
+
/**
|
|
40273
|
+
* @summary Manifest Start Details
|
|
40274
|
+
* @param {string} manifestId Id of the manifest
|
|
40275
|
+
* @throws {BitmovinError}
|
|
40276
|
+
* @memberof DashApi
|
|
40277
|
+
*/
|
|
40278
|
+
DashApi.prototype.getStartRequest = function (manifestId) {
|
|
40279
|
+
var pathParamMap = {
|
|
40280
|
+
manifest_id: manifestId
|
|
40281
|
+
};
|
|
40282
|
+
return this.restClient.get('/encoding/manifests/dash/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
40283
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
40284
|
+
});
|
|
40285
|
+
};
|
|
40263
40286
|
/**
|
|
40264
40287
|
* @summary List DASH Manifests
|
|
40265
40288
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -40280,7 +40303,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40280
40303
|
};
|
|
40281
40304
|
/**
|
|
40282
40305
|
* @summary Start DASH Manifest Creation
|
|
40283
|
-
* @param {string} manifestId Id of the DASH
|
|
40306
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
40284
40307
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
40285
40308
|
* @throws {BitmovinError}
|
|
40286
40309
|
* @memberof DashApi
|
|
@@ -40295,7 +40318,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40295
40318
|
};
|
|
40296
40319
|
/**
|
|
40297
40320
|
* @summary DASH Manifest Creation Status
|
|
40298
|
-
* @param {string} manifestId Id of the DASH
|
|
40321
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
40299
40322
|
* @throws {BitmovinError}
|
|
40300
40323
|
* @memberof DashApi
|
|
40301
40324
|
*/
|
|
@@ -40309,7 +40332,7 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
40309
40332
|
};
|
|
40310
40333
|
/**
|
|
40311
40334
|
* @summary Stop DASH Manifest Creation
|
|
40312
|
-
* @param {string} manifestId Id of the DASH
|
|
40335
|
+
* @param {string} manifestId Id of the DASH Manifest.
|
|
40313
40336
|
* @throws {BitmovinError}
|
|
40314
40337
|
* @memberof DashApi
|
|
40315
40338
|
*/
|
|
@@ -40474,8 +40497,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
40474
40497
|
return _super.call(this, configuration) || this;
|
|
40475
40498
|
}
|
|
40476
40499
|
/**
|
|
40477
|
-
* @summary Create DASH Manifest
|
|
40478
|
-
* @param {DashManifestDefault} dashManifestDefault
|
|
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 resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
|
|
40479
40502
|
* @throws {BitmovinError}
|
|
40480
40503
|
* @memberof DefaultApi
|
|
40481
40504
|
*/
|
|
@@ -44762,6 +44785,7 @@ var StreamsApi_1 = __webpack_require__(/*! ./streams/StreamsApi */ "./encoding/m
|
|
|
44762
44785
|
var MediaApi_1 = __webpack_require__(/*! ./media/MediaApi */ "./encoding/manifests/hls/media/MediaApi.ts");
|
|
44763
44786
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
44764
44787
|
var HlsManifest_1 = __webpack_require__(/*! ../../../models/HlsManifest */ "./models/HlsManifest.ts");
|
|
44788
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
44765
44789
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
44766
44790
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
44767
44791
|
var HlsManifestListQueryParams_1 = __webpack_require__(/*! ./HlsManifestListQueryParams */ "./encoding/manifests/hls/HlsManifestListQueryParams.ts");
|
|
@@ -44782,8 +44806,8 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44782
44806
|
return _this;
|
|
44783
44807
|
}
|
|
44784
44808
|
/**
|
|
44785
|
-
* @summary Create HLS Manifest
|
|
44786
|
-
* @param {HlsManifest} hlsManifest
|
|
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 resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
|
|
44787
44811
|
* @throws {BitmovinError}
|
|
44788
44812
|
* @memberof HlsApi
|
|
44789
44813
|
*/
|
|
@@ -44794,7 +44818,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44794
44818
|
};
|
|
44795
44819
|
/**
|
|
44796
44820
|
* @summary Delete HLS Manifest
|
|
44797
|
-
* @param {string} manifestId Id of the
|
|
44821
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44798
44822
|
* @throws {BitmovinError}
|
|
44799
44823
|
* @memberof HlsApi
|
|
44800
44824
|
*/
|
|
@@ -44808,7 +44832,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44808
44832
|
};
|
|
44809
44833
|
/**
|
|
44810
44834
|
* @summary HLS Manifest Details
|
|
44811
|
-
* @param {string} manifestId Id of the
|
|
44835
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44812
44836
|
* @throws {BitmovinError}
|
|
44813
44837
|
* @memberof HlsApi
|
|
44814
44838
|
*/
|
|
@@ -44820,6 +44844,20 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44820
44844
|
return (0, Mapper_1.map)(response, HlsManifest_1.default);
|
|
44821
44845
|
});
|
|
44822
44846
|
};
|
|
44847
|
+
/**
|
|
44848
|
+
* @summary Manifest Start Details
|
|
44849
|
+
* @param {string} manifestId ID of the manifest
|
|
44850
|
+
* @throws {BitmovinError}
|
|
44851
|
+
* @memberof HlsApi
|
|
44852
|
+
*/
|
|
44853
|
+
HlsApi.prototype.getStartRequest = function (manifestId) {
|
|
44854
|
+
var pathParamMap = {
|
|
44855
|
+
manifest_id: manifestId
|
|
44856
|
+
};
|
|
44857
|
+
return this.restClient.get('/encoding/manifests/hls/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
44858
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
44859
|
+
});
|
|
44860
|
+
};
|
|
44823
44861
|
/**
|
|
44824
44862
|
* @summary List HLS Manifests
|
|
44825
44863
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -44840,7 +44878,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44840
44878
|
};
|
|
44841
44879
|
/**
|
|
44842
44880
|
* @summary Start HLS Manifest Creation
|
|
44843
|
-
* @param {string} manifestId Id of the HLS
|
|
44881
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44844
44882
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
44845
44883
|
* @throws {BitmovinError}
|
|
44846
44884
|
* @memberof HlsApi
|
|
@@ -44855,7 +44893,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44855
44893
|
};
|
|
44856
44894
|
/**
|
|
44857
44895
|
* @summary HLS Manifest Creation Status
|
|
44858
|
-
* @param {string} manifestId Id of the HLS
|
|
44896
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44859
44897
|
* @throws {BitmovinError}
|
|
44860
44898
|
* @memberof HlsApi
|
|
44861
44899
|
*/
|
|
@@ -44869,7 +44907,7 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
44869
44907
|
};
|
|
44870
44908
|
/**
|
|
44871
44909
|
* @summary Stop HLS Manifest Creation
|
|
44872
|
-
* @param {string} manifestId Id of the HLS
|
|
44910
|
+
* @param {string} manifestId Id of the HLS Manifest.
|
|
44873
44911
|
* @throws {BitmovinError}
|
|
44874
44912
|
* @memberof HlsApi
|
|
44875
44913
|
*/
|
|
@@ -45034,8 +45072,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
45034
45072
|
return _super.call(this, configuration) || this;
|
|
45035
45073
|
}
|
|
45036
45074
|
/**
|
|
45037
|
-
* @summary Create HLS Manifest
|
|
45038
|
-
* @param {HlsManifestDefault} hlsManifestDefault
|
|
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 resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
|
|
45039
45077
|
* @throws {BitmovinError}
|
|
45040
45078
|
* @memberof DefaultApi
|
|
45041
45079
|
*/
|
|
@@ -46644,6 +46682,7 @@ var RepresentationsApi_1 = __webpack_require__(/*! ./representations/Representat
|
|
|
46644
46682
|
var ContentprotectionApi_1 = __webpack_require__(/*! ./contentprotection/ContentprotectionApi */ "./encoding/manifests/smooth/contentprotection/ContentprotectionApi.ts");
|
|
46645
46683
|
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
46646
46684
|
var SmoothStreamingManifest_1 = __webpack_require__(/*! ../../../models/SmoothStreamingManifest */ "./models/SmoothStreamingManifest.ts");
|
|
46685
|
+
var StartManifestRequest_1 = __webpack_require__(/*! ../../../models/StartManifestRequest */ "./models/StartManifestRequest.ts");
|
|
46647
46686
|
var Task_1 = __webpack_require__(/*! ../../../models/Task */ "./models/Task.ts");
|
|
46648
46687
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
46649
46688
|
var SmoothStreamingManifestListQueryParams_1 = __webpack_require__(/*! ./SmoothStreamingManifestListQueryParams */ "./encoding/manifests/smooth/SmoothStreamingManifestListQueryParams.ts");
|
|
@@ -46665,7 +46704,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46665
46704
|
}
|
|
46666
46705
|
/**
|
|
46667
46706
|
* @summary Create Smooth Streaming Manifest
|
|
46668
|
-
* @param {SmoothStreamingManifest} smoothStreamingManifest
|
|
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
|
|
46669
46708
|
* @throws {BitmovinError}
|
|
46670
46709
|
* @memberof SmoothApi
|
|
46671
46710
|
*/
|
|
@@ -46676,7 +46715,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46676
46715
|
};
|
|
46677
46716
|
/**
|
|
46678
46717
|
* @summary Delete Smooth Streaming Manifest
|
|
46679
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46718
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46680
46719
|
* @throws {BitmovinError}
|
|
46681
46720
|
* @memberof SmoothApi
|
|
46682
46721
|
*/
|
|
@@ -46690,7 +46729,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46690
46729
|
};
|
|
46691
46730
|
/**
|
|
46692
46731
|
* @summary Smooth Streaming Manifest Details
|
|
46693
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46732
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46694
46733
|
* @throws {BitmovinError}
|
|
46695
46734
|
* @memberof SmoothApi
|
|
46696
46735
|
*/
|
|
@@ -46702,6 +46741,20 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46702
46741
|
return (0, Mapper_1.map)(response, SmoothStreamingManifest_1.default);
|
|
46703
46742
|
});
|
|
46704
46743
|
};
|
|
46744
|
+
/**
|
|
46745
|
+
* @summary Manifest Start Details
|
|
46746
|
+
* @param {string} manifestId Id of the manifest
|
|
46747
|
+
* @throws {BitmovinError}
|
|
46748
|
+
* @memberof SmoothApi
|
|
46749
|
+
*/
|
|
46750
|
+
SmoothApi.prototype.getStartRequest = function (manifestId) {
|
|
46751
|
+
var pathParamMap = {
|
|
46752
|
+
manifest_id: manifestId
|
|
46753
|
+
};
|
|
46754
|
+
return this.restClient.get('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap).then(function (response) {
|
|
46755
|
+
return (0, Mapper_1.map)(response, StartManifestRequest_1.default);
|
|
46756
|
+
});
|
|
46757
|
+
};
|
|
46705
46758
|
/**
|
|
46706
46759
|
* @summary List Smooth Streaming Manifests
|
|
46707
46760
|
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
@@ -46722,7 +46775,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46722
46775
|
};
|
|
46723
46776
|
/**
|
|
46724
46777
|
* @summary Start Smooth Streaming Manifest Creation
|
|
46725
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46778
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46726
46779
|
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
46727
46780
|
* @throws {BitmovinError}
|
|
46728
46781
|
* @memberof SmoothApi
|
|
@@ -46737,7 +46790,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46737
46790
|
};
|
|
46738
46791
|
/**
|
|
46739
46792
|
* @summary Smooth Streaming Manifest Creation Status
|
|
46740
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46793
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46741
46794
|
* @throws {BitmovinError}
|
|
46742
46795
|
* @memberof SmoothApi
|
|
46743
46796
|
*/
|
|
@@ -46751,7 +46804,7 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
46751
46804
|
};
|
|
46752
46805
|
/**
|
|
46753
46806
|
* @summary Stop Smooth Streaming Manifest Creation
|
|
46754
|
-
* @param {string} manifestId Id of the Smooth Streaming
|
|
46807
|
+
* @param {string} manifestId Id of the Smooth Streaming Manifest.
|
|
46755
46808
|
* @throws {BitmovinError}
|
|
46756
46809
|
* @memberof SmoothApi
|
|
46757
46810
|
*/
|
|
@@ -47073,8 +47126,8 @@ var DefaultApi = /** @class */ (function (_super) {
|
|
|
47073
47126
|
return _super.call(this, configuration) || this;
|
|
47074
47127
|
}
|
|
47075
47128
|
/**
|
|
47076
|
-
* @summary Create Smooth Streaming Manifest
|
|
47077
|
-
* @param {SmoothManifestDefault} smoothManifestDefault
|
|
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 resource instead. See [documentation](https://developer.bitmovin.com/encoding/docs/default-vs-custom-manifest) page for a comparison
|
|
47078
47131
|
* @throws {BitmovinError}
|
|
47079
47132
|
* @memberof DefaultApi
|
|
47080
47133
|
*/
|
|
@@ -63471,7 +63524,6 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
|
|
|
63471
63524
|
var DashManifest_1 = __webpack_require__(/*! ./DashManifest */ "./models/DashManifest.ts");
|
|
63472
63525
|
var DefaultDashManifestPeriod_1 = __webpack_require__(/*! ./DefaultDashManifestPeriod */ "./models/DefaultDashManifestPeriod.ts");
|
|
63473
63526
|
/**
|
|
63474
|
-
* V2 of the default dash manifest is an experimental feature and might be subject to change in the future.
|
|
63475
63527
|
* @export
|
|
63476
63528
|
* @class DashManifestDefault
|
|
63477
63529
|
*/
|
|
@@ -79419,6 +79471,36 @@ var SimpleEncodingVodJobInputType;
|
|
|
79419
79471
|
exports["default"] = SimpleEncodingVodJobInputType;
|
|
79420
79472
|
|
|
79421
79473
|
|
|
79474
|
+
/***/ }),
|
|
79475
|
+
|
|
79476
|
+
/***/ "./models/SimpleEncodingVodJobOptions.ts":
|
|
79477
|
+
/*!***********************************************!*\
|
|
79478
|
+
!*** ./models/SimpleEncodingVodJobOptions.ts ***!
|
|
79479
|
+
\***********************************************/
|
|
79480
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
79481
|
+
|
|
79482
|
+
"use strict";
|
|
79483
|
+
|
|
79484
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
79485
|
+
exports.SimpleEncodingVodJobOptions = void 0;
|
|
79486
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79487
|
+
/**
|
|
79488
|
+
* @export
|
|
79489
|
+
* @class SimpleEncodingVodJobOptions
|
|
79490
|
+
*/
|
|
79491
|
+
var SimpleEncodingVodJobOptions = /** @class */ (function () {
|
|
79492
|
+
function SimpleEncodingVodJobOptions(obj) {
|
|
79493
|
+
if (!obj) {
|
|
79494
|
+
return;
|
|
79495
|
+
}
|
|
79496
|
+
this.singleFileOutput = (0, Mapper_1.map)(obj.singleFileOutput);
|
|
79497
|
+
}
|
|
79498
|
+
return SimpleEncodingVodJobOptions;
|
|
79499
|
+
}());
|
|
79500
|
+
exports.SimpleEncodingVodJobOptions = SimpleEncodingVodJobOptions;
|
|
79501
|
+
exports["default"] = SimpleEncodingVodJobOptions;
|
|
79502
|
+
|
|
79503
|
+
|
|
79422
79504
|
/***/ }),
|
|
79423
79505
|
|
|
79424
79506
|
/***/ "./models/SimpleEncodingVodJobOutput.ts":
|
|
@@ -79525,6 +79607,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
79525
79607
|
exports.SimpleEncodingVodJobRequest = void 0;
|
|
79526
79608
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79527
79609
|
var SimpleEncodingVodJobInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts");
|
|
79610
|
+
var SimpleEncodingVodJobOptions_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts");
|
|
79528
79611
|
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79529
79612
|
/**
|
|
79530
79613
|
* @export
|
|
@@ -79538,6 +79621,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
|
|
|
79538
79621
|
this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
79539
79622
|
this.inputs = (0, Mapper_1.mapArray)(obj.inputs, SimpleEncodingVodJobInput_1.default);
|
|
79540
79623
|
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79624
|
+
this.options = (0, Mapper_1.map)(obj.options, SimpleEncodingVodJobOptions_1.default);
|
|
79541
79625
|
this.name = (0, Mapper_1.map)(obj.name);
|
|
79542
79626
|
}
|
|
79543
79627
|
return SimpleEncodingVodJobRequest;
|
|
@@ -79561,6 +79645,7 @@ exports.SimpleEncodingVodJobResponse = void 0;
|
|
|
79561
79645
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
79562
79646
|
var SimpleEncodingVodJobErrors_1 = __webpack_require__(/*! ./SimpleEncodingVodJobErrors */ "./models/SimpleEncodingVodJobErrors.ts");
|
|
79563
79647
|
var SimpleEncodingVodJobInput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts");
|
|
79648
|
+
var SimpleEncodingVodJobOptions_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts");
|
|
79564
79649
|
var SimpleEncodingVodJobOutput_1 = __webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts");
|
|
79565
79650
|
/**
|
|
79566
79651
|
* @export
|
|
@@ -79577,6 +79662,7 @@ var SimpleEncodingVodJobResponse = /** @class */ (function () {
|
|
|
79577
79662
|
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
79578
79663
|
this.inputs = (0, Mapper_1.mapArray)(obj.inputs, SimpleEncodingVodJobInput_1.default);
|
|
79579
79664
|
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, SimpleEncodingVodJobOutput_1.default);
|
|
79665
|
+
this.options = (0, Mapper_1.map)(obj.options, SimpleEncodingVodJobOptions_1.default);
|
|
79580
79666
|
this.errors = (0, Mapper_1.mapArray)(obj.errors, SimpleEncodingVodJobErrors_1.default);
|
|
79581
79667
|
this.createdAt = (0, Mapper_1.map)(obj.createdAt, Date);
|
|
79582
79668
|
this.modifiedAt = (0, Mapper_1.map)(obj.modifiedAt, Date);
|
|
@@ -86057,6 +86143,7 @@ __exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobGcsServiceAccountCred
|
|
|
86057
86143
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInput */ "./models/SimpleEncodingVodJobInput.ts"), exports);
|
|
86058
86144
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInputSourceType */ "./models/SimpleEncodingVodJobInputSourceType.ts"), exports);
|
|
86059
86145
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobInputType */ "./models/SimpleEncodingVodJobInputType.ts"), exports);
|
|
86146
|
+
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOptions */ "./models/SimpleEncodingVodJobOptions.ts"), exports);
|
|
86060
86147
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutput */ "./models/SimpleEncodingVodJobOutput.ts"), exports);
|
|
86061
86148
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutputArtifact */ "./models/SimpleEncodingVodJobOutputArtifact.ts"), exports);
|
|
86062
86149
|
__exportStar(__webpack_require__(/*! ./SimpleEncodingVodJobOutputType */ "./models/SimpleEncodingVodJobOutputType.ts"), exports);
|