diff --git a/AGENTS.md b/AGENTS.md index b321b984..037b3d39 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -2,6 +2,7 @@ - Never run `cargo fmt`, `rustfmt`, or any other automatic code-formatting command in this repository, including commands scoped to individual files or packages. - Preserve existing formatting. Make only the smallest hand-edited changes required for the task. +- Do not run builds, checks, linters, or pre-existing tests. Only run tests that an agent wrote or modified as part of the current task; if the agent did not write or modify any tests, run no tests. ## Long-running commands diff --git a/client b/client index dea91c5b..534f7236 160000 --- a/client +++ b/client @@ -1 +1 @@ -Subproject commit dea91c5be6b0767c2f575102abe2bea31b3c34cb +Subproject commit 534f72363dd0cd53799fd740f65c16a6002ce39b diff --git a/client-gui2 b/client-gui2 index 20ef0526..58593ae5 160000 --- a/client-gui2 +++ b/client-gui2 @@ -1 +1 @@ -Subproject commit 20ef05269ef999d159e6668599baa4c8de540363 +Subproject commit 58593ae57767d068fba037e6399784bab6edb214 diff --git a/common/proto/document_data.proto b/common/proto/document_data.proto index 4e2add87..d841fbac 100644 --- a/common/proto/document_data.proto +++ b/common/proto/document_data.proto @@ -128,6 +128,7 @@ message TypstTemplateVersion { string typst_compiler_version = 7; string created_at = 8; string input_table_name = 9; + repeated string field_paths = 10; } message GetTypstTemplateVersionResponse { diff --git a/common/src/proto/descriptor.bin b/common/src/proto/descriptor.bin index 9fe71702..53877eda 100644 Binary files a/common/src/proto/descriptor.bin and b/common/src/proto/descriptor.bin differ diff --git a/common/src/proto/komp_ac.document_data.rs b/common/src/proto/komp_ac.document_data.rs index 3d9a36d8..e922f808 100644 --- a/common/src/proto/komp_ac.document_data.rs +++ b/common/src/proto/komp_ac.document_data.rs @@ -194,6 +194,8 @@ pub struct TypstTemplateVersion { pub created_at: ::prost::alloc::string::String, #[prost(string, tag = "9")] pub input_table_name: ::prost::alloc::string::String, + #[prost(string, repeated, tag = "10")] + pub field_paths: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, } #[derive(serde::Serialize, serde::Deserialize)] #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)] diff --git a/server b/server index 4852641e..47476e10 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit 4852641efd0afa868bd4870693ac814e44416100 +Subproject commit 47476e10a6e81aef6fda1cf5b5429a4130e1894e diff --git a/tui-pages b/tui-pages index 361dbdf0..e14860a3 160000 --- a/tui-pages +++ b/tui-pages @@ -1 +1 @@ -Subproject commit 361dbdf071805c97da69bba1dbc0514a4fc8ca62 +Subproject commit e14860a384595266156ec854435d862d14dfa8d5