linted protobufs via buf

This commit is contained in:
Priec
2025-12-20 20:57:11 +01:00
parent 1cedd58708
commit a506cd8f08
13 changed files with 185 additions and 206 deletions

View File

@@ -12,17 +12,14 @@ service TableDefinition {
// Creates a new table (and schema if missing) with system columns,
// linked-table foreign keys, user-defined columns, and optional indexes.
// Also inserts metadata and default validation rules. Entirely transactional.
rpc PostTableDefinition(PostTableDefinitionRequest)
returns (TableDefinitionResponse);
rpc PostTableDefinition(PostTableDefinitionRequest) returns (TableDefinitionResponse);
// Lists all profiles (schemas) and their tables with declared dependencies.
// This provides a tree-like overview of table relationships.
rpc GetProfileTree(komp_ac.common.Empty)
returns (ProfileTreeResponse);
rpc GetProfileTree(komp_ac.common.Empty) returns (ProfileTreeResponse);
// Drops a table and its metadata, then deletes the profile if it becomes empty.
rpc DeleteTable(DeleteTableRequest)
returns (DeleteTableResponse);
rpc DeleteTable(DeleteTableRequest) returns (DeleteTableResponse);
}
// A single link to another table within the same profile (schema).