@bitmovin/api-sdk 1.100.0 → 1.104.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 +189 -116
- package/dist/bitmovin-api-sdk.browser.js.map +1 -1
- package/dist/bitmovin-api-sdk.browser.min.js +2 -2
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/live/insertableContent/stop/StopApi.d.ts +1 -1
- package/dist/encoding/encodings/live/insertableContent/stop/StopApi.js +1 -1
- package/dist/encoding/manifests/dash/DashApi.d.ts +3 -2
- package/dist/encoding/manifests/dash/DashApi.js +3 -3
- package/dist/encoding/manifests/dash/DashApi.js.map +1 -1
- package/dist/encoding/manifests/hls/HlsApi.d.ts +3 -2
- package/dist/encoding/manifests/hls/HlsApi.js +3 -3
- package/dist/encoding/manifests/hls/HlsApi.js.map +1 -1
- package/dist/encoding/manifests/smooth/SmoothApi.d.ts +3 -2
- package/dist/encoding/manifests/smooth/SmoothApi.js +3 -3
- package/dist/encoding/manifests/smooth/SmoothApi.js.map +1 -1
- package/dist/encoding/statistics/daily/DailyApi.d.ts +1 -3
- package/dist/encoding/statistics/daily/DailyApi.js +2 -11
- package/dist/encoding/statistics/daily/DailyApi.js.map +1 -1
- package/dist/encoding/statistics/encodings/live/daily/DailyApi.d.ts +1 -3
- package/dist/encoding/statistics/encodings/live/daily/DailyApi.js +2 -11
- package/dist/encoding/statistics/encodings/live/daily/DailyApi.js.map +1 -1
- package/dist/encoding/statistics/encodings/vod/VodApi.d.ts +2 -0
- package/dist/encoding/statistics/encodings/vod/VodApi.js +4 -1
- package/dist/encoding/statistics/encodings/vod/VodApi.js.map +1 -1
- package/dist/encoding/statistics/encodings/vod/daily/DailyApi.d.ts +21 -0
- package/dist/encoding/statistics/encodings/vod/daily/DailyApi.js +49 -0
- package/dist/encoding/statistics/encodings/vod/daily/DailyApi.js.map +1 -0
- package/dist/models/AnalyticsExportFileFormat.d.ts +10 -0
- package/dist/models/AnalyticsExportFileFormat.js +15 -0
- package/dist/models/AnalyticsExportFileFormat.js.map +1 -0
- package/dist/models/AnalyticsExportTask.d.ts +7 -0
- package/dist/models/AnalyticsExportTask.js +1 -0
- package/dist/models/AnalyticsExportTask.js.map +1 -1
- package/dist/models/Av1PerTitleConfiguration.d.ts +15 -0
- package/dist/models/Av1PerTitleConfiguration.js +37 -0
- package/dist/models/Av1PerTitleConfiguration.js.map +1 -0
- package/dist/models/AwsCloudRegion.d.ts +2 -1
- package/dist/models/AwsCloudRegion.js +1 -0
- package/dist/models/AwsCloudRegion.js.map +1 -1
- package/dist/models/CloudRegion.d.ts +1 -0
- package/dist/models/CloudRegion.js +1 -0
- package/dist/models/CloudRegion.js.map +1 -1
- package/dist/models/EncodingTemplate.d.ts +9 -0
- package/dist/models/EncodingTemplate.js +14 -0
- package/dist/models/EncodingTemplate.js.map +1 -0
- package/dist/models/PerTitle.d.ts +7 -0
- package/dist/models/PerTitle.js +2 -0
- package/dist/models/PerTitle.js.map +1 -1
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +7 -0
- package/dist/models/SimpleEncodingVodJobRequest.js +1 -0
- package/dist/models/SimpleEncodingVodJobRequest.js.map +1 -1
- package/dist/models/StartManifestRequest.d.ts +7 -0
- package/dist/models/StartManifestRequest.js +2 -0
- package/dist/models/StartManifestRequest.js.map +1 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.d.ts +0 -28
- package/dist/encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.js +0 -30
- package/dist/encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.js.map +0 -1
- package/dist/encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.d.ts +0 -28
- package/dist/encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.js +0 -30
- package/dist/encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.js.map +0 -1
package/README.md
CHANGED
|
@@ -6974,7 +6974,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6974
6974
|
var headers = {
|
|
6975
6975
|
'X-Api-Key': apiKey,
|
|
6976
6976
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6977
|
-
'X-Api-Client-Version': '1.
|
|
6977
|
+
'X-Api-Client-Version': '1.104.0',
|
|
6978
6978
|
'Content-Type': 'application/json'
|
|
6979
6979
|
};
|
|
6980
6980
|
if (tenantOrgId) {
|
|
@@ -17054,7 +17054,7 @@ var StopApi = /** @class */ (function (_super) {
|
|
|
17054
17054
|
return _super.call(this, configuration) || this;
|
|
17055
17055
|
}
|
|
17056
17056
|
/**
|
|
17057
|
-
* @summary Stops
|
|
17057
|
+
* @summary Stops currently running Inserted Content
|
|
17058
17058
|
* @param {string} encodingId Id of the encoding.
|
|
17059
17059
|
* @throws {BitmovinError}
|
|
17060
17060
|
* @memberof StopApi
|
|
@@ -41480,15 +41480,15 @@ var DashApi = /** @class */ (function (_super) {
|
|
|
41480
41480
|
/**
|
|
41481
41481
|
* @summary Start DASH Manifest Creation
|
|
41482
41482
|
* @param {string} manifestId Id of the DASH manifest.
|
|
41483
|
-
* @param {
|
|
41483
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
41484
41484
|
* @throws {BitmovinError}
|
|
41485
41485
|
* @memberof DashApi
|
|
41486
41486
|
*/
|
|
41487
|
-
DashApi.prototype.start = function (manifestId,
|
|
41487
|
+
DashApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
41488
41488
|
var pathParamMap = {
|
|
41489
41489
|
manifest_id: manifestId
|
|
41490
41490
|
};
|
|
41491
|
-
return this.restClient.post('/encoding/manifests/dash/{manifest_id}/start', pathParamMap,
|
|
41491
|
+
return this.restClient.post('/encoding/manifests/dash/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
41492
41492
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
41493
41493
|
});
|
|
41494
41494
|
};
|
|
@@ -46037,15 +46037,15 @@ var HlsApi = /** @class */ (function (_super) {
|
|
|
46037
46037
|
/**
|
|
46038
46038
|
* @summary Start HLS Manifest Creation
|
|
46039
46039
|
* @param {string} manifestId Id of the HLS manifest.
|
|
46040
|
-
* @param {
|
|
46040
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
46041
46041
|
* @throws {BitmovinError}
|
|
46042
46042
|
* @memberof HlsApi
|
|
46043
46043
|
*/
|
|
46044
|
-
HlsApi.prototype.start = function (manifestId,
|
|
46044
|
+
HlsApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
46045
46045
|
var pathParamMap = {
|
|
46046
46046
|
manifest_id: manifestId
|
|
46047
46047
|
};
|
|
46048
|
-
return this.restClient.post('/encoding/manifests/hls/{manifest_id}/start', pathParamMap,
|
|
46048
|
+
return this.restClient.post('/encoding/manifests/hls/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
46049
46049
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
46050
46050
|
});
|
|
46051
46051
|
};
|
|
@@ -47915,15 +47915,15 @@ var SmoothApi = /** @class */ (function (_super) {
|
|
|
47915
47915
|
/**
|
|
47916
47916
|
* @summary Start Smooth Streaming Manifest Creation
|
|
47917
47917
|
* @param {string} manifestId Id of the Smooth Streaming manifest.
|
|
47918
|
-
* @param {
|
|
47918
|
+
* @param {StartManifestRequest} [startManifestRequest] Manifest Startup Options
|
|
47919
47919
|
* @throws {BitmovinError}
|
|
47920
47920
|
* @memberof SmoothApi
|
|
47921
47921
|
*/
|
|
47922
|
-
SmoothApi.prototype.start = function (manifestId,
|
|
47922
|
+
SmoothApi.prototype.start = function (manifestId, startManifestRequest) {
|
|
47923
47923
|
var pathParamMap = {
|
|
47924
47924
|
manifest_id: manifestId
|
|
47925
47925
|
};
|
|
47926
|
-
return this.restClient.post('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap,
|
|
47926
|
+
return this.restClient.post('/encoding/manifests/smooth/{manifest_id}/start', pathParamMap, startManifestRequest).then(function (response) {
|
|
47927
47927
|
return Mapper_1.map(response, BitmovinResponse_1.default);
|
|
47928
47928
|
});
|
|
47929
47929
|
};
|
|
@@ -51702,7 +51702,6 @@ var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/Bas
|
|
|
51702
51702
|
var DailyStatistics_1 = __webpack_require__(/*! ../../../models/DailyStatistics */ "./models/DailyStatistics.ts");
|
|
51703
51703
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
51704
51704
|
var DailyStatisticsListQueryParams_1 = __webpack_require__(/*! ./DailyStatisticsListQueryParams */ "./encoding/statistics/daily/DailyStatisticsListQueryParams.ts");
|
|
51705
|
-
var DailyStatisticsListByDateRangeQueryParams_1 = __webpack_require__(/*! ./DailyStatisticsListByDateRangeQueryParams */ "./encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.ts");
|
|
51706
51705
|
/**
|
|
51707
51706
|
* DailyApi - object-oriented interface
|
|
51708
51707
|
* @export
|
|
@@ -51736,23 +51735,15 @@ var DailyApi = /** @class */ (function (_super) {
|
|
|
51736
51735
|
* @summary List daily statistics within specific dates
|
|
51737
51736
|
* @param {Date} from Start date, format: yyyy-MM-dd
|
|
51738
51737
|
* @param {Date} to End date, format: yyyy-MM-dd
|
|
51739
|
-
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
51740
51738
|
* @throws {BitmovinError}
|
|
51741
51739
|
* @memberof DailyApi
|
|
51742
51740
|
*/
|
|
51743
|
-
DailyApi.prototype.listByDateRange = function (from, to
|
|
51741
|
+
DailyApi.prototype.listByDateRange = function (from, to) {
|
|
51744
51742
|
var pathParamMap = {
|
|
51745
51743
|
from: from,
|
|
51746
51744
|
to: to
|
|
51747
51745
|
};
|
|
51748
|
-
|
|
51749
|
-
if (typeof queryParameters === 'function') {
|
|
51750
|
-
queryParams = queryParameters(new DailyStatisticsListByDateRangeQueryParams_1.DailyStatisticsListByDateRangeQueryParamsBuilder()).buildQueryParams();
|
|
51751
|
-
}
|
|
51752
|
-
else if (queryParameters) {
|
|
51753
|
-
queryParams = queryParameters;
|
|
51754
|
-
}
|
|
51755
|
-
return this.restClient.get('/encoding/statistics/daily/{from}/{to}', pathParamMap, queryParams).then(function (response) {
|
|
51746
|
+
return this.restClient.get('/encoding/statistics/daily/{from}/{to}', pathParamMap).then(function (response) {
|
|
51756
51747
|
return new PaginationResponse_1.default(response, DailyStatistics_1.default);
|
|
51757
51748
|
});
|
|
51758
51749
|
};
|
|
@@ -51761,47 +51752,6 @@ var DailyApi = /** @class */ (function (_super) {
|
|
|
51761
51752
|
exports.default = DailyApi;
|
|
51762
51753
|
|
|
51763
51754
|
|
|
51764
|
-
/***/ }),
|
|
51765
|
-
|
|
51766
|
-
/***/ "./encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.ts":
|
|
51767
|
-
/*!********************************************************************************!*\
|
|
51768
|
-
!*** ./encoding/statistics/daily/DailyStatisticsListByDateRangeQueryParams.ts ***!
|
|
51769
|
-
\********************************************************************************/
|
|
51770
|
-
/*! no static exports found */
|
|
51771
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
51772
|
-
|
|
51773
|
-
"use strict";
|
|
51774
|
-
|
|
51775
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51776
|
-
exports.DailyStatisticsListByDateRangeQueryParamsBuilder = void 0;
|
|
51777
|
-
var DailyStatisticsListByDateRangeQueryParamsBuilder = /** @class */ (function () {
|
|
51778
|
-
function DailyStatisticsListByDateRangeQueryParamsBuilder() {
|
|
51779
|
-
this.internalParams = {};
|
|
51780
|
-
}
|
|
51781
|
-
/**
|
|
51782
|
-
*
|
|
51783
|
-
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
51784
|
-
*/
|
|
51785
|
-
DailyStatisticsListByDateRangeQueryParamsBuilder.prototype.offset = function (offset) {
|
|
51786
|
-
this.internalParams.offset = offset;
|
|
51787
|
-
return this;
|
|
51788
|
-
};
|
|
51789
|
-
/**
|
|
51790
|
-
*
|
|
51791
|
-
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
51792
|
-
*/
|
|
51793
|
-
DailyStatisticsListByDateRangeQueryParamsBuilder.prototype.limit = function (limit) {
|
|
51794
|
-
this.internalParams.limit = limit;
|
|
51795
|
-
return this;
|
|
51796
|
-
};
|
|
51797
|
-
DailyStatisticsListByDateRangeQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
51798
|
-
return this.internalParams;
|
|
51799
|
-
};
|
|
51800
|
-
return DailyStatisticsListByDateRangeQueryParamsBuilder;
|
|
51801
|
-
}());
|
|
51802
|
-
exports.DailyStatisticsListByDateRangeQueryParamsBuilder = DailyStatisticsListByDateRangeQueryParamsBuilder;
|
|
51803
|
-
|
|
51804
|
-
|
|
51805
51755
|
/***/ }),
|
|
51806
51756
|
|
|
51807
51757
|
/***/ "./encoding/statistics/daily/DailyStatisticsListQueryParams.ts":
|
|
@@ -52109,7 +52059,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
52109
52059
|
var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
52110
52060
|
var EncodingStatisticsLive_1 = __webpack_require__(/*! ../../../../../models/EncodingStatisticsLive */ "./models/EncodingStatisticsLive.ts");
|
|
52111
52061
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
52112
|
-
var EncodingStatisticsLiveListByDateRangeQueryParams_1 = __webpack_require__(/*! ./EncodingStatisticsLiveListByDateRangeQueryParams */ "./encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.ts");
|
|
52113
52062
|
/**
|
|
52114
52063
|
* DailyApi - object-oriented interface
|
|
52115
52064
|
* @export
|
|
@@ -52125,23 +52074,15 @@ var DailyApi = /** @class */ (function (_super) {
|
|
|
52125
52074
|
* @summary List daily live encoding statistics within specific dates
|
|
52126
52075
|
* @param {Date} from Start date, format: yyyy-MM-dd
|
|
52127
52076
|
* @param {Date} to End date, format: yyyy-MM-dd
|
|
52128
|
-
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
52129
52077
|
* @throws {BitmovinError}
|
|
52130
52078
|
* @memberof DailyApi
|
|
52131
52079
|
*/
|
|
52132
|
-
DailyApi.prototype.listByDateRange = function (from, to
|
|
52080
|
+
DailyApi.prototype.listByDateRange = function (from, to) {
|
|
52133
52081
|
var pathParamMap = {
|
|
52134
52082
|
from: from,
|
|
52135
52083
|
to: to
|
|
52136
52084
|
};
|
|
52137
|
-
|
|
52138
|
-
if (typeof queryParameters === 'function') {
|
|
52139
|
-
queryParams = queryParameters(new EncodingStatisticsLiveListByDateRangeQueryParams_1.EncodingStatisticsLiveListByDateRangeQueryParamsBuilder()).buildQueryParams();
|
|
52140
|
-
}
|
|
52141
|
-
else if (queryParameters) {
|
|
52142
|
-
queryParams = queryParameters;
|
|
52143
|
-
}
|
|
52144
|
-
return this.restClient.get('/encoding/statistics/encodings/live/daily/{from}/{to}', pathParamMap, queryParams).then(function (response) {
|
|
52085
|
+
return this.restClient.get('/encoding/statistics/encodings/live/daily/{from}/{to}', pathParamMap).then(function (response) {
|
|
52145
52086
|
return new PaginationResponse_1.default(response, EncodingStatisticsLive_1.default);
|
|
52146
52087
|
});
|
|
52147
52088
|
};
|
|
@@ -52150,47 +52091,6 @@ var DailyApi = /** @class */ (function (_super) {
|
|
|
52150
52091
|
exports.default = DailyApi;
|
|
52151
52092
|
|
|
52152
52093
|
|
|
52153
|
-
/***/ }),
|
|
52154
|
-
|
|
52155
|
-
/***/ "./encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.ts":
|
|
52156
|
-
/*!******************************************************************************************************!*\
|
|
52157
|
-
!*** ./encoding/statistics/encodings/live/daily/EncodingStatisticsLiveListByDateRangeQueryParams.ts ***!
|
|
52158
|
-
\******************************************************************************************************/
|
|
52159
|
-
/*! no static exports found */
|
|
52160
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
52161
|
-
|
|
52162
|
-
"use strict";
|
|
52163
|
-
|
|
52164
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52165
|
-
exports.EncodingStatisticsLiveListByDateRangeQueryParamsBuilder = void 0;
|
|
52166
|
-
var EncodingStatisticsLiveListByDateRangeQueryParamsBuilder = /** @class */ (function () {
|
|
52167
|
-
function EncodingStatisticsLiveListByDateRangeQueryParamsBuilder() {
|
|
52168
|
-
this.internalParams = {};
|
|
52169
|
-
}
|
|
52170
|
-
/**
|
|
52171
|
-
*
|
|
52172
|
-
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
52173
|
-
*/
|
|
52174
|
-
EncodingStatisticsLiveListByDateRangeQueryParamsBuilder.prototype.offset = function (offset) {
|
|
52175
|
-
this.internalParams.offset = offset;
|
|
52176
|
-
return this;
|
|
52177
|
-
};
|
|
52178
|
-
/**
|
|
52179
|
-
*
|
|
52180
|
-
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
52181
|
-
*/
|
|
52182
|
-
EncodingStatisticsLiveListByDateRangeQueryParamsBuilder.prototype.limit = function (limit) {
|
|
52183
|
-
this.internalParams.limit = limit;
|
|
52184
|
-
return this;
|
|
52185
|
-
};
|
|
52186
|
-
EncodingStatisticsLiveListByDateRangeQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
52187
|
-
return this.internalParams;
|
|
52188
|
-
};
|
|
52189
|
-
return EncodingStatisticsLiveListByDateRangeQueryParamsBuilder;
|
|
52190
|
-
}());
|
|
52191
|
-
exports.EncodingStatisticsLiveListByDateRangeQueryParamsBuilder = EncodingStatisticsLiveListByDateRangeQueryParamsBuilder;
|
|
52192
|
-
|
|
52193
|
-
|
|
52194
52094
|
/***/ }),
|
|
52195
52095
|
|
|
52196
52096
|
/***/ "./encoding/statistics/encodings/liveStatistics/LiveStatisticsApi.ts":
|
|
@@ -52754,6 +52654,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
52754
52654
|
})();
|
|
52755
52655
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52756
52656
|
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
52657
|
+
var DailyApi_1 = __webpack_require__(/*! ./daily/DailyApi */ "./encoding/statistics/encodings/vod/daily/DailyApi.ts");
|
|
52757
52658
|
var EncodingStatisticsVod_1 = __webpack_require__(/*! ../../../../models/EncodingStatisticsVod */ "./models/EncodingStatisticsVod.ts");
|
|
52758
52659
|
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
52759
52660
|
var EncodingStatisticsVodListQueryParams_1 = __webpack_require__(/*! ./EncodingStatisticsVodListQueryParams */ "./encoding/statistics/encodings/vod/EncodingStatisticsVodListQueryParams.ts");
|
|
@@ -52767,7 +52668,9 @@ var EncodingStatisticsVodListByDateRangeQueryParams_1 = __webpack_require__(/*!
|
|
|
52767
52668
|
var VodApi = /** @class */ (function (_super) {
|
|
52768
52669
|
__extends(VodApi, _super);
|
|
52769
52670
|
function VodApi(configuration) {
|
|
52770
|
-
|
|
52671
|
+
var _this = _super.call(this, configuration) || this;
|
|
52672
|
+
_this.daily = new DailyApi_1.default(configuration);
|
|
52673
|
+
return _this;
|
|
52771
52674
|
}
|
|
52772
52675
|
/**
|
|
52773
52676
|
* @summary List VOD Encoding Statistics
|
|
@@ -52816,6 +52719,66 @@ var VodApi = /** @class */ (function (_super) {
|
|
|
52816
52719
|
exports.default = VodApi;
|
|
52817
52720
|
|
|
52818
52721
|
|
|
52722
|
+
/***/ }),
|
|
52723
|
+
|
|
52724
|
+
/***/ "./encoding/statistics/encodings/vod/daily/DailyApi.ts":
|
|
52725
|
+
/*!*************************************************************!*\
|
|
52726
|
+
!*** ./encoding/statistics/encodings/vod/daily/DailyApi.ts ***!
|
|
52727
|
+
\*************************************************************/
|
|
52728
|
+
/*! no static exports found */
|
|
52729
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
52730
|
+
|
|
52731
|
+
"use strict";
|
|
52732
|
+
|
|
52733
|
+
var __extends = (this && this.__extends) || (function () {
|
|
52734
|
+
var extendStatics = function (d, b) {
|
|
52735
|
+
extendStatics = Object.setPrototypeOf ||
|
|
52736
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
52737
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
52738
|
+
return extendStatics(d, b);
|
|
52739
|
+
};
|
|
52740
|
+
return function (d, b) {
|
|
52741
|
+
extendStatics(d, b);
|
|
52742
|
+
function __() { this.constructor = d; }
|
|
52743
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
52744
|
+
};
|
|
52745
|
+
})();
|
|
52746
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52747
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
52748
|
+
var EncodingStatistics_1 = __webpack_require__(/*! ../../../../../models/EncodingStatistics */ "./models/EncodingStatistics.ts");
|
|
52749
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
52750
|
+
/**
|
|
52751
|
+
* DailyApi - object-oriented interface
|
|
52752
|
+
* @export
|
|
52753
|
+
* @class DailyApi
|
|
52754
|
+
* @extends {BaseAPI}
|
|
52755
|
+
*/
|
|
52756
|
+
var DailyApi = /** @class */ (function (_super) {
|
|
52757
|
+
__extends(DailyApi, _super);
|
|
52758
|
+
function DailyApi(configuration) {
|
|
52759
|
+
return _super.call(this, configuration) || this;
|
|
52760
|
+
}
|
|
52761
|
+
/**
|
|
52762
|
+
* @summary List daily VoD encoding statistics within specific dates
|
|
52763
|
+
* @param {Date} from Start date, format: yyyy-MM-dd
|
|
52764
|
+
* @param {Date} to End date, format: yyyy-MM-dd
|
|
52765
|
+
* @throws {BitmovinError}
|
|
52766
|
+
* @memberof DailyApi
|
|
52767
|
+
*/
|
|
52768
|
+
DailyApi.prototype.listByDateRange = function (from, to) {
|
|
52769
|
+
var pathParamMap = {
|
|
52770
|
+
from: from,
|
|
52771
|
+
to: to
|
|
52772
|
+
};
|
|
52773
|
+
return this.restClient.get('/encoding/statistics/encodings/vod/daily/{from}/{to}', pathParamMap).then(function (response) {
|
|
52774
|
+
return new PaginationResponse_1.default(response, EncodingStatistics_1.default);
|
|
52775
|
+
});
|
|
52776
|
+
};
|
|
52777
|
+
return DailyApi;
|
|
52778
|
+
}(BaseAPI_1.BaseAPI));
|
|
52779
|
+
exports.default = DailyApi;
|
|
52780
|
+
|
|
52781
|
+
|
|
52819
52782
|
/***/ }),
|
|
52820
52783
|
|
|
52821
52784
|
/***/ "./encoding/statistics/labels/LabelsApi.ts":
|
|
@@ -56612,6 +56575,32 @@ exports.AnalyticsErrorDetailsResponse = AnalyticsErrorDetailsResponse;
|
|
|
56612
56575
|
exports.default = AnalyticsErrorDetailsResponse;
|
|
56613
56576
|
|
|
56614
56577
|
|
|
56578
|
+
/***/ }),
|
|
56579
|
+
|
|
56580
|
+
/***/ "./models/AnalyticsExportFileFormat.ts":
|
|
56581
|
+
/*!*********************************************!*\
|
|
56582
|
+
!*** ./models/AnalyticsExportFileFormat.ts ***!
|
|
56583
|
+
\*********************************************/
|
|
56584
|
+
/*! no static exports found */
|
|
56585
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
56586
|
+
|
|
56587
|
+
"use strict";
|
|
56588
|
+
|
|
56589
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56590
|
+
exports.AnalyticsExportFileFormat = void 0;
|
|
56591
|
+
/**
|
|
56592
|
+
* Analytics Export File Format
|
|
56593
|
+
* @export
|
|
56594
|
+
* @enum {string}
|
|
56595
|
+
*/
|
|
56596
|
+
var AnalyticsExportFileFormat;
|
|
56597
|
+
(function (AnalyticsExportFileFormat) {
|
|
56598
|
+
AnalyticsExportFileFormat["CSV"] = "CSV";
|
|
56599
|
+
AnalyticsExportFileFormat["PARQUET"] = "PARQUET";
|
|
56600
|
+
})(AnalyticsExportFileFormat = exports.AnalyticsExportFileFormat || (exports.AnalyticsExportFileFormat = {}));
|
|
56601
|
+
exports.default = AnalyticsExportFileFormat;
|
|
56602
|
+
|
|
56603
|
+
|
|
56615
56604
|
/***/ }),
|
|
56616
56605
|
|
|
56617
56606
|
/***/ "./models/AnalyticsExportStatus.ts":
|
|
@@ -56691,6 +56680,7 @@ var AnalyticsExportTask = /** @class */ (function (_super) {
|
|
|
56691
56680
|
_this.finishedAt = Mapper_1.map(obj.finishedAt, Date);
|
|
56692
56681
|
_this.type = Mapper_1.map(obj.type);
|
|
56693
56682
|
_this.columns = Mapper_1.mapArray(obj.columns);
|
|
56683
|
+
_this.fileFormat = Mapper_1.map(obj.fileFormat);
|
|
56694
56684
|
return _this;
|
|
56695
56685
|
}
|
|
56696
56686
|
return AnalyticsExportTask;
|
|
@@ -59889,6 +59879,54 @@ exports.AutoRestartConfiguration = AutoRestartConfiguration;
|
|
|
59889
59879
|
exports.default = AutoRestartConfiguration;
|
|
59890
59880
|
|
|
59891
59881
|
|
|
59882
|
+
/***/ }),
|
|
59883
|
+
|
|
59884
|
+
/***/ "./models/Av1PerTitleConfiguration.ts":
|
|
59885
|
+
/*!********************************************!*\
|
|
59886
|
+
!*** ./models/Av1PerTitleConfiguration.ts ***!
|
|
59887
|
+
\********************************************/
|
|
59888
|
+
/*! no static exports found */
|
|
59889
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
59890
|
+
|
|
59891
|
+
"use strict";
|
|
59892
|
+
|
|
59893
|
+
var __extends = (this && this.__extends) || (function () {
|
|
59894
|
+
var extendStatics = function (d, b) {
|
|
59895
|
+
extendStatics = Object.setPrototypeOf ||
|
|
59896
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
59897
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
59898
|
+
return extendStatics(d, b);
|
|
59899
|
+
};
|
|
59900
|
+
return function (d, b) {
|
|
59901
|
+
extendStatics(d, b);
|
|
59902
|
+
function __() { this.constructor = d; }
|
|
59903
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
59904
|
+
};
|
|
59905
|
+
})();
|
|
59906
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
59907
|
+
exports.Av1PerTitleConfiguration = void 0;
|
|
59908
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59909
|
+
var PerTitleConfiguration_1 = __webpack_require__(/*! ./PerTitleConfiguration */ "./models/PerTitleConfiguration.ts");
|
|
59910
|
+
/**
|
|
59911
|
+
* @export
|
|
59912
|
+
* @class Av1PerTitleConfiguration
|
|
59913
|
+
*/
|
|
59914
|
+
var Av1PerTitleConfiguration = /** @class */ (function (_super) {
|
|
59915
|
+
__extends(Av1PerTitleConfiguration, _super);
|
|
59916
|
+
function Av1PerTitleConfiguration(obj) {
|
|
59917
|
+
var _this = _super.call(this, obj) || this;
|
|
59918
|
+
if (!obj) {
|
|
59919
|
+
return _this;
|
|
59920
|
+
}
|
|
59921
|
+
_this.targetQualityCrf = Mapper_1.map(obj.targetQualityCrf);
|
|
59922
|
+
return _this;
|
|
59923
|
+
}
|
|
59924
|
+
return Av1PerTitleConfiguration;
|
|
59925
|
+
}(PerTitleConfiguration_1.default));
|
|
59926
|
+
exports.Av1PerTitleConfiguration = Av1PerTitleConfiguration;
|
|
59927
|
+
exports.default = Av1PerTitleConfiguration;
|
|
59928
|
+
|
|
59929
|
+
|
|
59892
59930
|
/***/ }),
|
|
59893
59931
|
|
|
59894
59932
|
/***/ "./models/Av1VideoConfiguration.ts":
|
|
@@ -60103,6 +60141,7 @@ var AwsCloudRegion;
|
|
|
60103
60141
|
AwsCloudRegion["EU_WEST_2"] = "EU_WEST_2";
|
|
60104
60142
|
AwsCloudRegion["EU_WEST_3"] = "EU_WEST_3";
|
|
60105
60143
|
AwsCloudRegion["CA_CENTRAL_1"] = "CA_CENTRAL_1";
|
|
60144
|
+
AwsCloudRegion["EU_NORTH_1"] = "EU_NORTH_1";
|
|
60106
60145
|
})(AwsCloudRegion = exports.AwsCloudRegion || (exports.AwsCloudRegion = {}));
|
|
60107
60146
|
exports.default = AwsCloudRegion;
|
|
60108
60147
|
|
|
@@ -62260,6 +62299,7 @@ var CloudRegion;
|
|
|
62260
62299
|
CloudRegion["AWS_EU_WEST_2"] = "AWS_EU_WEST_2";
|
|
62261
62300
|
CloudRegion["AWS_EU_WEST_3"] = "AWS_EU_WEST_3";
|
|
62262
62301
|
CloudRegion["AWS_CA_CENTRAL_1"] = "AWS_CA_CENTRAL_1";
|
|
62302
|
+
CloudRegion["AWS_EU_NORTH_1"] = "AWS_EU_NORTH_1";
|
|
62263
62303
|
CloudRegion["GOOGLE_US_CENTRAL_1"] = "GOOGLE_US_CENTRAL_1";
|
|
62264
62304
|
CloudRegion["GOOGLE_US_EAST_1"] = "GOOGLE_US_EAST_1";
|
|
62265
62305
|
CloudRegion["GOOGLE_ASIA_EAST_1"] = "GOOGLE_ASIA_EAST_1";
|
|
@@ -68163,6 +68203,31 @@ exports.EncodingStreamInputDetails = EncodingStreamInputDetails;
|
|
|
68163
68203
|
exports.default = EncodingStreamInputDetails;
|
|
68164
68204
|
|
|
68165
68205
|
|
|
68206
|
+
/***/ }),
|
|
68207
|
+
|
|
68208
|
+
/***/ "./models/EncodingTemplate.ts":
|
|
68209
|
+
/*!************************************!*\
|
|
68210
|
+
!*** ./models/EncodingTemplate.ts ***!
|
|
68211
|
+
\************************************/
|
|
68212
|
+
/*! no static exports found */
|
|
68213
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
68214
|
+
|
|
68215
|
+
"use strict";
|
|
68216
|
+
|
|
68217
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68218
|
+
exports.EncodingTemplate = void 0;
|
|
68219
|
+
/**
|
|
68220
|
+
* @export
|
|
68221
|
+
* @enum {string}
|
|
68222
|
+
*/
|
|
68223
|
+
var EncodingTemplate;
|
|
68224
|
+
(function (EncodingTemplate) {
|
|
68225
|
+
EncodingTemplate["H264"] = "H264";
|
|
68226
|
+
EncodingTemplate["AV1"] = "AV1";
|
|
68227
|
+
})(EncodingTemplate = exports.EncodingTemplate || (exports.EncodingTemplate = {}));
|
|
68228
|
+
exports.default = EncodingTemplate;
|
|
68229
|
+
|
|
68230
|
+
|
|
68166
68231
|
/***/ }),
|
|
68167
68232
|
|
|
68168
68233
|
/***/ "./models/EncodingType.ts":
|
|
@@ -75389,6 +75454,7 @@ exports.default = PcmSampleFormat;
|
|
|
75389
75454
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
75390
75455
|
exports.PerTitle = void 0;
|
|
75391
75456
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75457
|
+
var Av1PerTitleConfiguration_1 = __webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts");
|
|
75392
75458
|
var H264PerTitleConfiguration_1 = __webpack_require__(/*! ./H264PerTitleConfiguration */ "./models/H264PerTitleConfiguration.ts");
|
|
75393
75459
|
var H265PerTitleConfiguration_1 = __webpack_require__(/*! ./H265PerTitleConfiguration */ "./models/H265PerTitleConfiguration.ts");
|
|
75394
75460
|
var Vp9PerTitleConfiguration_1 = __webpack_require__(/*! ./Vp9PerTitleConfiguration */ "./models/Vp9PerTitleConfiguration.ts");
|
|
@@ -75404,6 +75470,7 @@ var PerTitle = /** @class */ (function () {
|
|
|
75404
75470
|
this.h264Configuration = Mapper_1.map(obj.h264Configuration, H264PerTitleConfiguration_1.default);
|
|
75405
75471
|
this.h265Configuration = Mapper_1.map(obj.h265Configuration, H265PerTitleConfiguration_1.default);
|
|
75406
75472
|
this.vp9Configuration = Mapper_1.map(obj.vp9Configuration, Vp9PerTitleConfiguration_1.default);
|
|
75473
|
+
this.av1Configuration = Mapper_1.map(obj.av1Configuration, Av1PerTitleConfiguration_1.default);
|
|
75407
75474
|
}
|
|
75408
75475
|
return PerTitle;
|
|
75409
75476
|
}());
|
|
@@ -78829,6 +78896,7 @@ var SimpleEncodingVodJobRequest = /** @class */ (function () {
|
|
|
78829
78896
|
if (!obj) {
|
|
78830
78897
|
return;
|
|
78831
78898
|
}
|
|
78899
|
+
this.encodingTemplate = Mapper_1.map(obj.encodingTemplate);
|
|
78832
78900
|
this.inputs = Mapper_1.mapArray(obj.inputs, SimpleEncodingVodJobUrlInput_1.default);
|
|
78833
78901
|
this.outputs = Mapper_1.mapArray(obj.outputs, SimpleEncodingVodJobUrlOutput_1.default);
|
|
78834
78902
|
this.name = Mapper_1.map(obj.name);
|
|
@@ -80120,6 +80188,7 @@ exports.default = StartLiveEncodingRequest;
|
|
|
80120
80188
|
|
|
80121
80189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
80122
80190
|
exports.StartManifestRequest = void 0;
|
|
80191
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
80123
80192
|
/**
|
|
80124
80193
|
* @export
|
|
80125
80194
|
* @class StartManifestRequest
|
|
@@ -80129,6 +80198,7 @@ var StartManifestRequest = /** @class */ (function () {
|
|
|
80129
80198
|
if (!obj) {
|
|
80130
80199
|
return;
|
|
80131
80200
|
}
|
|
80201
|
+
this.manifestGenerator = Mapper_1.map(obj.manifestGenerator);
|
|
80132
80202
|
}
|
|
80133
80203
|
return StartManifestRequest;
|
|
80134
80204
|
}());
|
|
@@ -84456,6 +84526,7 @@ __exportStar(__webpack_require__(/*! ./AnalyticsEqualFilter */ "./models/Analyti
|
|
|
84456
84526
|
__exportStar(__webpack_require__(/*! ./AnalyticsErrorData */ "./models/AnalyticsErrorData.ts"), exports);
|
|
84457
84527
|
__exportStar(__webpack_require__(/*! ./AnalyticsErrorDetail */ "./models/AnalyticsErrorDetail.ts"), exports);
|
|
84458
84528
|
__exportStar(__webpack_require__(/*! ./AnalyticsErrorDetailsResponse */ "./models/AnalyticsErrorDetailsResponse.ts"), exports);
|
|
84529
|
+
__exportStar(__webpack_require__(/*! ./AnalyticsExportFileFormat */ "./models/AnalyticsExportFileFormat.ts"), exports);
|
|
84459
84530
|
__exportStar(__webpack_require__(/*! ./AnalyticsExportStatus */ "./models/AnalyticsExportStatus.ts"), exports);
|
|
84460
84531
|
__exportStar(__webpack_require__(/*! ./AnalyticsExportTask */ "./models/AnalyticsExportTask.ts"), exports);
|
|
84461
84532
|
__exportStar(__webpack_require__(/*! ./AnalyticsExportTaskOutputTarget */ "./models/AnalyticsExportTaskOutputTarget.ts"), exports);
|
|
@@ -84532,6 +84603,7 @@ __exportStar(__webpack_require__(/*! ./AudioVolumeFormat */ "./models/AudioVolum
|
|
|
84532
84603
|
__exportStar(__webpack_require__(/*! ./AudioVolumeUnit */ "./models/AudioVolumeUnit.ts"), exports);
|
|
84533
84604
|
__exportStar(__webpack_require__(/*! ./AutoRepresentation */ "./models/AutoRepresentation.ts"), exports);
|
|
84534
84605
|
__exportStar(__webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts"), exports);
|
|
84606
|
+
__exportStar(__webpack_require__(/*! ./Av1PerTitleConfiguration */ "./models/Av1PerTitleConfiguration.ts"), exports);
|
|
84535
84607
|
__exportStar(__webpack_require__(/*! ./Av1VideoConfiguration */ "./models/Av1VideoConfiguration.ts"), exports);
|
|
84536
84608
|
__exportStar(__webpack_require__(/*! ./AvailabilityStartTimeMode */ "./models/AvailabilityStartTimeMode.ts"), exports);
|
|
84537
84609
|
__exportStar(__webpack_require__(/*! ./AwsAccount */ "./models/AwsAccount.ts"), exports);
|
|
@@ -84728,6 +84800,7 @@ __exportStar(__webpack_require__(/*! ./EncodingStatisticsVod */ "./models/Encodi
|
|
|
84728
84800
|
__exportStar(__webpack_require__(/*! ./EncodingStats */ "./models/EncodingStats.ts"), exports);
|
|
84729
84801
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInput */ "./models/EncodingStreamInput.ts"), exports);
|
|
84730
84802
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInputDetails */ "./models/EncodingStreamInputDetails.ts"), exports);
|
|
84803
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplate */ "./models/EncodingTemplate.ts"), exports);
|
|
84731
84804
|
__exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
|
|
84732
84805
|
__exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
|
|
84733
84806
|
__exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);
|