@bitmovin/api-sdk 1.196.1 → 1.198.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 +601 -9
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/BitmovinErrorBuilder.js +2 -3
- package/dist/common/Mapper.js +2 -3
- package/dist/common/RestClient.js +3 -3
- package/dist/encoding/encodings/muxings/MuxingsApi.d.ts +2 -0
- package/dist/encoding/encodings/muxings/MuxingsApi.js +2 -0
- package/dist/encoding/encodings/muxings/progressiveWav/ProgressiveWavApi.d.ts +51 -0
- package/dist/encoding/encodings/muxings/progressiveWav/ProgressiveWavApi.js +111 -0
- package/dist/encoding/encodings/muxings/progressiveWav/ProgressiveWavMuxingListQueryParams.d.ts +28 -0
- package/dist/encoding/encodings/muxings/progressiveWav/ProgressiveWavMuxingListQueryParams.js +29 -0
- package/dist/encoding/encodings/muxings/progressiveWav/customdata/CustomdataApi.d.ts +20 -0
- package/dist/encoding/encodings/muxings/progressiveWav/customdata/CustomdataApi.js +50 -0
- package/dist/encoding/encodings/muxings/progressiveWav/information/InformationApi.d.ts +20 -0
- package/dist/encoding/encodings/muxings/progressiveWav/information/InformationApi.js +50 -0
- package/dist/models/CloudRegion.d.ts +1 -0
- package/dist/models/CloudRegion.js +1 -0
- package/dist/models/GoogleCloudRegion.d.ts +2 -1
- package/dist/models/GoogleCloudRegion.js +1 -0
- package/dist/models/H264VideoConfiguration.d.ts +3 -3
- package/dist/models/H265VideoConfiguration.d.ts +3 -3
- package/dist/models/LiveEncodingHeartbeatWebhook.d.ts +15 -0
- package/dist/models/LiveEncodingHeartbeatWebhook.js +38 -0
- package/dist/models/Muxing.d.ts +2 -1
- package/dist/models/Muxing.js +1 -0
- package/dist/models/MuxingType.d.ts +1 -0
- package/dist/models/MuxingType.js +1 -0
- package/dist/models/PcmChannelLayout.d.ts +2 -1
- package/dist/models/PcmChannelLayout.js +1 -0
- package/dist/models/PcmSampleFormat.d.ts +2 -1
- package/dist/models/PcmSampleFormat.js +1 -0
- package/dist/models/ProgressiveWavMuxing.d.ts +22 -0
- package/dist/models/ProgressiveWavMuxing.js +45 -0
- package/dist/models/ProgressiveWavMuxingInformation.d.ts +9 -0
- package/dist/models/ProgressiveWavMuxingInformation.js +36 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/notifications/webhooks/encoding/encodings/EncodingsApi.d.ts +2 -0
- package/dist/notifications/webhooks/encoding/encodings/EncodingsApi.js +2 -0
- package/dist/notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatApi.d.ts +43 -0
- package/dist/notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatApi.js +94 -0
- package/dist/notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatWebhookListQueryParams.d.ts +28 -0
- package/dist/notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatWebhookListQueryParams.js +29 -0
- package/package.json +1 -1
|
@@ -5500,7 +5500,8 @@ exports["default"] = BitmovinError;
|
|
|
5500
5500
|
"use strict";
|
|
5501
5501
|
|
|
5502
5502
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
5503
|
-
exports.
|
|
5503
|
+
exports.buildBitmovinError = buildBitmovinError;
|
|
5504
|
+
exports.buildBitmovinErrorFromError = buildBitmovinErrorFromError;
|
|
5504
5505
|
var BitmovinError_1 = __webpack_require__(/*! ./BitmovinError */ "./common/BitmovinError.ts");
|
|
5505
5506
|
function appendLine(message, messageToAppend) {
|
|
5506
5507
|
return "".concat(message).concat(messageToAppend, "\n");
|
|
@@ -5585,7 +5586,6 @@ function buildBitmovinError(additionalInfo, request, response, errorResponse, er
|
|
|
5585
5586
|
}
|
|
5586
5587
|
return bitmovinError;
|
|
5587
5588
|
}
|
|
5588
|
-
exports.buildBitmovinError = buildBitmovinError;
|
|
5589
5589
|
function buildBitmovinErrorFromError(request, error) {
|
|
5590
5590
|
var shortMessage = "Request failed: ".concat(error.message);
|
|
5591
5591
|
var message = appendLine('', shortMessage);
|
|
@@ -5596,7 +5596,6 @@ function buildBitmovinErrorFromError(request, error) {
|
|
|
5596
5596
|
}
|
|
5597
5597
|
return bitmovinError;
|
|
5598
5598
|
}
|
|
5599
|
-
exports.buildBitmovinErrorFromError = buildBitmovinErrorFromError;
|
|
5600
5599
|
|
|
5601
5600
|
|
|
5602
5601
|
/***/ }),
|
|
@@ -5730,19 +5729,18 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
5730
5729
|
"use strict";
|
|
5731
5730
|
|
|
5732
5731
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
5733
|
-
exports.
|
|
5732
|
+
exports.map = map;
|
|
5733
|
+
exports.mapArray = mapArray;
|
|
5734
5734
|
var models = __webpack_require__(/*! ../models */ "./models/index.ts");
|
|
5735
5735
|
function map(value, clazz) {
|
|
5736
5736
|
return mapInternal(value, clazz);
|
|
5737
5737
|
}
|
|
5738
|
-
exports.map = map;
|
|
5739
5738
|
function mapArray(value, clazz) {
|
|
5740
5739
|
if (!value) {
|
|
5741
5740
|
return [];
|
|
5742
5741
|
}
|
|
5743
5742
|
return value.map(function (item) { return mapInternal(item, clazz); });
|
|
5744
5743
|
}
|
|
5745
|
-
exports.mapArray = mapArray;
|
|
5746
5744
|
function mapInternal(value, clazz) {
|
|
5747
5745
|
if (!value) {
|
|
5748
5746
|
return value;
|
|
@@ -5904,7 +5902,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
5904
5902
|
}
|
|
5905
5903
|
};
|
|
5906
5904
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
5907
|
-
exports.RestClient =
|
|
5905
|
+
exports.RestClient = void 0;
|
|
5906
|
+
exports.copyAndPrepareBody = copyAndPrepareBody;
|
|
5908
5907
|
var e6p = __webpack_require__(/*! es6-promise */ "../node_modules/es6-promise/dist/es6-promise.js");
|
|
5909
5908
|
var urljoin = __webpack_require__(/*! url-join */ "../node_modules/url-join/lib/url-join.js");
|
|
5910
5909
|
var isomorphicFetch = __webpack_require__(/*! isomorphic-fetch */ "../node_modules/isomorphic-fetch/fetch-npm-browserify.js");
|
|
@@ -5987,7 +5986,6 @@ function copyAndPrepareBody(value) {
|
|
|
5987
5986
|
}
|
|
5988
5987
|
return cloned;
|
|
5989
5988
|
}
|
|
5990
|
-
exports.copyAndPrepareBody = copyAndPrepareBody;
|
|
5991
5989
|
function isPrimitive(arg) {
|
|
5992
5990
|
var type = typeof arg;
|
|
5993
5991
|
return arg == null || (type != 'object' && type != 'function');
|
|
@@ -6093,7 +6091,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6093
6091
|
var headers = {
|
|
6094
6092
|
'X-Api-Key': apiKey,
|
|
6095
6093
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6096
|
-
'X-Api-Client-Version': '1.
|
|
6094
|
+
'X-Api-Client-Version': '1.198.0',
|
|
6097
6095
|
'Content-Type': 'application/json'
|
|
6098
6096
|
};
|
|
6099
6097
|
if (tenantOrgId) {
|
|
@@ -16541,6 +16539,7 @@ var Mp4Api_1 = __webpack_require__(/*! ./mp4/Mp4Api */ "./encoding/encodings/mux
|
|
|
16541
16539
|
var MxfApi_1 = __webpack_require__(/*! ./mxf/MxfApi */ "./encoding/encodings/muxings/mxf/MxfApi.ts");
|
|
16542
16540
|
var ProgressiveTsApi_1 = __webpack_require__(/*! ./progressiveTs/ProgressiveTsApi */ "./encoding/encodings/muxings/progressiveTs/ProgressiveTsApi.ts");
|
|
16543
16541
|
var BroadcastTsApi_1 = __webpack_require__(/*! ./broadcastTs/BroadcastTsApi */ "./encoding/encodings/muxings/broadcastTs/BroadcastTsApi.ts");
|
|
16542
|
+
var ProgressiveWavApi_1 = __webpack_require__(/*! ./progressiveWav/ProgressiveWavApi */ "./encoding/encodings/muxings/progressiveWav/ProgressiveWavApi.ts");
|
|
16544
16543
|
var ProgressiveWebmApi_1 = __webpack_require__(/*! ./progressiveWebm/ProgressiveWebmApi */ "./encoding/encodings/muxings/progressiveWebm/ProgressiveWebmApi.ts");
|
|
16545
16544
|
var ProgressiveMovApi_1 = __webpack_require__(/*! ./progressiveMov/ProgressiveMovApi */ "./encoding/encodings/muxings/progressiveMov/ProgressiveMovApi.ts");
|
|
16546
16545
|
var Muxing_1 = __webpack_require__(/*! ../../../models/Muxing */ "./models/Muxing.ts");
|
|
@@ -16570,6 +16569,7 @@ var MuxingsApi = /** @class */ (function (_super) {
|
|
|
16570
16569
|
_this.mxf = new MxfApi_1.default(configuration);
|
|
16571
16570
|
_this.progressiveTs = new ProgressiveTsApi_1.default(configuration);
|
|
16572
16571
|
_this.broadcastTs = new BroadcastTsApi_1.default(configuration);
|
|
16572
|
+
_this.progressiveWav = new ProgressiveWavApi_1.default(configuration);
|
|
16573
16573
|
_this.progressiveWebm = new ProgressiveWebmApi_1.default(configuration);
|
|
16574
16574
|
_this.progressiveMov = new ProgressiveMovApi_1.default(configuration);
|
|
16575
16575
|
return _this;
|
|
@@ -24801,6 +24801,290 @@ var InformationApi = /** @class */ (function (_super) {
|
|
|
24801
24801
|
exports["default"] = InformationApi;
|
|
24802
24802
|
|
|
24803
24803
|
|
|
24804
|
+
/***/ }),
|
|
24805
|
+
|
|
24806
|
+
/***/ "./encoding/encodings/muxings/progressiveWav/ProgressiveWavApi.ts":
|
|
24807
|
+
/*!************************************************************************!*\
|
|
24808
|
+
!*** ./encoding/encodings/muxings/progressiveWav/ProgressiveWavApi.ts ***!
|
|
24809
|
+
\************************************************************************/
|
|
24810
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24811
|
+
|
|
24812
|
+
"use strict";
|
|
24813
|
+
|
|
24814
|
+
var __extends = (this && this.__extends) || (function () {
|
|
24815
|
+
var extendStatics = function (d, b) {
|
|
24816
|
+
extendStatics = Object.setPrototypeOf ||
|
|
24817
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
24818
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
24819
|
+
return extendStatics(d, b);
|
|
24820
|
+
};
|
|
24821
|
+
return function (d, b) {
|
|
24822
|
+
if (typeof b !== "function" && b !== null)
|
|
24823
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
24824
|
+
extendStatics(d, b);
|
|
24825
|
+
function __() { this.constructor = d; }
|
|
24826
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24827
|
+
};
|
|
24828
|
+
})();
|
|
24829
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24830
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
24831
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
24832
|
+
var CustomdataApi_1 = __webpack_require__(/*! ./customdata/CustomdataApi */ "./encoding/encodings/muxings/progressiveWav/customdata/CustomdataApi.ts");
|
|
24833
|
+
var InformationApi_1 = __webpack_require__(/*! ./information/InformationApi */ "./encoding/encodings/muxings/progressiveWav/information/InformationApi.ts");
|
|
24834
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
24835
|
+
var ProgressiveWavMuxing_1 = __webpack_require__(/*! ../../../../models/ProgressiveWavMuxing */ "./models/ProgressiveWavMuxing.ts");
|
|
24836
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
24837
|
+
var ProgressiveWavMuxingListQueryParams_1 = __webpack_require__(/*! ./ProgressiveWavMuxingListQueryParams */ "./encoding/encodings/muxings/progressiveWav/ProgressiveWavMuxingListQueryParams.ts");
|
|
24838
|
+
/**
|
|
24839
|
+
* ProgressiveWavApi - object-oriented interface
|
|
24840
|
+
* @export
|
|
24841
|
+
* @class ProgressiveWavApi
|
|
24842
|
+
* @extends {BaseAPI}
|
|
24843
|
+
*/
|
|
24844
|
+
var ProgressiveWavApi = /** @class */ (function (_super) {
|
|
24845
|
+
__extends(ProgressiveWavApi, _super);
|
|
24846
|
+
function ProgressiveWavApi(configuration) {
|
|
24847
|
+
var _this = _super.call(this, configuration) || this;
|
|
24848
|
+
_this.customdata = new CustomdataApi_1.default(configuration);
|
|
24849
|
+
_this.information = new InformationApi_1.default(configuration);
|
|
24850
|
+
return _this;
|
|
24851
|
+
}
|
|
24852
|
+
/**
|
|
24853
|
+
* @summary Add Progressive Wav muxing
|
|
24854
|
+
* @param {string} encodingId Id of the encoding.
|
|
24855
|
+
* @param {ProgressiveWavMuxing} progressiveWavMuxing The Progressive WAV muxing to be created
|
|
24856
|
+
* @throws {BitmovinError}
|
|
24857
|
+
* @memberof ProgressiveWavApi
|
|
24858
|
+
*/
|
|
24859
|
+
ProgressiveWavApi.prototype.create = function (encodingId, progressiveWavMuxing) {
|
|
24860
|
+
var pathParamMap = {
|
|
24861
|
+
encoding_id: encodingId
|
|
24862
|
+
};
|
|
24863
|
+
return this.restClient.post('/encoding/encodings/{encoding_id}/muxings/progressive-wav', pathParamMap, progressiveWavMuxing).then(function (response) {
|
|
24864
|
+
return (0, Mapper_1.map)(response, ProgressiveWavMuxing_1.default);
|
|
24865
|
+
});
|
|
24866
|
+
};
|
|
24867
|
+
/**
|
|
24868
|
+
* @summary Delete Progressive WAV muxing
|
|
24869
|
+
* @param {string} encodingId Id of the encoding.
|
|
24870
|
+
* @param {string} muxingId Id of the Progressive WAV muxing
|
|
24871
|
+
* @throws {BitmovinError}
|
|
24872
|
+
* @memberof ProgressiveWavApi
|
|
24873
|
+
*/
|
|
24874
|
+
ProgressiveWavApi.prototype.delete = function (encodingId, muxingId) {
|
|
24875
|
+
var pathParamMap = {
|
|
24876
|
+
encoding_id: encodingId,
|
|
24877
|
+
muxing_id: muxingId
|
|
24878
|
+
};
|
|
24879
|
+
return this.restClient.delete('/encoding/encodings/{encoding_id}/muxings/progressive-wav/{muxing_id}', pathParamMap).then(function (response) {
|
|
24880
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
24881
|
+
});
|
|
24882
|
+
};
|
|
24883
|
+
/**
|
|
24884
|
+
* @summary Progressive WAV muxing details
|
|
24885
|
+
* @param {string} encodingId Id of the encoding.
|
|
24886
|
+
* @param {string} muxingId Id of the Progressive WAV muxing
|
|
24887
|
+
* @throws {BitmovinError}
|
|
24888
|
+
* @memberof ProgressiveWavApi
|
|
24889
|
+
*/
|
|
24890
|
+
ProgressiveWavApi.prototype.get = function (encodingId, muxingId) {
|
|
24891
|
+
var pathParamMap = {
|
|
24892
|
+
encoding_id: encodingId,
|
|
24893
|
+
muxing_id: muxingId
|
|
24894
|
+
};
|
|
24895
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/muxings/progressive-wav/{muxing_id}', pathParamMap).then(function (response) {
|
|
24896
|
+
return (0, Mapper_1.map)(response, ProgressiveWavMuxing_1.default);
|
|
24897
|
+
});
|
|
24898
|
+
};
|
|
24899
|
+
/**
|
|
24900
|
+
* @summary List Progressive WAV muxings
|
|
24901
|
+
* @param {string} encodingId Id of the encoding.
|
|
24902
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
24903
|
+
* @throws {BitmovinError}
|
|
24904
|
+
* @memberof ProgressiveWavApi
|
|
24905
|
+
*/
|
|
24906
|
+
ProgressiveWavApi.prototype.list = function (encodingId, queryParameters) {
|
|
24907
|
+
var pathParamMap = {
|
|
24908
|
+
encoding_id: encodingId
|
|
24909
|
+
};
|
|
24910
|
+
var queryParams = {};
|
|
24911
|
+
if (typeof queryParameters === 'function') {
|
|
24912
|
+
queryParams = queryParameters(new ProgressiveWavMuxingListQueryParams_1.ProgressiveWavMuxingListQueryParamsBuilder()).buildQueryParams();
|
|
24913
|
+
}
|
|
24914
|
+
else if (queryParameters) {
|
|
24915
|
+
queryParams = queryParameters;
|
|
24916
|
+
}
|
|
24917
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/muxings/progressive-wav', pathParamMap, queryParams).then(function (response) {
|
|
24918
|
+
return new PaginationResponse_1.default(response, ProgressiveWavMuxing_1.default);
|
|
24919
|
+
});
|
|
24920
|
+
};
|
|
24921
|
+
return ProgressiveWavApi;
|
|
24922
|
+
}(BaseAPI_1.BaseAPI));
|
|
24923
|
+
exports["default"] = ProgressiveWavApi;
|
|
24924
|
+
|
|
24925
|
+
|
|
24926
|
+
/***/ }),
|
|
24927
|
+
|
|
24928
|
+
/***/ "./encoding/encodings/muxings/progressiveWav/ProgressiveWavMuxingListQueryParams.ts":
|
|
24929
|
+
/*!******************************************************************************************!*\
|
|
24930
|
+
!*** ./encoding/encodings/muxings/progressiveWav/ProgressiveWavMuxingListQueryParams.ts ***!
|
|
24931
|
+
\******************************************************************************************/
|
|
24932
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
24933
|
+
|
|
24934
|
+
"use strict";
|
|
24935
|
+
|
|
24936
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24937
|
+
exports.ProgressiveWavMuxingListQueryParamsBuilder = void 0;
|
|
24938
|
+
var ProgressiveWavMuxingListQueryParamsBuilder = /** @class */ (function () {
|
|
24939
|
+
function ProgressiveWavMuxingListQueryParamsBuilder() {
|
|
24940
|
+
this.internalParams = {};
|
|
24941
|
+
}
|
|
24942
|
+
/**
|
|
24943
|
+
*
|
|
24944
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
24945
|
+
*/
|
|
24946
|
+
ProgressiveWavMuxingListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
24947
|
+
this.internalParams.offset = offset;
|
|
24948
|
+
return this;
|
|
24949
|
+
};
|
|
24950
|
+
/**
|
|
24951
|
+
*
|
|
24952
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
24953
|
+
*/
|
|
24954
|
+
ProgressiveWavMuxingListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
24955
|
+
this.internalParams.limit = limit;
|
|
24956
|
+
return this;
|
|
24957
|
+
};
|
|
24958
|
+
ProgressiveWavMuxingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
24959
|
+
return this.internalParams;
|
|
24960
|
+
};
|
|
24961
|
+
return ProgressiveWavMuxingListQueryParamsBuilder;
|
|
24962
|
+
}());
|
|
24963
|
+
exports.ProgressiveWavMuxingListQueryParamsBuilder = ProgressiveWavMuxingListQueryParamsBuilder;
|
|
24964
|
+
|
|
24965
|
+
|
|
24966
|
+
/***/ }),
|
|
24967
|
+
|
|
24968
|
+
/***/ "./encoding/encodings/muxings/progressiveWav/customdata/CustomdataApi.ts":
|
|
24969
|
+
/*!*******************************************************************************!*\
|
|
24970
|
+
!*** ./encoding/encodings/muxings/progressiveWav/customdata/CustomdataApi.ts ***!
|
|
24971
|
+
\*******************************************************************************/
|
|
24972
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
24973
|
+
|
|
24974
|
+
"use strict";
|
|
24975
|
+
|
|
24976
|
+
var __extends = (this && this.__extends) || (function () {
|
|
24977
|
+
var extendStatics = function (d, b) {
|
|
24978
|
+
extendStatics = Object.setPrototypeOf ||
|
|
24979
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
24980
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
24981
|
+
return extendStatics(d, b);
|
|
24982
|
+
};
|
|
24983
|
+
return function (d, b) {
|
|
24984
|
+
if (typeof b !== "function" && b !== null)
|
|
24985
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
24986
|
+
extendStatics(d, b);
|
|
24987
|
+
function __() { this.constructor = d; }
|
|
24988
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24989
|
+
};
|
|
24990
|
+
})();
|
|
24991
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
24992
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
24993
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../../common/Mapper */ "./common/Mapper.ts");
|
|
24994
|
+
var CustomData_1 = __webpack_require__(/*! ../../../../../models/CustomData */ "./models/CustomData.ts");
|
|
24995
|
+
/**
|
|
24996
|
+
* CustomdataApi - object-oriented interface
|
|
24997
|
+
* @export
|
|
24998
|
+
* @class CustomdataApi
|
|
24999
|
+
* @extends {BaseAPI}
|
|
25000
|
+
*/
|
|
25001
|
+
var CustomdataApi = /** @class */ (function (_super) {
|
|
25002
|
+
__extends(CustomdataApi, _super);
|
|
25003
|
+
function CustomdataApi(configuration) {
|
|
25004
|
+
return _super.call(this, configuration) || this;
|
|
25005
|
+
}
|
|
25006
|
+
/**
|
|
25007
|
+
* @summary Progressive Wav muxing Custom Data
|
|
25008
|
+
* @param {string} encodingId Id of the encoding.
|
|
25009
|
+
* @param {string} muxingId Id of the Progressive WAV muxing
|
|
25010
|
+
* @throws {BitmovinError}
|
|
25011
|
+
* @memberof CustomdataApi
|
|
25012
|
+
*/
|
|
25013
|
+
CustomdataApi.prototype.get = function (encodingId, muxingId) {
|
|
25014
|
+
var pathParamMap = {
|
|
25015
|
+
encoding_id: encodingId,
|
|
25016
|
+
muxing_id: muxingId
|
|
25017
|
+
};
|
|
25018
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/muxings/progressive-wav/{muxing_id}/customData', pathParamMap).then(function (response) {
|
|
25019
|
+
return (0, Mapper_1.map)(response, CustomData_1.default);
|
|
25020
|
+
});
|
|
25021
|
+
};
|
|
25022
|
+
return CustomdataApi;
|
|
25023
|
+
}(BaseAPI_1.BaseAPI));
|
|
25024
|
+
exports["default"] = CustomdataApi;
|
|
25025
|
+
|
|
25026
|
+
|
|
25027
|
+
/***/ }),
|
|
25028
|
+
|
|
25029
|
+
/***/ "./encoding/encodings/muxings/progressiveWav/information/InformationApi.ts":
|
|
25030
|
+
/*!*********************************************************************************!*\
|
|
25031
|
+
!*** ./encoding/encodings/muxings/progressiveWav/information/InformationApi.ts ***!
|
|
25032
|
+
\*********************************************************************************/
|
|
25033
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
25034
|
+
|
|
25035
|
+
"use strict";
|
|
25036
|
+
|
|
25037
|
+
var __extends = (this && this.__extends) || (function () {
|
|
25038
|
+
var extendStatics = function (d, b) {
|
|
25039
|
+
extendStatics = Object.setPrototypeOf ||
|
|
25040
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
25041
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
25042
|
+
return extendStatics(d, b);
|
|
25043
|
+
};
|
|
25044
|
+
return function (d, b) {
|
|
25045
|
+
if (typeof b !== "function" && b !== null)
|
|
25046
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
25047
|
+
extendStatics(d, b);
|
|
25048
|
+
function __() { this.constructor = d; }
|
|
25049
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
25050
|
+
};
|
|
25051
|
+
})();
|
|
25052
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
25053
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
25054
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../../common/Mapper */ "./common/Mapper.ts");
|
|
25055
|
+
var ProgressiveWavMuxingInformation_1 = __webpack_require__(/*! ../../../../../models/ProgressiveWavMuxingInformation */ "./models/ProgressiveWavMuxingInformation.ts");
|
|
25056
|
+
/**
|
|
25057
|
+
* InformationApi - object-oriented interface
|
|
25058
|
+
* @export
|
|
25059
|
+
* @class InformationApi
|
|
25060
|
+
* @extends {BaseAPI}
|
|
25061
|
+
*/
|
|
25062
|
+
var InformationApi = /** @class */ (function (_super) {
|
|
25063
|
+
__extends(InformationApi, _super);
|
|
25064
|
+
function InformationApi(configuration) {
|
|
25065
|
+
return _super.call(this, configuration) || this;
|
|
25066
|
+
}
|
|
25067
|
+
/**
|
|
25068
|
+
* @summary Progressive WAV muxing Information
|
|
25069
|
+
* @param {string} encodingId ID of the Encoding.
|
|
25070
|
+
* @param {string} muxingId ID of the Progressive WAV muxing
|
|
25071
|
+
* @throws {BitmovinError}
|
|
25072
|
+
* @memberof InformationApi
|
|
25073
|
+
*/
|
|
25074
|
+
InformationApi.prototype.get = function (encodingId, muxingId) {
|
|
25075
|
+
var pathParamMap = {
|
|
25076
|
+
encoding_id: encodingId,
|
|
25077
|
+
muxing_id: muxingId
|
|
25078
|
+
};
|
|
25079
|
+
return this.restClient.get('/encoding/encodings/{encoding_id}/muxings/progressive-wav/{muxing_id}/information', pathParamMap).then(function (response) {
|
|
25080
|
+
return (0, Mapper_1.map)(response, ProgressiveWavMuxingInformation_1.default);
|
|
25081
|
+
});
|
|
25082
|
+
};
|
|
25083
|
+
return InformationApi;
|
|
25084
|
+
}(BaseAPI_1.BaseAPI));
|
|
25085
|
+
exports["default"] = InformationApi;
|
|
25086
|
+
|
|
25087
|
+
|
|
24804
25088
|
/***/ }),
|
|
24805
25089
|
|
|
24806
25090
|
/***/ "./encoding/encodings/muxings/progressiveWebm/ProgressiveWebmApi.ts":
|
|
@@ -62748,6 +63032,7 @@ var CloudRegion;
|
|
|
62748
63032
|
CloudRegion["GOOGLE_SOUTHAMERICA_EAST_1"] = "GOOGLE_SOUTHAMERICA_EAST_1";
|
|
62749
63033
|
CloudRegion["GOOGLE_US_EAST_4"] = "GOOGLE_US_EAST_4";
|
|
62750
63034
|
CloudRegion["GOOGLE_US_WEST_2"] = "GOOGLE_US_WEST_2";
|
|
63035
|
+
CloudRegion["GOOGLE_ME_CENTRAL_2"] = "GOOGLE_ME_CENTRAL_2";
|
|
62751
63036
|
CloudRegion["AZURE_ASIA_EAST"] = "AZURE_ASIA_EAST";
|
|
62752
63037
|
CloudRegion["AZURE_ASIA_SOUTHEAST"] = "AZURE_ASIA_SOUTHEAST";
|
|
62753
63038
|
CloudRegion["AZURE_AUSTRALIA_EAST"] = "AZURE_AUSTRALIA_EAST";
|
|
@@ -70302,6 +70587,7 @@ var GoogleCloudRegion;
|
|
|
70302
70587
|
GoogleCloudRegion["SOUTHAMERICA_EAST_1"] = "SOUTHAMERICA_EAST_1";
|
|
70303
70588
|
GoogleCloudRegion["US_EAST_4"] = "US_EAST_4";
|
|
70304
70589
|
GoogleCloudRegion["US_WEST_2"] = "US_WEST_2";
|
|
70590
|
+
GoogleCloudRegion["ME_CENTRAL_2"] = "ME_CENTRAL_2";
|
|
70305
70591
|
})(GoogleCloudRegion || (exports.GoogleCloudRegion = GoogleCloudRegion = {}));
|
|
70306
70592
|
exports["default"] = GoogleCloudRegion;
|
|
70307
70593
|
|
|
@@ -73495,6 +73781,55 @@ var LiveEncodingEventName;
|
|
|
73495
73781
|
exports["default"] = LiveEncodingEventName;
|
|
73496
73782
|
|
|
73497
73783
|
|
|
73784
|
+
/***/ }),
|
|
73785
|
+
|
|
73786
|
+
/***/ "./models/LiveEncodingHeartbeatWebhook.ts":
|
|
73787
|
+
/*!************************************************!*\
|
|
73788
|
+
!*** ./models/LiveEncodingHeartbeatWebhook.ts ***!
|
|
73789
|
+
\************************************************/
|
|
73790
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
73791
|
+
|
|
73792
|
+
"use strict";
|
|
73793
|
+
|
|
73794
|
+
var __extends = (this && this.__extends) || (function () {
|
|
73795
|
+
var extendStatics = function (d, b) {
|
|
73796
|
+
extendStatics = Object.setPrototypeOf ||
|
|
73797
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
73798
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
73799
|
+
return extendStatics(d, b);
|
|
73800
|
+
};
|
|
73801
|
+
return function (d, b) {
|
|
73802
|
+
if (typeof b !== "function" && b !== null)
|
|
73803
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
73804
|
+
extendStatics(d, b);
|
|
73805
|
+
function __() { this.constructor = d; }
|
|
73806
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
73807
|
+
};
|
|
73808
|
+
})();
|
|
73809
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
73810
|
+
exports.LiveEncodingHeartbeatWebhook = void 0;
|
|
73811
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
73812
|
+
var Webhook_1 = __webpack_require__(/*! ./Webhook */ "./models/Webhook.ts");
|
|
73813
|
+
/**
|
|
73814
|
+
* @export
|
|
73815
|
+
* @class LiveEncodingHeartbeatWebhook
|
|
73816
|
+
*/
|
|
73817
|
+
var LiveEncodingHeartbeatWebhook = /** @class */ (function (_super) {
|
|
73818
|
+
__extends(LiveEncodingHeartbeatWebhook, _super);
|
|
73819
|
+
function LiveEncodingHeartbeatWebhook(obj) {
|
|
73820
|
+
var _this = _super.call(this, obj) || this;
|
|
73821
|
+
if (!obj) {
|
|
73822
|
+
return _this;
|
|
73823
|
+
}
|
|
73824
|
+
_this.interval = (0, Mapper_1.map)(obj.interval);
|
|
73825
|
+
return _this;
|
|
73826
|
+
}
|
|
73827
|
+
return LiveEncodingHeartbeatWebhook;
|
|
73828
|
+
}(Webhook_1.default));
|
|
73829
|
+
exports.LiveEncodingHeartbeatWebhook = LiveEncodingHeartbeatWebhook;
|
|
73830
|
+
exports["default"] = LiveEncodingHeartbeatWebhook;
|
|
73831
|
+
|
|
73832
|
+
|
|
73498
73833
|
/***/ }),
|
|
73499
73834
|
|
|
73500
73835
|
/***/ "./models/LiveEncodingOptionsStatistics.ts":
|
|
@@ -75044,6 +75379,7 @@ var Muxing = /** @class */ (function (_super) {
|
|
|
75044
75379
|
WEBM: 'WebmMuxing',
|
|
75045
75380
|
MP3: 'Mp3Muxing',
|
|
75046
75381
|
MXF: 'MxfMuxing',
|
|
75382
|
+
PROGRESSIVE_WAV: 'ProgressiveWavMuxing',
|
|
75047
75383
|
PROGRESSIVE_WEBM: 'ProgressiveWebmMuxing',
|
|
75048
75384
|
PROGRESSIVE_MOV: 'ProgressiveMovMuxing',
|
|
75049
75385
|
PROGRESSIVE_TS: 'ProgressiveTsMuxing',
|
|
@@ -75194,6 +75530,7 @@ var MuxingType;
|
|
|
75194
75530
|
MuxingType["WEBM"] = "WEBM";
|
|
75195
75531
|
MuxingType["MP3"] = "MP3";
|
|
75196
75532
|
MuxingType["MXF"] = "MXF";
|
|
75533
|
+
MuxingType["PROGRESSIVE_WAV"] = "PROGRESSIVE_WAV";
|
|
75197
75534
|
MuxingType["PROGRESSIVE_WEBM"] = "PROGRESSIVE_WEBM";
|
|
75198
75535
|
MuxingType["PROGRESSIVE_MOV"] = "PROGRESSIVE_MOV";
|
|
75199
75536
|
MuxingType["PROGRESSIVE_TS"] = "PROGRESSIVE_TS";
|
|
@@ -76370,6 +76707,7 @@ exports.PcmChannelLayout = void 0;
|
|
|
76370
76707
|
var PcmChannelLayout;
|
|
76371
76708
|
(function (PcmChannelLayout) {
|
|
76372
76709
|
PcmChannelLayout["MONO"] = "MONO";
|
|
76710
|
+
PcmChannelLayout["STEREO"] = "STEREO";
|
|
76373
76711
|
})(PcmChannelLayout || (exports.PcmChannelLayout = PcmChannelLayout = {}));
|
|
76374
76712
|
exports["default"] = PcmChannelLayout;
|
|
76375
76713
|
|
|
@@ -76417,6 +76755,7 @@ var PcmSampleFormat;
|
|
|
76417
76755
|
(function (PcmSampleFormat) {
|
|
76418
76756
|
PcmSampleFormat["S16LE"] = "S16LE";
|
|
76419
76757
|
PcmSampleFormat["S24LE"] = "S24LE";
|
|
76758
|
+
PcmSampleFormat["S32LE"] = "S32LE";
|
|
76420
76759
|
})(PcmSampleFormat || (exports.PcmSampleFormat = PcmSampleFormat = {}));
|
|
76421
76760
|
exports["default"] = PcmSampleFormat;
|
|
76422
76761
|
|
|
@@ -77912,6 +78251,109 @@ exports.ProgressiveTsMuxingInformationByteRanges = ProgressiveTsMuxingInformatio
|
|
|
77912
78251
|
exports["default"] = ProgressiveTsMuxingInformationByteRanges;
|
|
77913
78252
|
|
|
77914
78253
|
|
|
78254
|
+
/***/ }),
|
|
78255
|
+
|
|
78256
|
+
/***/ "./models/ProgressiveWavMuxing.ts":
|
|
78257
|
+
/*!****************************************!*\
|
|
78258
|
+
!*** ./models/ProgressiveWavMuxing.ts ***!
|
|
78259
|
+
\****************************************/
|
|
78260
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
78261
|
+
|
|
78262
|
+
"use strict";
|
|
78263
|
+
|
|
78264
|
+
var __extends = (this && this.__extends) || (function () {
|
|
78265
|
+
var extendStatics = function (d, b) {
|
|
78266
|
+
extendStatics = Object.setPrototypeOf ||
|
|
78267
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
78268
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
78269
|
+
return extendStatics(d, b);
|
|
78270
|
+
};
|
|
78271
|
+
return function (d, b) {
|
|
78272
|
+
if (typeof b !== "function" && b !== null)
|
|
78273
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78274
|
+
extendStatics(d, b);
|
|
78275
|
+
function __() { this.constructor = d; }
|
|
78276
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
78277
|
+
};
|
|
78278
|
+
})();
|
|
78279
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78280
|
+
exports.ProgressiveWavMuxing = void 0;
|
|
78281
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
78282
|
+
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
78283
|
+
var MuxingType_1 = __webpack_require__(/*! ./MuxingType */ "./models/MuxingType.ts");
|
|
78284
|
+
/**
|
|
78285
|
+
* @export
|
|
78286
|
+
* @class ProgressiveWavMuxing
|
|
78287
|
+
*/
|
|
78288
|
+
var ProgressiveWavMuxing = /** @class */ (function (_super) {
|
|
78289
|
+
__extends(ProgressiveWavMuxing, _super);
|
|
78290
|
+
function ProgressiveWavMuxing(obj) {
|
|
78291
|
+
var _this = _super.call(this, obj) || this;
|
|
78292
|
+
/**
|
|
78293
|
+
* Discriminator property for Muxing
|
|
78294
|
+
* @type {string}
|
|
78295
|
+
* @memberof ProgressiveWavMuxing
|
|
78296
|
+
*/
|
|
78297
|
+
_this.type = MuxingType_1.default.PROGRESSIVE_WAV;
|
|
78298
|
+
if (!obj) {
|
|
78299
|
+
return _this;
|
|
78300
|
+
}
|
|
78301
|
+
_this.filename = (0, Mapper_1.map)(obj.filename);
|
|
78302
|
+
return _this;
|
|
78303
|
+
}
|
|
78304
|
+
return ProgressiveWavMuxing;
|
|
78305
|
+
}(Muxing_1.default));
|
|
78306
|
+
exports.ProgressiveWavMuxing = ProgressiveWavMuxing;
|
|
78307
|
+
exports["default"] = ProgressiveWavMuxing;
|
|
78308
|
+
|
|
78309
|
+
|
|
78310
|
+
/***/ }),
|
|
78311
|
+
|
|
78312
|
+
/***/ "./models/ProgressiveWavMuxingInformation.ts":
|
|
78313
|
+
/*!***************************************************!*\
|
|
78314
|
+
!*** ./models/ProgressiveWavMuxingInformation.ts ***!
|
|
78315
|
+
\***************************************************/
|
|
78316
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
78317
|
+
|
|
78318
|
+
"use strict";
|
|
78319
|
+
|
|
78320
|
+
var __extends = (this && this.__extends) || (function () {
|
|
78321
|
+
var extendStatics = function (d, b) {
|
|
78322
|
+
extendStatics = Object.setPrototypeOf ||
|
|
78323
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
78324
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
78325
|
+
return extendStatics(d, b);
|
|
78326
|
+
};
|
|
78327
|
+
return function (d, b) {
|
|
78328
|
+
if (typeof b !== "function" && b !== null)
|
|
78329
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78330
|
+
extendStatics(d, b);
|
|
78331
|
+
function __() { this.constructor = d; }
|
|
78332
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
78333
|
+
};
|
|
78334
|
+
})();
|
|
78335
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78336
|
+
exports.ProgressiveWavMuxingInformation = void 0;
|
|
78337
|
+
var ProgressiveMuxingInformation_1 = __webpack_require__(/*! ./ProgressiveMuxingInformation */ "./models/ProgressiveMuxingInformation.ts");
|
|
78338
|
+
/**
|
|
78339
|
+
* @export
|
|
78340
|
+
* @class ProgressiveWavMuxingInformation
|
|
78341
|
+
*/
|
|
78342
|
+
var ProgressiveWavMuxingInformation = /** @class */ (function (_super) {
|
|
78343
|
+
__extends(ProgressiveWavMuxingInformation, _super);
|
|
78344
|
+
function ProgressiveWavMuxingInformation(obj) {
|
|
78345
|
+
var _this = _super.call(this, obj) || this;
|
|
78346
|
+
if (!obj) {
|
|
78347
|
+
return _this;
|
|
78348
|
+
}
|
|
78349
|
+
return _this;
|
|
78350
|
+
}
|
|
78351
|
+
return ProgressiveWavMuxingInformation;
|
|
78352
|
+
}(ProgressiveMuxingInformation_1.default));
|
|
78353
|
+
exports.ProgressiveWavMuxingInformation = ProgressiveWavMuxingInformation;
|
|
78354
|
+
exports["default"] = ProgressiveWavMuxingInformation;
|
|
78355
|
+
|
|
78356
|
+
|
|
77915
78357
|
/***/ }),
|
|
77916
78358
|
|
|
77917
78359
|
/***/ "./models/ProgressiveWebmMuxing.ts":
|
|
@@ -88088,6 +88530,7 @@ __exportStar(__webpack_require__(/*! ./LiveDashManifest */ "./models/LiveDashMan
|
|
|
88088
88530
|
__exportStar(__webpack_require__(/*! ./LiveEncoding */ "./models/LiveEncoding.ts"), exports);
|
|
88089
88531
|
__exportStar(__webpack_require__(/*! ./LiveEncodingCodec */ "./models/LiveEncodingCodec.ts"), exports);
|
|
88090
88532
|
__exportStar(__webpack_require__(/*! ./LiveEncodingEventName */ "./models/LiveEncodingEventName.ts"), exports);
|
|
88533
|
+
__exportStar(__webpack_require__(/*! ./LiveEncodingHeartbeatWebhook */ "./models/LiveEncodingHeartbeatWebhook.ts"), exports);
|
|
88091
88534
|
__exportStar(__webpack_require__(/*! ./LiveEncodingOptionsStatistics */ "./models/LiveEncodingOptionsStatistics.ts"), exports);
|
|
88092
88535
|
__exportStar(__webpack_require__(/*! ./LiveEncodingStats */ "./models/LiveEncodingStats.ts"), exports);
|
|
88093
88536
|
__exportStar(__webpack_require__(/*! ./LiveEncodingStatsEvent */ "./models/LiveEncodingStatsEvent.ts"), exports);
|
|
@@ -88204,6 +88647,8 @@ __exportStar(__webpack_require__(/*! ./ProgressiveMuxingInformation */ "./models
|
|
|
88204
88647
|
__exportStar(__webpack_require__(/*! ./ProgressiveTsMuxing */ "./models/ProgressiveTsMuxing.ts"), exports);
|
|
88205
88648
|
__exportStar(__webpack_require__(/*! ./ProgressiveTsMuxingInformation */ "./models/ProgressiveTsMuxingInformation.ts"), exports);
|
|
88206
88649
|
__exportStar(__webpack_require__(/*! ./ProgressiveTsMuxingInformationByteRanges */ "./models/ProgressiveTsMuxingInformationByteRanges.ts"), exports);
|
|
88650
|
+
__exportStar(__webpack_require__(/*! ./ProgressiveWavMuxing */ "./models/ProgressiveWavMuxing.ts"), exports);
|
|
88651
|
+
__exportStar(__webpack_require__(/*! ./ProgressiveWavMuxingInformation */ "./models/ProgressiveWavMuxingInformation.ts"), exports);
|
|
88207
88652
|
__exportStar(__webpack_require__(/*! ./ProgressiveWebmMuxing */ "./models/ProgressiveWebmMuxing.ts"), exports);
|
|
88208
88653
|
__exportStar(__webpack_require__(/*! ./ProgressiveWebmMuxingInformation */ "./models/ProgressiveWebmMuxingInformation.ts"), exports);
|
|
88209
88654
|
__exportStar(__webpack_require__(/*! ./ProgressiveWebmMuxingManifestType */ "./models/ProgressiveWebmMuxingManifestType.ts"), exports);
|
|
@@ -89524,6 +89969,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
89524
89969
|
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
89525
89970
|
var FinishedApi_1 = __webpack_require__(/*! ./finished/FinishedApi */ "./notifications/webhooks/encoding/encodings/finished/FinishedApi.ts");
|
|
89526
89971
|
var ErrorApi_1 = __webpack_require__(/*! ./error/ErrorApi */ "./notifications/webhooks/encoding/encodings/error/ErrorApi.ts");
|
|
89972
|
+
var LiveEncodingHeartbeatApi_1 = __webpack_require__(/*! ./liveEncodingHeartbeat/LiveEncodingHeartbeatApi */ "./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatApi.ts");
|
|
89527
89973
|
var TransferErrorApi_1 = __webpack_require__(/*! ./transferError/TransferErrorApi */ "./notifications/webhooks/encoding/encodings/transferError/TransferErrorApi.ts");
|
|
89528
89974
|
var LiveInputStreamChangedApi_1 = __webpack_require__(/*! ./liveInputStreamChanged/LiveInputStreamChangedApi */ "./notifications/webhooks/encoding/encodings/liveInputStreamChanged/LiveInputStreamChangedApi.ts");
|
|
89529
89975
|
var EncodingStatusChangedApi_1 = __webpack_require__(/*! ./encodingStatusChanged/EncodingStatusChangedApi */ "./notifications/webhooks/encoding/encodings/encodingStatusChanged/EncodingStatusChangedApi.ts");
|
|
@@ -89539,6 +89985,7 @@ var EncodingsApi = /** @class */ (function (_super) {
|
|
|
89539
89985
|
var _this = _super.call(this, configuration) || this;
|
|
89540
89986
|
_this.finished = new FinishedApi_1.default(configuration);
|
|
89541
89987
|
_this.error = new ErrorApi_1.default(configuration);
|
|
89988
|
+
_this.liveEncodingHeartbeat = new LiveEncodingHeartbeatApi_1.default(configuration);
|
|
89542
89989
|
_this.transferError = new TransferErrorApi_1.default(configuration);
|
|
89543
89990
|
_this.liveInputStreamChanged = new LiveInputStreamChangedApi_1.default(configuration);
|
|
89544
89991
|
_this.encodingStatusChanged = new EncodingStatusChangedApi_1.default(configuration);
|
|
@@ -90316,6 +90763,151 @@ var CustomdataApi = /** @class */ (function (_super) {
|
|
|
90316
90763
|
exports["default"] = CustomdataApi;
|
|
90317
90764
|
|
|
90318
90765
|
|
|
90766
|
+
/***/ }),
|
|
90767
|
+
|
|
90768
|
+
/***/ "./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatApi.ts":
|
|
90769
|
+
/*!*****************************************************************************************************!*\
|
|
90770
|
+
!*** ./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatApi.ts ***!
|
|
90771
|
+
\*****************************************************************************************************/
|
|
90772
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
90773
|
+
|
|
90774
|
+
"use strict";
|
|
90775
|
+
|
|
90776
|
+
var __extends = (this && this.__extends) || (function () {
|
|
90777
|
+
var extendStatics = function (d, b) {
|
|
90778
|
+
extendStatics = Object.setPrototypeOf ||
|
|
90779
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
90780
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
90781
|
+
return extendStatics(d, b);
|
|
90782
|
+
};
|
|
90783
|
+
return function (d, b) {
|
|
90784
|
+
if (typeof b !== "function" && b !== null)
|
|
90785
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
90786
|
+
extendStatics(d, b);
|
|
90787
|
+
function __() { this.constructor = d; }
|
|
90788
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
90789
|
+
};
|
|
90790
|
+
})();
|
|
90791
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
90792
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
90793
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../../common/Mapper */ "./common/Mapper.ts");
|
|
90794
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
90795
|
+
var LiveEncodingHeartbeatWebhook_1 = __webpack_require__(/*! ../../../../../models/LiveEncodingHeartbeatWebhook */ "./models/LiveEncodingHeartbeatWebhook.ts");
|
|
90796
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
90797
|
+
var LiveEncodingHeartbeatWebhookListQueryParams_1 = __webpack_require__(/*! ./LiveEncodingHeartbeatWebhookListQueryParams */ "./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatWebhookListQueryParams.ts");
|
|
90798
|
+
/**
|
|
90799
|
+
* LiveEncodingHeartbeatApi - object-oriented interface
|
|
90800
|
+
* @export
|
|
90801
|
+
* @class LiveEncodingHeartbeatApi
|
|
90802
|
+
* @extends {BaseAPI}
|
|
90803
|
+
*/
|
|
90804
|
+
var LiveEncodingHeartbeatApi = /** @class */ (function (_super) {
|
|
90805
|
+
__extends(LiveEncodingHeartbeatApi, _super);
|
|
90806
|
+
function LiveEncodingHeartbeatApi(configuration) {
|
|
90807
|
+
return _super.call(this, configuration) || this;
|
|
90808
|
+
}
|
|
90809
|
+
/**
|
|
90810
|
+
* @summary Add 'Live Encoding Heartbeat' Webhook
|
|
90811
|
+
* @param {LiveEncodingHeartbeatWebhook} liveEncodingHeartbeatWebhook The 'Live Encoding Heartbeat' Webhook to be added.
|
|
90812
|
+
* @throws {BitmovinError}
|
|
90813
|
+
* @memberof LiveEncodingHeartbeatApi
|
|
90814
|
+
*/
|
|
90815
|
+
LiveEncodingHeartbeatApi.prototype.create = function (liveEncodingHeartbeatWebhook) {
|
|
90816
|
+
return this.restClient.post('/notifications/webhooks/encoding/encodings/live-encoding-heartbeat', {}, liveEncodingHeartbeatWebhook).then(function (response) {
|
|
90817
|
+
return (0, Mapper_1.map)(response, LiveEncodingHeartbeatWebhook_1.default);
|
|
90818
|
+
});
|
|
90819
|
+
};
|
|
90820
|
+
/**
|
|
90821
|
+
* @summary Delete 'Live Encoding Heartbeat' Webhook
|
|
90822
|
+
* @param {string} webhookId Id of the webhook
|
|
90823
|
+
* @throws {BitmovinError}
|
|
90824
|
+
* @memberof LiveEncodingHeartbeatApi
|
|
90825
|
+
*/
|
|
90826
|
+
LiveEncodingHeartbeatApi.prototype.deleteByWebhookId = function (webhookId) {
|
|
90827
|
+
var pathParamMap = {
|
|
90828
|
+
webhook_id: webhookId
|
|
90829
|
+
};
|
|
90830
|
+
return this.restClient.delete('/notifications/webhooks/encoding/encodings/live-encoding-heartbeat/{webhook_id}', pathParamMap).then(function (response) {
|
|
90831
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
90832
|
+
});
|
|
90833
|
+
};
|
|
90834
|
+
/**
|
|
90835
|
+
* @summary 'Live Encoding Heartbeat' Webhook Details
|
|
90836
|
+
* @param {string} webhookId Id of the webhook
|
|
90837
|
+
* @throws {BitmovinError}
|
|
90838
|
+
* @memberof LiveEncodingHeartbeatApi
|
|
90839
|
+
*/
|
|
90840
|
+
LiveEncodingHeartbeatApi.prototype.getByWebhookId = function (webhookId) {
|
|
90841
|
+
var pathParamMap = {
|
|
90842
|
+
webhook_id: webhookId
|
|
90843
|
+
};
|
|
90844
|
+
return this.restClient.get('/notifications/webhooks/encoding/encodings/live-encoding-heartbeat/{webhook_id}', pathParamMap).then(function (response) {
|
|
90845
|
+
return (0, Mapper_1.map)(response, LiveEncodingHeartbeatWebhook_1.default);
|
|
90846
|
+
});
|
|
90847
|
+
};
|
|
90848
|
+
/**
|
|
90849
|
+
* @summary List 'Live Encoding Heartbeat' Webhooks
|
|
90850
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
90851
|
+
* @throws {BitmovinError}
|
|
90852
|
+
* @memberof LiveEncodingHeartbeatApi
|
|
90853
|
+
*/
|
|
90854
|
+
LiveEncodingHeartbeatApi.prototype.list = function (queryParameters) {
|
|
90855
|
+
var queryParams = {};
|
|
90856
|
+
if (typeof queryParameters === 'function') {
|
|
90857
|
+
queryParams = queryParameters(new LiveEncodingHeartbeatWebhookListQueryParams_1.LiveEncodingHeartbeatWebhookListQueryParamsBuilder()).buildQueryParams();
|
|
90858
|
+
}
|
|
90859
|
+
else if (queryParameters) {
|
|
90860
|
+
queryParams = queryParameters;
|
|
90861
|
+
}
|
|
90862
|
+
return this.restClient.get('/notifications/webhooks/encoding/encodings/live-encoding-heartbeat', {}, queryParams).then(function (response) {
|
|
90863
|
+
return new PaginationResponse_1.default(response, LiveEncodingHeartbeatWebhook_1.default);
|
|
90864
|
+
});
|
|
90865
|
+
};
|
|
90866
|
+
return LiveEncodingHeartbeatApi;
|
|
90867
|
+
}(BaseAPI_1.BaseAPI));
|
|
90868
|
+
exports["default"] = LiveEncodingHeartbeatApi;
|
|
90869
|
+
|
|
90870
|
+
|
|
90871
|
+
/***/ }),
|
|
90872
|
+
|
|
90873
|
+
/***/ "./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatWebhookListQueryParams.ts":
|
|
90874
|
+
/*!************************************************************************************************************************!*\
|
|
90875
|
+
!*** ./notifications/webhooks/encoding/encodings/liveEncodingHeartbeat/LiveEncodingHeartbeatWebhookListQueryParams.ts ***!
|
|
90876
|
+
\************************************************************************************************************************/
|
|
90877
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
90878
|
+
|
|
90879
|
+
"use strict";
|
|
90880
|
+
|
|
90881
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
90882
|
+
exports.LiveEncodingHeartbeatWebhookListQueryParamsBuilder = void 0;
|
|
90883
|
+
var LiveEncodingHeartbeatWebhookListQueryParamsBuilder = /** @class */ (function () {
|
|
90884
|
+
function LiveEncodingHeartbeatWebhookListQueryParamsBuilder() {
|
|
90885
|
+
this.internalParams = {};
|
|
90886
|
+
}
|
|
90887
|
+
/**
|
|
90888
|
+
*
|
|
90889
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
90890
|
+
*/
|
|
90891
|
+
LiveEncodingHeartbeatWebhookListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
90892
|
+
this.internalParams.offset = offset;
|
|
90893
|
+
return this;
|
|
90894
|
+
};
|
|
90895
|
+
/**
|
|
90896
|
+
*
|
|
90897
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
90898
|
+
*/
|
|
90899
|
+
LiveEncodingHeartbeatWebhookListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
90900
|
+
this.internalParams.limit = limit;
|
|
90901
|
+
return this;
|
|
90902
|
+
};
|
|
90903
|
+
LiveEncodingHeartbeatWebhookListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
90904
|
+
return this.internalParams;
|
|
90905
|
+
};
|
|
90906
|
+
return LiveEncodingHeartbeatWebhookListQueryParamsBuilder;
|
|
90907
|
+
}());
|
|
90908
|
+
exports.LiveEncodingHeartbeatWebhookListQueryParamsBuilder = LiveEncodingHeartbeatWebhookListQueryParamsBuilder;
|
|
90909
|
+
|
|
90910
|
+
|
|
90319
90911
|
/***/ }),
|
|
90320
90912
|
|
|
90321
90913
|
/***/ "./notifications/webhooks/encoding/encodings/liveInputStreamChanged/LiveInputStreamChangedApi.ts":
|