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

Binary file not shown.

View File

@@ -164,11 +164,11 @@ pub struct ColumnDefinition {
#[prost(string, tag = "2")]
pub field_type: ::prost::alloc::string::String,
/// MONEY rounding applied before a value is stored.
#[prost(enumeration = "MoneyRounding", tag = "4")]
#[prost(enumeration = "MoneyRounding", tag = "3")]
pub rounding: i32,
/// When true, this numeric column is server-owned and projected from the
/// profile quantity ledger.
#[prost(bool, tag = "5")]
#[prost(bool, tag = "4")]
pub quantity_ledger: bool,
}
/// Response after table creation (success + DDL preview).

View File

@@ -122,10 +122,10 @@ pub struct ScriptDependency {
pub column: ::prost::alloc::string::String,
/// Aggregate operation name, such as sum, count_rows, or exists; empty for
/// column_access dependencies.
#[prost(string, tag = "5")]
#[prost(string, tag = "4")]
pub operation: ::prost::alloc::string::String,
/// Relationship table used to match the owner row to the related collection.
#[prost(string, tag = "6")]
#[prost(string, tag = "5")]
pub via_table: ::prost::alloc::string::String,
}
/// Identifies the active form row whose external Steel inputs must be hydrated.

View File

@@ -231,10 +231,10 @@ pub struct ValidationSetDefinition {
#[prost(string, optional, tag = "2")]
pub description: ::core::option::Option<::prost::alloc::string::String>,
/// Ordered set items.
#[prost(message, repeated, tag = "5")]
#[prost(message, repeated, tag = "4")]
pub rule_items: ::prost::alloc::vec::Vec<ValidationSetRuleItem>,
/// Server-resolved snapshot of all set items in order.
#[prost(message, optional, tag = "4")]
#[prost(message, optional, tag = "3")]
pub resolved_validation: ::core::option::Option<FieldValidation>,
}
#[derive(serde::Serialize, serde::Deserialize)]

View File

@@ -60,7 +60,7 @@ pub struct PostTableDataResponse {
#[prost(int64, tag = "3")]
pub inserted_id: i64,
/// Revision committed for the inserted row.
#[prost(int64, tag = "5")]
#[prost(int64, tag = "4")]
pub row_revision: i64,
}
/// One row in a bulk insert request.
@@ -144,7 +144,7 @@ pub struct PutTableDataResponse {
#[prost(int64, tag = "3")]
pub updated_id: i64,
/// Revision committed for the updated row.
#[prost(int64, tag = "5")]
#[prost(int64, tag = "4")]
pub row_revision: i64,
}
/// Soft-delete a single row.