@bitmovin/api-sdk 1.135.0 → 1.136.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 +10 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/outputs/OutputListQueryParams.d.ts +14 -2
- package/dist/encoding/outputs/OutputListQueryParams.js +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5987,7 +5987,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
5987
5987
|
var headers = {
|
|
5988
5988
|
'X-Api-Key': apiKey,
|
|
5989
5989
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
5990
|
-
'X-Api-Client-Version': '1.
|
|
5990
|
+
'X-Api-Client-Version': '1.136.0',
|
|
5991
5991
|
'Content-Type': 'application/json'
|
|
5992
5992
|
};
|
|
5993
5993
|
if (tenantOrgId) {
|
|
@@ -47080,12 +47080,20 @@ var OutputListQueryParamsBuilder = /** @class */ (function () {
|
|
|
47080
47080
|
};
|
|
47081
47081
|
/**
|
|
47082
47082
|
*
|
|
47083
|
-
* @param name Filter
|
|
47083
|
+
* @param name Filter outputs by name
|
|
47084
47084
|
*/
|
|
47085
47085
|
OutputListQueryParamsBuilder.prototype.name = function (name) {
|
|
47086
47086
|
this.internalParams.name = name;
|
|
47087
47087
|
return this;
|
|
47088
47088
|
};
|
|
47089
|
+
/**
|
|
47090
|
+
*
|
|
47091
|
+
* @param type Filter outputs by type
|
|
47092
|
+
*/
|
|
47093
|
+
OutputListQueryParamsBuilder.prototype.type = function (type) {
|
|
47094
|
+
this.internalParams.type = type;
|
|
47095
|
+
return this;
|
|
47096
|
+
};
|
|
47089
47097
|
OutputListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
47090
47098
|
return this.internalParams;
|
|
47091
47099
|
};
|