@vanillabp/bc-official-gui-client 0.0.8 → 0.0.9

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.
@@ -36,6 +36,12 @@ interface WorkflowsRequest {
36
36
  * @memberof WorkflowsRequest
37
37
  */
38
38
  searchQueries?: Array<SearchQuery>;
39
+ /**
40
+ * Filters the response to include only entries associated with the specified business IDs
41
+ * @type {Array<string>}
42
+ * @memberof WorkflowsRequest
43
+ */
44
+ businessIds?: Array<string>;
39
45
  /**
40
46
  *
41
47
  * @type {string}
@@ -19,6 +19,7 @@ function WorkflowsRequestFromJSONTyped(json, ignoreDiscriminator) {
19
19
  "pageNumber": !exists(json, "pageNumber") ? void 0 : json["pageNumber"],
20
20
  "pageSize": !exists(json, "pageSize") ? void 0 : json["pageSize"],
21
21
  "searchQueries": !exists(json, "searchQueries") ? void 0 : json["searchQueries"].map(SearchQueryFromJSON),
22
+ "businessIds": !exists(json, "businessIds") ? void 0 : json["businessIds"],
22
23
  "sort": !exists(json, "sort") ? void 0 : json["sort"],
23
24
  "sortAscending": !exists(json, "sortAscending") ? void 0 : json["sortAscending"]
24
25
  };
@@ -34,6 +35,7 @@ function WorkflowsRequestToJSON(value) {
34
35
  "pageNumber": value.pageNumber,
35
36
  "pageSize": value.pageSize,
36
37
  "searchQueries": value.searchQueries === void 0 ? void 0 : value.searchQueries.map(SearchQueryToJSON),
38
+ "businessIds": value.businessIds,
37
39
  "sort": value.sort,
38
40
  "sortAscending": value.sortAscending
39
41
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanillabp/bc-official-gui-client",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/vanillabp/business-cockpit.git"