Initial boilerplate scaffold for continuum-schemas

Protobuf data model (Template/PrintJob/MaterialProfile/PrintParameters)
with codegen targets for TypeBox+TS types (packages/ts-types) and
prost-derived Rust structs (packages/rust-types).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-28 16:12:03 +00:00
commit 660855ecd6
21 changed files with 309 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
syntax = "proto3";
package continuum.v1;
message PrintParameters {
double layer_height_mm = 1;
int32 infill_percent = 2;
string infill_pattern = 3;
double print_speed_mm_s = 4;
bool supports_enabled = 5;
int32 wall_count = 6;
}