2021-07-14 08:07:25 +08:00
|
|
|
syntax = "proto3";
|
2022-02-01 12:15:11 +08:00
|
|
|
|
2022-01-27 20:39:54 +08:00
|
|
|
enum FolderEvent {
|
2021-07-14 08:07:25 +08:00
|
|
|
CreateWorkspace = 0;
|
2021-07-29 17:27:59 +08:00
|
|
|
ReadCurWorkspace = 1;
|
2021-08-30 16:18:58 +08:00
|
|
|
ReadWorkspaces = 2;
|
2021-07-29 17:27:59 +08:00
|
|
|
DeleteWorkspace = 3;
|
2021-08-30 16:18:58 +08:00
|
|
|
OpenWorkspace = 4;
|
2021-09-07 17:12:03 +08:00
|
|
|
ReadWorkspaceApps = 5;
|
2021-07-19 21:05:49 +08:00
|
|
|
CreateApp = 101;
|
2021-07-29 17:27:59 +08:00
|
|
|
DeleteApp = 102;
|
|
|
|
ReadApp = 103;
|
|
|
|
UpdateApp = 104;
|
2021-07-19 22:44:37 +08:00
|
|
|
CreateView = 201;
|
2021-07-23 22:42:44 +08:00
|
|
|
ReadView = 202;
|
|
|
|
UpdateView = 203;
|
2021-07-29 17:27:59 +08:00
|
|
|
DeleteView = 204;
|
2021-10-20 22:19:01 +08:00
|
|
|
DuplicateView = 205;
|
2022-06-14 08:37:44 +08:00
|
|
|
CloseView = 206;
|
|
|
|
ReadViewInfo = 207;
|
|
|
|
CopyLink = 220;
|
|
|
|
SetLatestView = 221;
|
|
|
|
MoveFolderItem = 230;
|
2021-10-12 22:31:38 +08:00
|
|
|
ReadTrash = 300;
|
2021-10-13 23:11:45 +08:00
|
|
|
PutbackTrash = 301;
|
|
|
|
DeleteTrash = 302;
|
2022-01-22 18:48:43 +08:00
|
|
|
RestoreAllTrash = 303;
|
|
|
|
DeleteAllTrash = 304;
|
2021-07-14 08:07:25 +08:00
|
|
|
}
|