Files
komp_ac/common/proto/table_script.proto
filipriec 9eb46cb5d3 kompAC
2025-07-25 11:59:18 +02:00

19 lines
380 B
Protocol Buffer

syntax = "proto3";
package KompAC.table_script;
service TableScript {
rpc PostTableScript(PostTableScriptRequest) returns (TableScriptResponse);
}
message PostTableScriptRequest {
int64 table_definition_id = 1;
string target_column = 2;
string script = 3;
string description = 4;
}
message TableScriptResponse {
int64 id = 1;
string warnings = 2;
}