660855ecd6
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>
14 lines
240 B
Protocol Buffer
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;
|
|
}
|