You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/net/b07z/sepia/server/core/assistant/ACTIONS.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,8 @@ public class ACTIONS {
18
18
finalpublicstaticStringQUEUE_CMD = "queue_cmd"; //tell client to queue a command stored as summary, parameters: cmd
19
19
finalpublicstaticStringSCHEDULE_CMD = "schedule_cmd"; //tell client to repeat a command stored as summary, parameters: cmd, executeIn, waitForIdle
20
20
finalpublicstaticStringBUTTON_CMD = "button_cmd"; //tell client to show a button to open a command stored as summary, parameters: cmd, title, type (text, direct_cmd), visibility (all, inputHidden, noConversation),
21
-
finalpublicstaticStringEVENTS_START = "events_start"; //tell client that the results of the events endpoint start here, parameters: info (text, quietText, divider), text
21
+
finalpublicstaticStringEVENTS_START = "events_start"; //tell client that the results of the events endpoint start here
22
+
finalpublicstaticStringFIRST_VISIT_INFO_START = "fist_visit_info_start"; //tell client that the actions of the first-visit-info start here
22
23
finalpublicstaticStringSCHEDULE_MSG = "schedule_msg"; //tell client to schedule a message (like a push message but locally triggered)
23
24
finalpublicstaticStringOPEN_INFO = "open_info"; //tell client to open the info window
24
25
finalpublicstaticStringOPEN_CARDS = "open_cards"; //tell client to open the cards search result view
@@ -27,6 +28,7 @@ public class ACTIONS {
27
28
finalpublicstaticStringOPEN_DASHBOARD = "open_dashboard"; //tell client to open the user dashboard, parameters: type (common, settings, user_home, user_work, user_name, ...)
28
29
finalpublicstaticStringOPEN_TEACH_UI = "open_teach_ui"; //tell client to open the teach UI, parameters: type (input, suggestion, ...)
29
30
finalpublicstaticStringBUTTON_TEACH_UI = "button_teach_ui"; //tell client to show the teach UI button, parameters: type (input, suggestion, ...)
31
+
finalpublicstaticStringBUTTON_FRAMES_VIEW = "button_frames_view"; //tell client to show a frames view button, parameters: type (input, suggestion, ...)
30
32
finalpublicstaticStringOPEN_LIST = "open_list"; //tell client to open a user specific list, param.: "listInfo" : {"indexType":...}
31
33
finalpublicstaticStringEXTEND_REQUEST = "extend_request"; //tell client that this request will take longer and he should prepare for that
32
34
finalpublicstaticStringSHOW_ABORT_OPTION = "show_abort"; //tell client to show an abort option
0 commit comments