15 lines
283 B
Protocol Buffer
15 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
package multieko2.table_script;
|
|
|
|
message PostTableScriptRequest {
|
|
int64 table_definition_id = 1;
|
|
string target_column = 2;
|
|
string rhai_script = 3;
|
|
}
|
|
|
|
message TableScriptResponse {
|
|
int64 id = 1;
|
|
string created_at = 2;
|
|
string warnings = 3;
|
|
}
|