@bitmovin/api-sdk 1.134.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.
@@ -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.134.0',
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 output by name
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 output by name
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 output by name
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.134.0",
3
+ "version": "1.136.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [