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>
13 lines
242 B
Protocol Buffer
13 lines
242 B
Protocol Buffer
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;
|
|
}
|