@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
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.136.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import OutputType from '../../models/OutputType';
|
|
1
2
|
export interface OutputListQueryParams {
|
|
2
3
|
/**
|
|
3
4
|
* Index of the first item to return, starting at 0. Default is 0
|
|
@@ -12,11 +13,17 @@ export interface OutputListQueryParams {
|
|
|
12
13
|
*/
|
|
13
14
|
limit?: number | undefined;
|
|
14
15
|
/**
|
|
15
|
-
* Filter
|
|
16
|
+
* Filter outputs by name
|
|
16
17
|
* @type {string}
|
|
17
18
|
* @memberof OutputListQueryParams
|
|
18
19
|
*/
|
|
19
20
|
name?: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* Filter outputs by type
|
|
23
|
+
* @type {OutputType}
|
|
24
|
+
* @memberof OutputListQueryParams
|
|
25
|
+
*/
|
|
26
|
+
type?: OutputType | undefined;
|
|
20
27
|
}
|
|
21
28
|
export declare class OutputListQueryParamsBuilder {
|
|
22
29
|
private internalParams;
|
|
@@ -32,8 +39,13 @@ export declare class OutputListQueryParamsBuilder {
|
|
|
32
39
|
limit(limit: number): this;
|
|
33
40
|
/**
|
|
34
41
|
*
|
|
35
|
-
* @param name Filter
|
|
42
|
+
* @param name Filter outputs by name
|
|
36
43
|
*/
|
|
37
44
|
name(name: string): this;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @param type Filter outputs by type
|
|
48
|
+
*/
|
|
49
|
+
type(type: OutputType): this;
|
|
38
50
|
buildQueryParams(): OutputListQueryParams;
|
|
39
51
|
}
|
|
@@ -23,12 +23,20 @@ var OutputListQueryParamsBuilder = /** @class */ (function () {
|
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @param name Filter
|
|
26
|
+
* @param name Filter outputs by name
|
|
27
27
|
*/
|
|
28
28
|
OutputListQueryParamsBuilder.prototype.name = function (name) {
|
|
29
29
|
this.internalParams.name = name;
|
|
30
30
|
return this;
|
|
31
31
|
};
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @param type Filter outputs by type
|
|
35
|
+
*/
|
|
36
|
+
OutputListQueryParamsBuilder.prototype.type = function (type) {
|
|
37
|
+
this.internalParams.type = type;
|
|
38
|
+
return this;
|
|
39
|
+
};
|
|
32
40
|
OutputListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
33
41
|
return this.internalParams;
|
|
34
42
|
};
|