AppFlowy/frontend/rust-lib/flowy-grid/resources/proto/event_map.proto

28 lines
596 B
Protocol Buffer
Raw Normal View History

2022-03-02 14:43:04 +00:00
syntax = "proto3";
enum GridEvent {
2022-03-06 13:22:42 +00:00
GetGridData = 0;
2022-03-17 09:25:43 +00:00
GetGridBlocks = 1;
2022-03-18 09:14:46 +00:00
GetFields = 10;
UpdateField = 11;
2022-05-10 01:33:34 +00:00
UpdateFieldTypeOption = 12;
InsertField = 13;
DeleteField = 14;
SwitchToField = 20;
DuplicateField = 21;
MoveItem = 22;
GetFieldTypeOption = 23;
2022-05-19 02:41:00 +00:00
CreateFieldTypeOption = 24;
2022-04-07 00:33:10 +00:00
NewSelectOption = 30;
2022-05-12 14:36:39 +00:00
GetSelectOptionCellData = 31;
UpdateSelectOption = 32;
2022-03-29 14:58:38 +00:00
CreateRow = 50;
GetRow = 51;
2022-04-09 14:07:48 +00:00
DeleteRow = 52;
DuplicateRow = 53;
2022-04-07 12:15:00 +00:00
GetCell = 70;
UpdateCell = 71;
2022-05-11 03:34:13 +00:00
UpdateSelectOptionCell = 72;
UpdateDateCell = 80;
2022-03-02 14:43:04 +00:00
}