Files
octoturge 660855ecd6 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>
2026-08-28 16:12:03 +00:00

14 lines
240 B
Protocol Buffer

syntax = "proto3";
package continuum.v1;
message MaterialProfile {
string id = 1;
string name = 2;
string filament_type = 3;
double nozzle_temp_c = 4;
double bed_temp_c = 5;
double density_g_cm3 = 6;
string color_hex = 7;
}