@bitmovin/api-sdk 1.221.0 → 1.223.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 +224 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AiContentAnalysis.d.ts +22 -0
- package/dist/models/AiContentAnalysis.js +22 -0
- package/dist/models/AiContentAnalysisAssetDescription.d.ts +20 -0
- package/dist/models/AiContentAnalysisAssetDescription.js +21 -0
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.d.ts +15 -0
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.js +20 -0
- package/dist/models/AiContentAnalysisFeatures.d.ts +22 -0
- package/dist/models/AiContentAnalysisFeatures.js +22 -0
- package/dist/models/AiService.d.ts +15 -0
- package/dist/models/AiService.js +19 -0
- package/dist/models/AiServiceProvider.d.ts +8 -0
- package/dist/models/AiServiceProvider.js +12 -0
- package/dist/models/AutomaticAdPlacementPosition.d.ts +26 -0
- package/dist/models/AutomaticAdPlacementPosition.js +21 -0
- package/dist/models/StartEncodingRequest.d.ts +7 -0
- package/dist/models/StartEncodingRequest.js +2 -0
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6782,7 +6782,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6782
6782
|
var headers = {
|
|
6783
6783
|
'X-Api-Key': apiKey,
|
|
6784
6784
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6785
|
-
'X-Api-Client-Version': '1.
|
|
6785
|
+
'X-Api-Client-Version': '1.223.0',
|
|
6786
6786
|
'Content-Type': 'application/json'
|
|
6787
6787
|
};
|
|
6788
6788
|
if (tenantOrgId) {
|
|
@@ -57703,6 +57703,188 @@ var AesEncryptionMethod;
|
|
|
57703
57703
|
exports["default"] = AesEncryptionMethod;
|
|
57704
57704
|
|
|
57705
57705
|
|
|
57706
|
+
/***/ }),
|
|
57707
|
+
|
|
57708
|
+
/***/ "./models/AiContentAnalysis.ts":
|
|
57709
|
+
/*!*************************************!*\
|
|
57710
|
+
!*** ./models/AiContentAnalysis.ts ***!
|
|
57711
|
+
\*************************************/
|
|
57712
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
57713
|
+
|
|
57714
|
+
"use strict";
|
|
57715
|
+
|
|
57716
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57717
|
+
exports.AiContentAnalysis = void 0;
|
|
57718
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
57719
|
+
var AiContentAnalysisFeatures_1 = __webpack_require__(/*! ./AiContentAnalysisFeatures */ "./models/AiContentAnalysisFeatures.ts");
|
|
57720
|
+
var AiService_1 = __webpack_require__(/*! ./AiService */ "./models/AiService.ts");
|
|
57721
|
+
/**
|
|
57722
|
+
* @export
|
|
57723
|
+
* @class AiContentAnalysis
|
|
57724
|
+
*/
|
|
57725
|
+
var AiContentAnalysis = /** @class */ (function () {
|
|
57726
|
+
function AiContentAnalysis(obj) {
|
|
57727
|
+
if (!obj) {
|
|
57728
|
+
return;
|
|
57729
|
+
}
|
|
57730
|
+
this.aiService = (0, Mapper_1.map)(obj.aiService, AiService_1.default);
|
|
57731
|
+
this.features = (0, Mapper_1.map)(obj.features, AiContentAnalysisFeatures_1.default);
|
|
57732
|
+
}
|
|
57733
|
+
return AiContentAnalysis;
|
|
57734
|
+
}());
|
|
57735
|
+
exports.AiContentAnalysis = AiContentAnalysis;
|
|
57736
|
+
exports["default"] = AiContentAnalysis;
|
|
57737
|
+
|
|
57738
|
+
|
|
57739
|
+
/***/ }),
|
|
57740
|
+
|
|
57741
|
+
/***/ "./models/AiContentAnalysisAssetDescription.ts":
|
|
57742
|
+
/*!*****************************************************!*\
|
|
57743
|
+
!*** ./models/AiContentAnalysisAssetDescription.ts ***!
|
|
57744
|
+
\*****************************************************/
|
|
57745
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
57746
|
+
|
|
57747
|
+
"use strict";
|
|
57748
|
+
|
|
57749
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57750
|
+
exports.AiContentAnalysisAssetDescription = void 0;
|
|
57751
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
57752
|
+
var EncodingOutput_1 = __webpack_require__(/*! ./EncodingOutput */ "./models/EncodingOutput.ts");
|
|
57753
|
+
/**
|
|
57754
|
+
* @export
|
|
57755
|
+
* @class AiContentAnalysisAssetDescription
|
|
57756
|
+
*/
|
|
57757
|
+
var AiContentAnalysisAssetDescription = /** @class */ (function () {
|
|
57758
|
+
function AiContentAnalysisAssetDescription(obj) {
|
|
57759
|
+
if (!obj) {
|
|
57760
|
+
return;
|
|
57761
|
+
}
|
|
57762
|
+
this.filename = (0, Mapper_1.map)(obj.filename);
|
|
57763
|
+
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, EncodingOutput_1.default);
|
|
57764
|
+
}
|
|
57765
|
+
return AiContentAnalysisAssetDescription;
|
|
57766
|
+
}());
|
|
57767
|
+
exports.AiContentAnalysisAssetDescription = AiContentAnalysisAssetDescription;
|
|
57768
|
+
exports["default"] = AiContentAnalysisAssetDescription;
|
|
57769
|
+
|
|
57770
|
+
|
|
57771
|
+
/***/ }),
|
|
57772
|
+
|
|
57773
|
+
/***/ "./models/AiContentAnalysisAutomaticAdPlacement.ts":
|
|
57774
|
+
/*!*********************************************************!*\
|
|
57775
|
+
!*** ./models/AiContentAnalysisAutomaticAdPlacement.ts ***!
|
|
57776
|
+
\*********************************************************/
|
|
57777
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
57778
|
+
|
|
57779
|
+
"use strict";
|
|
57780
|
+
|
|
57781
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57782
|
+
exports.AiContentAnalysisAutomaticAdPlacement = void 0;
|
|
57783
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
57784
|
+
var AutomaticAdPlacementPosition_1 = __webpack_require__(/*! ./AutomaticAdPlacementPosition */ "./models/AutomaticAdPlacementPosition.ts");
|
|
57785
|
+
/**
|
|
57786
|
+
* @export
|
|
57787
|
+
* @class AiContentAnalysisAutomaticAdPlacement
|
|
57788
|
+
*/
|
|
57789
|
+
var AiContentAnalysisAutomaticAdPlacement = /** @class */ (function () {
|
|
57790
|
+
function AiContentAnalysisAutomaticAdPlacement(obj) {
|
|
57791
|
+
if (!obj) {
|
|
57792
|
+
return;
|
|
57793
|
+
}
|
|
57794
|
+
this.schedule = (0, Mapper_1.mapArray)(obj.schedule, AutomaticAdPlacementPosition_1.default);
|
|
57795
|
+
}
|
|
57796
|
+
return AiContentAnalysisAutomaticAdPlacement;
|
|
57797
|
+
}());
|
|
57798
|
+
exports.AiContentAnalysisAutomaticAdPlacement = AiContentAnalysisAutomaticAdPlacement;
|
|
57799
|
+
exports["default"] = AiContentAnalysisAutomaticAdPlacement;
|
|
57800
|
+
|
|
57801
|
+
|
|
57802
|
+
/***/ }),
|
|
57803
|
+
|
|
57804
|
+
/***/ "./models/AiContentAnalysisFeatures.ts":
|
|
57805
|
+
/*!*********************************************!*\
|
|
57806
|
+
!*** ./models/AiContentAnalysisFeatures.ts ***!
|
|
57807
|
+
\*********************************************/
|
|
57808
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
57809
|
+
|
|
57810
|
+
"use strict";
|
|
57811
|
+
|
|
57812
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57813
|
+
exports.AiContentAnalysisFeatures = void 0;
|
|
57814
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
57815
|
+
var AiContentAnalysisAssetDescription_1 = __webpack_require__(/*! ./AiContentAnalysisAssetDescription */ "./models/AiContentAnalysisAssetDescription.ts");
|
|
57816
|
+
var AiContentAnalysisAutomaticAdPlacement_1 = __webpack_require__(/*! ./AiContentAnalysisAutomaticAdPlacement */ "./models/AiContentAnalysisAutomaticAdPlacement.ts");
|
|
57817
|
+
/**
|
|
57818
|
+
* @export
|
|
57819
|
+
* @class AiContentAnalysisFeatures
|
|
57820
|
+
*/
|
|
57821
|
+
var AiContentAnalysisFeatures = /** @class */ (function () {
|
|
57822
|
+
function AiContentAnalysisFeatures(obj) {
|
|
57823
|
+
if (!obj) {
|
|
57824
|
+
return;
|
|
57825
|
+
}
|
|
57826
|
+
this.assetDescription = (0, Mapper_1.map)(obj.assetDescription, AiContentAnalysisAssetDescription_1.default);
|
|
57827
|
+
this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement, AiContentAnalysisAutomaticAdPlacement_1.default);
|
|
57828
|
+
}
|
|
57829
|
+
return AiContentAnalysisFeatures;
|
|
57830
|
+
}());
|
|
57831
|
+
exports.AiContentAnalysisFeatures = AiContentAnalysisFeatures;
|
|
57832
|
+
exports["default"] = AiContentAnalysisFeatures;
|
|
57833
|
+
|
|
57834
|
+
|
|
57835
|
+
/***/ }),
|
|
57836
|
+
|
|
57837
|
+
/***/ "./models/AiService.ts":
|
|
57838
|
+
/*!*****************************!*\
|
|
57839
|
+
!*** ./models/AiService.ts ***!
|
|
57840
|
+
\*****************************/
|
|
57841
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
57842
|
+
|
|
57843
|
+
"use strict";
|
|
57844
|
+
|
|
57845
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57846
|
+
exports.AiService = void 0;
|
|
57847
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
57848
|
+
/**
|
|
57849
|
+
* @export
|
|
57850
|
+
* @class AiService
|
|
57851
|
+
*/
|
|
57852
|
+
var AiService = /** @class */ (function () {
|
|
57853
|
+
function AiService(obj) {
|
|
57854
|
+
if (!obj) {
|
|
57855
|
+
return;
|
|
57856
|
+
}
|
|
57857
|
+
this.provider = (0, Mapper_1.map)(obj.provider);
|
|
57858
|
+
}
|
|
57859
|
+
return AiService;
|
|
57860
|
+
}());
|
|
57861
|
+
exports.AiService = AiService;
|
|
57862
|
+
exports["default"] = AiService;
|
|
57863
|
+
|
|
57864
|
+
|
|
57865
|
+
/***/ }),
|
|
57866
|
+
|
|
57867
|
+
/***/ "./models/AiServiceProvider.ts":
|
|
57868
|
+
/*!*************************************!*\
|
|
57869
|
+
!*** ./models/AiServiceProvider.ts ***!
|
|
57870
|
+
\*************************************/
|
|
57871
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
57872
|
+
|
|
57873
|
+
"use strict";
|
|
57874
|
+
|
|
57875
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57876
|
+
exports.AiServiceProvider = void 0;
|
|
57877
|
+
/**
|
|
57878
|
+
* @export
|
|
57879
|
+
* @enum {string}
|
|
57880
|
+
*/
|
|
57881
|
+
var AiServiceProvider;
|
|
57882
|
+
(function (AiServiceProvider) {
|
|
57883
|
+
AiServiceProvider["GOOGLE"] = "GOOGLE";
|
|
57884
|
+
})(AiServiceProvider || (exports.AiServiceProvider = AiServiceProvider = {}));
|
|
57885
|
+
exports["default"] = AiServiceProvider;
|
|
57886
|
+
|
|
57887
|
+
|
|
57706
57888
|
/***/ }),
|
|
57707
57889
|
|
|
57708
57890
|
/***/ "./models/AkamaiAccount.ts":
|
|
@@ -61878,6 +62060,38 @@ exports.AutoRestartConfiguration = AutoRestartConfiguration;
|
|
|
61878
62060
|
exports["default"] = AutoRestartConfiguration;
|
|
61879
62061
|
|
|
61880
62062
|
|
|
62063
|
+
/***/ }),
|
|
62064
|
+
|
|
62065
|
+
/***/ "./models/AutomaticAdPlacementPosition.ts":
|
|
62066
|
+
/*!************************************************!*\
|
|
62067
|
+
!*** ./models/AutomaticAdPlacementPosition.ts ***!
|
|
62068
|
+
\************************************************/
|
|
62069
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
62070
|
+
|
|
62071
|
+
"use strict";
|
|
62072
|
+
|
|
62073
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
62074
|
+
exports.AutomaticAdPlacementPosition = void 0;
|
|
62075
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
62076
|
+
/**
|
|
62077
|
+
* @export
|
|
62078
|
+
* @class AutomaticAdPlacementPosition
|
|
62079
|
+
*/
|
|
62080
|
+
var AutomaticAdPlacementPosition = /** @class */ (function () {
|
|
62081
|
+
function AutomaticAdPlacementPosition(obj) {
|
|
62082
|
+
if (!obj) {
|
|
62083
|
+
return;
|
|
62084
|
+
}
|
|
62085
|
+
this.position = (0, Mapper_1.map)(obj.position);
|
|
62086
|
+
this.maxDeviation = (0, Mapper_1.map)(obj.maxDeviation);
|
|
62087
|
+
this.duration = (0, Mapper_1.map)(obj.duration);
|
|
62088
|
+
}
|
|
62089
|
+
return AutomaticAdPlacementPosition;
|
|
62090
|
+
}());
|
|
62091
|
+
exports.AutomaticAdPlacementPosition = AutomaticAdPlacementPosition;
|
|
62092
|
+
exports["default"] = AutomaticAdPlacementPosition;
|
|
62093
|
+
|
|
62094
|
+
|
|
61881
62095
|
/***/ }),
|
|
61882
62096
|
|
|
61883
62097
|
/***/ "./models/Av1PerTitleConfiguration.ts":
|
|
@@ -85053,6 +85267,7 @@ exports["default"] = StandardMediaInfo;
|
|
|
85053
85267
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
85054
85268
|
exports.StartEncodingRequest = void 0;
|
|
85055
85269
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
85270
|
+
var AiContentAnalysis_1 = __webpack_require__(/*! ./AiContentAnalysis */ "./models/AiContentAnalysis.ts");
|
|
85056
85271
|
var ManifestResource_1 = __webpack_require__(/*! ./ManifestResource */ "./models/ManifestResource.ts");
|
|
85057
85272
|
var PerTitle_1 = __webpack_require__(/*! ./PerTitle */ "./models/PerTitle.ts");
|
|
85058
85273
|
var Scheduling_1 = __webpack_require__(/*! ./Scheduling */ "./models/Scheduling.ts");
|
|
@@ -85079,6 +85294,7 @@ var StartEncodingRequest = /** @class */ (function () {
|
|
|
85079
85294
|
this.vodSmoothManifests = (0, Mapper_1.mapArray)(obj.vodSmoothManifests, ManifestResource_1.default);
|
|
85080
85295
|
this.manifestGenerator = (0, Mapper_1.map)(obj.manifestGenerator);
|
|
85081
85296
|
this.perTitle = (0, Mapper_1.map)(obj.perTitle, PerTitle_1.default);
|
|
85297
|
+
this.aiContentAnalysis = (0, Mapper_1.map)(obj.aiContentAnalysis, AiContentAnalysis_1.default);
|
|
85082
85298
|
}
|
|
85083
85299
|
return StartEncodingRequest;
|
|
85084
85300
|
}());
|
|
@@ -90430,6 +90646,12 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
|
|
|
90430
90646
|
__exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
|
|
90431
90647
|
__exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
|
|
90432
90648
|
__exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
|
|
90649
|
+
__exportStar(__webpack_require__(/*! ./AiContentAnalysis */ "./models/AiContentAnalysis.ts"), exports);
|
|
90650
|
+
__exportStar(__webpack_require__(/*! ./AiContentAnalysisAssetDescription */ "./models/AiContentAnalysisAssetDescription.ts"), exports);
|
|
90651
|
+
__exportStar(__webpack_require__(/*! ./AiContentAnalysisAutomaticAdPlacement */ "./models/AiContentAnalysisAutomaticAdPlacement.ts"), exports);
|
|
90652
|
+
__exportStar(__webpack_require__(/*! ./AiContentAnalysisFeatures */ "./models/AiContentAnalysisFeatures.ts"), exports);
|
|
90653
|
+
__exportStar(__webpack_require__(/*! ./AiService */ "./models/AiService.ts"), exports);
|
|
90654
|
+
__exportStar(__webpack_require__(/*! ./AiServiceProvider */ "./models/AiServiceProvider.ts"), exports);
|
|
90433
90655
|
__exportStar(__webpack_require__(/*! ./AkamaiAccount */ "./models/AkamaiAccount.ts"), exports);
|
|
90434
90656
|
__exportStar(__webpack_require__(/*! ./AkamaiAccountRegionSettings */ "./models/AkamaiAccountRegionSettings.ts"), exports);
|
|
90435
90657
|
__exportStar(__webpack_require__(/*! ./AkamaiCloudRegion */ "./models/AkamaiCloudRegion.ts"), exports);
|
|
@@ -90527,6 +90749,7 @@ __exportStar(__webpack_require__(/*! ./AudioVolumeUnit */ "./models/AudioVolumeU
|
|
|
90527
90749
|
__exportStar(__webpack_require__(/*! ./AutoLevelSetup */ "./models/AutoLevelSetup.ts"), exports);
|
|
90528
90750
|
__exportStar(__webpack_require__(/*! ./AutoRepresentation */ "./models/AutoRepresentation.ts"), exports);
|
|
90529
90751
|
__exportStar(__webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts"), exports);
|
|
90752
|
+
__exportStar(__webpack_require__(/*! ./AutomaticAdPlacementPosition */ "./models/AutomaticAdPlacementPosition.ts"), exports);
|
|
90530
90753
|
__exportStar(__webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts"), exports);
|
|
90531
90754
|
__exportStar(__webpack_require__(/*! ./Av1PresetConfiguration */ "./models/Av1PresetConfiguration.ts"), exports);
|
|
90532
90755
|
__exportStar(__webpack_require__(/*! ./Av1VideoConfiguration */ "./models/Av1VideoConfiguration.ts"), exports);
|