28 lines
596 B
Protocol Buffer
Raw Normal View History

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