removed legacy

This commit is contained in:
Priec
2026-07-29 22:00:19 +02:00
parent 4086f1c8e0
commit db827490ff
10 changed files with 16 additions and 32 deletions

View File

@@ -249,7 +249,6 @@ message JournalLine {
string source_table_name = 10;
int64 source_record_id = 11;
int64 source_row_revision = 12;
reserved 13;
}
message Journal {

View File

@@ -192,14 +192,12 @@ message ColumnDefinition {
// s ≤ p and p ≥ 1.
string field_type = 2;
reserved 3;
// MONEY rounding applied before a value is stored.
MoneyRounding rounding = 4;
MoneyRounding rounding = 3;
// When true, this numeric column is server-owned and projected from the
// profile quantity ledger.
bool quantity_ledger = 5;
bool quantity_ledger = 4;
}
// Response after table creation (success + DDL preview).

View File

@@ -167,12 +167,9 @@ message StoredTableScript {
string description = 5;
// Complete allowlist of data inputs that may be exposed to this script.
repeated ScriptDependency dependencies = 6;
reserved 7;
}
message ScriptDependency {
reserved 4;
// Logical table name referenced by the script.
string target_table = 1;
// Normalized dependency kind, such as column_access or related_aggregate.
@@ -181,9 +178,9 @@ message ScriptDependency {
string column = 3;
// Aggregate operation name, such as sum, count_rows, or exists; empty for
// column_access dependencies.
string operation = 5;
string operation = 4;
// Relationship table used to match the owner row to the related collection.
string via_table = 6;
string via_table = 5;
}
// Identifies the active form row whose external Steel inputs must be hydrated.

View File

@@ -227,16 +227,14 @@ message ValidationSetRuleItem {
}
message ValidationSetDefinition {
reserved 3;
string name = 1;
optional string description = 2;
// Ordered set items.
repeated ValidationSetRuleItem ruleItems = 5;
repeated ValidationSetRuleItem ruleItems = 4;
// Server-resolved snapshot of all set items in order.
FieldValidation resolvedValidation = 4;
FieldValidation resolvedValidation = 3;
}
message UpsertValidationRuleRequest {

View File

@@ -123,7 +123,6 @@ message PostTableDataRequest {
// - Some application-specific validations may apply (e.g., max length for
// certain fields like "telefon")
map<string, google.protobuf.Value> data = 3;
reserved 4;
}
// Insert response.
@@ -137,17 +136,14 @@ message PostTableDataResponse {
// The id of the inserted row.
int64 inserted_id = 3;
reserved 4;
// Revision committed for the inserted row.
int64 row_revision = 5;
int64 row_revision = 4;
}
// One row in a bulk insert request.
message PostTableDataBulkRow {
// Required. Same data payload as PostTableDataRequest.data.
map<string, google.protobuf.Value> data = 1;
reserved 2;
}
// Bulk insert request.
@@ -212,10 +208,8 @@ message PutTableDataResponse {
// The id of the updated row.
int64 updated_id = 3;
reserved 4;
// Revision committed for the updated row.
int64 row_revision = 5;
int64 row_revision = 4;
}
// Soft-delete a single row.
@@ -237,8 +231,6 @@ message DeleteTableDataRequest {
message DeleteTableDataResponse {
// True if a row was marked deleted (id existed and was not already deleted).
bool success = 1;
reserved 2;
}
// Fetch a single non-deleted row by id.