@netgrif/components-core 6.4.0-beta.7 → 6.4.0-beta.8

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.
@@ -60,6 +60,9 @@ export interface CaseSearchRequestBody {
60
60
  */
61
61
  group?: string | Array<string>;
62
62
  uriNodeId?: string;
63
+ tags?: {
64
+ [key: string]: string;
65
+ };
63
66
  }
64
67
  /**
65
68
  * Queries cases that are instances of a specific PetriNet
@@ -71,6 +71,9 @@ export interface TaskSearchRequestBody {
71
71
  * If more than one string ID is specified, the returned tasks must have one of them.
72
72
  */
73
73
  stringId?: string | Array<string>;
74
+ tags?: {
75
+ [key: string]: string;
76
+ };
74
77
  }
75
78
  /**
76
79
  * Defines the way tasks case is queried.
@@ -46,6 +46,9 @@ export interface CaseGetRequestBody {
46
46
  * If more than one string ID is specified, the returned cases must have one of them.
47
47
  */
48
48
  stringId?: string | Array<string>;
49
+ tags?: {
50
+ [key: string]: string;
51
+ };
49
52
  }
50
53
  /**
51
54
  * Queries cases that were created by a specified author.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netgrif/components-core",
3
- "version": "6.4.0-beta.7",
3
+ "version": "6.4.0-beta.8",
4
4
  "description": "Netgrif Application engine frontend core Angular library",
5
5
  "homepage": "https://components.netgrif.com",
6
6
  "license": "SEE LICENSE IN LICENSE",