@vanillabp/bc-official-gui-client 0.0.6 → 0.0.7
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.
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
declare const UserTaskRetrieveMode: {
|
|
17
17
|
readonly All: "All";
|
|
18
18
|
readonly OpenTasks: "OpenTasks";
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
19
|
+
readonly OpenTasksWithoutFollowUp: "OpenTasksWithoutFollowUp";
|
|
20
|
+
readonly OpenTasksWithFollowUp: "OpenTasksWithFollowUp";
|
|
21
21
|
readonly ClosedTasksOnly: "ClosedTasksOnly";
|
|
22
22
|
};
|
|
23
23
|
declare type UserTaskRetrieveMode = typeof UserTaskRetrieveMode[keyof typeof UserTaskRetrieveMode];
|
|
@@ -2,8 +2,8 @@ import "../chunk-4TPCCB4K.js";
|
|
|
2
2
|
const UserTaskRetrieveMode = {
|
|
3
3
|
All: "All",
|
|
4
4
|
OpenTasks: "OpenTasks",
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
OpenTasksWithoutFollowUp: "OpenTasksWithoutFollowUp",
|
|
6
|
+
OpenTasksWithFollowUp: "OpenTasksWithFollowUp",
|
|
7
7
|
ClosedTasksOnly: "ClosedTasksOnly"
|
|
8
8
|
};
|
|
9
9
|
function UserTaskRetrieveModeFromJSON(json) {
|