@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.
- package/esm2020/lib/filter/models/case-search-request-body.mjs +1 -1
- package/esm2020/lib/filter/models/task-search-request-body.mjs +1 -1
- package/esm2020/lib/resources/interface/case-get-request-body.mjs +1 -1
- package/esm2020/lib/view/case-view/service/case-view-service.mjs +1 -1
- package/esm2020/lib/view/case-view/tabbed-case-view.mjs +1 -1
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/filter/models/case-search-request-body.d.ts +3 -0
- package/lib/filter/models/task-search-request-body.d.ts +3 -0
- package/lib/resources/interface/case-get-request-body.d.ts +3 -0
- package/package.json +1 -1
|
@@ -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