circuit-json 0.0.289 → 0.0.291
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -1
- package/dist/index.d.mts +172 -13
- package/dist/index.mjs +983 -957
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4092,9 +4092,10 @@ declare const pcb_note_text: z.ZodObject<{
|
|
|
4092
4092
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
4093
4093
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4094
4094
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4095
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4095
4096
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
4096
4097
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4097
|
-
text: z.ZodString
|
|
4098
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4098
4099
|
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
4099
4100
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4100
4101
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4109,7 +4110,6 @@ declare const pcb_note_text: z.ZodObject<{
|
|
|
4109
4110
|
color: z.ZodOptional<z.ZodString>;
|
|
4110
4111
|
}, "strip", z.ZodTypeAny, {
|
|
4111
4112
|
type: "pcb_note_text";
|
|
4112
|
-
text: string;
|
|
4113
4113
|
font: "tscircuit2024";
|
|
4114
4114
|
font_size: number;
|
|
4115
4115
|
anchor_position: {
|
|
@@ -4118,16 +4118,19 @@ declare const pcb_note_text: z.ZodObject<{
|
|
|
4118
4118
|
};
|
|
4119
4119
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
4120
4120
|
pcb_note_text_id: string;
|
|
4121
|
+
name?: string | undefined;
|
|
4121
4122
|
pcb_component_id?: string | undefined;
|
|
4122
4123
|
subcircuit_id?: string | undefined;
|
|
4123
4124
|
pcb_group_id?: string | undefined;
|
|
4125
|
+
text?: string | undefined;
|
|
4124
4126
|
color?: string | undefined;
|
|
4125
4127
|
}, {
|
|
4126
4128
|
type: "pcb_note_text";
|
|
4127
|
-
|
|
4129
|
+
name?: string | undefined;
|
|
4128
4130
|
pcb_component_id?: string | undefined;
|
|
4129
4131
|
subcircuit_id?: string | undefined;
|
|
4130
4132
|
pcb_group_id?: string | undefined;
|
|
4133
|
+
text?: string | undefined;
|
|
4131
4134
|
font?: "tscircuit2024" | undefined;
|
|
4132
4135
|
font_size?: string | number | undefined;
|
|
4133
4136
|
anchor_position?: {
|
|
@@ -4148,9 +4151,10 @@ interface PcbNoteText {
|
|
|
4148
4151
|
pcb_component_id?: string;
|
|
4149
4152
|
pcb_group_id?: string;
|
|
4150
4153
|
subcircuit_id?: string;
|
|
4154
|
+
name?: string;
|
|
4151
4155
|
font: "tscircuit2024";
|
|
4152
4156
|
font_size: Length;
|
|
4153
|
-
text
|
|
4157
|
+
text?: string;
|
|
4154
4158
|
anchor_position: Point;
|
|
4155
4159
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
4156
4160
|
color?: string;
|
|
@@ -4162,6 +4166,8 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4162
4166
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
4163
4167
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4164
4168
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4169
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4170
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4165
4171
|
center: z.ZodObject<{
|
|
4166
4172
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4167
4173
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4189,9 +4195,11 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4189
4195
|
};
|
|
4190
4196
|
stroke_width: number;
|
|
4191
4197
|
pcb_note_rect_id: string;
|
|
4198
|
+
name?: string | undefined;
|
|
4192
4199
|
pcb_component_id?: string | undefined;
|
|
4193
4200
|
subcircuit_id?: string | undefined;
|
|
4194
4201
|
pcb_group_id?: string | undefined;
|
|
4202
|
+
text?: string | undefined;
|
|
4195
4203
|
is_filled?: boolean | undefined;
|
|
4196
4204
|
has_stroke?: boolean | undefined;
|
|
4197
4205
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -4204,9 +4212,11 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4204
4212
|
x: string | number;
|
|
4205
4213
|
y: string | number;
|
|
4206
4214
|
};
|
|
4215
|
+
name?: string | undefined;
|
|
4207
4216
|
pcb_component_id?: string | undefined;
|
|
4208
4217
|
subcircuit_id?: string | undefined;
|
|
4209
4218
|
pcb_group_id?: string | undefined;
|
|
4219
|
+
text?: string | undefined;
|
|
4210
4220
|
stroke_width?: string | number | undefined;
|
|
4211
4221
|
is_filled?: boolean | undefined;
|
|
4212
4222
|
has_stroke?: boolean | undefined;
|
|
@@ -4224,6 +4234,8 @@ interface PcbNoteRect {
|
|
|
4224
4234
|
pcb_component_id?: string;
|
|
4225
4235
|
pcb_group_id?: string;
|
|
4226
4236
|
subcircuit_id?: string;
|
|
4237
|
+
name?: string;
|
|
4238
|
+
text?: string;
|
|
4227
4239
|
center: Point;
|
|
4228
4240
|
width: Length;
|
|
4229
4241
|
height: Length;
|
|
@@ -4240,6 +4252,8 @@ declare const pcb_note_path: z.ZodObject<{
|
|
|
4240
4252
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
4241
4253
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4242
4254
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4255
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4256
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4243
4257
|
route: z.ZodArray<z.ZodObject<{
|
|
4244
4258
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4245
4259
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4260,9 +4274,11 @@ declare const pcb_note_path: z.ZodObject<{
|
|
|
4260
4274
|
}[];
|
|
4261
4275
|
stroke_width: number;
|
|
4262
4276
|
pcb_note_path_id: string;
|
|
4277
|
+
name?: string | undefined;
|
|
4263
4278
|
pcb_component_id?: string | undefined;
|
|
4264
4279
|
subcircuit_id?: string | undefined;
|
|
4265
4280
|
pcb_group_id?: string | undefined;
|
|
4281
|
+
text?: string | undefined;
|
|
4266
4282
|
color?: string | undefined;
|
|
4267
4283
|
}, {
|
|
4268
4284
|
type: "pcb_note_path";
|
|
@@ -4270,9 +4286,11 @@ declare const pcb_note_path: z.ZodObject<{
|
|
|
4270
4286
|
x: string | number;
|
|
4271
4287
|
y: string | number;
|
|
4272
4288
|
}[];
|
|
4289
|
+
name?: string | undefined;
|
|
4273
4290
|
pcb_component_id?: string | undefined;
|
|
4274
4291
|
subcircuit_id?: string | undefined;
|
|
4275
4292
|
pcb_group_id?: string | undefined;
|
|
4293
|
+
text?: string | undefined;
|
|
4276
4294
|
stroke_width?: string | number | undefined;
|
|
4277
4295
|
color?: string | undefined;
|
|
4278
4296
|
pcb_note_path_id?: string | undefined;
|
|
@@ -4287,6 +4305,8 @@ interface PcbNotePath {
|
|
|
4287
4305
|
pcb_component_id?: string;
|
|
4288
4306
|
pcb_group_id?: string;
|
|
4289
4307
|
subcircuit_id?: string;
|
|
4308
|
+
name?: string;
|
|
4309
|
+
text?: string;
|
|
4290
4310
|
route: Point[];
|
|
4291
4311
|
stroke_width: Length;
|
|
4292
4312
|
color?: string;
|
|
@@ -4298,6 +4318,8 @@ declare const pcb_note_line: z.ZodObject<{
|
|
|
4298
4318
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
4299
4319
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4300
4320
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4321
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
text: z.ZodOptional<z.ZodString>;
|
|
4301
4323
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4302
4324
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4303
4325
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4313,9 +4335,11 @@ declare const pcb_note_line: z.ZodObject<{
|
|
|
4313
4335
|
x2: number;
|
|
4314
4336
|
y2: number;
|
|
4315
4337
|
pcb_note_line_id: string;
|
|
4338
|
+
name?: string | undefined;
|
|
4316
4339
|
pcb_component_id?: string | undefined;
|
|
4317
4340
|
subcircuit_id?: string | undefined;
|
|
4318
4341
|
pcb_group_id?: string | undefined;
|
|
4342
|
+
text?: string | undefined;
|
|
4319
4343
|
color?: string | undefined;
|
|
4320
4344
|
is_dashed?: boolean | undefined;
|
|
4321
4345
|
}, {
|
|
@@ -4324,9 +4348,11 @@ declare const pcb_note_line: z.ZodObject<{
|
|
|
4324
4348
|
y1: string | number;
|
|
4325
4349
|
x2: string | number;
|
|
4326
4350
|
y2: string | number;
|
|
4351
|
+
name?: string | undefined;
|
|
4327
4352
|
pcb_component_id?: string | undefined;
|
|
4328
4353
|
subcircuit_id?: string | undefined;
|
|
4329
4354
|
pcb_group_id?: string | undefined;
|
|
4355
|
+
text?: string | undefined;
|
|
4330
4356
|
stroke_width?: string | number | undefined;
|
|
4331
4357
|
color?: string | undefined;
|
|
4332
4358
|
pcb_note_line_id?: string | undefined;
|
|
@@ -4342,6 +4368,8 @@ interface PcbNoteLine {
|
|
|
4342
4368
|
pcb_component_id?: string;
|
|
4343
4369
|
pcb_group_id?: string;
|
|
4344
4370
|
subcircuit_id?: string;
|
|
4371
|
+
name?: string;
|
|
4372
|
+
text?: string;
|
|
4345
4373
|
x1: Distance;
|
|
4346
4374
|
y1: Distance;
|
|
4347
4375
|
x2: Distance;
|
|
@@ -4357,6 +4385,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4357
4385
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
4358
4386
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
4359
4387
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4388
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4360
4389
|
from: z.ZodObject<{
|
|
4361
4390
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4362
4391
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4396,6 +4425,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4396
4425
|
};
|
|
4397
4426
|
arrow_size: number;
|
|
4398
4427
|
pcb_note_dimension_id: string;
|
|
4428
|
+
name?: string | undefined;
|
|
4399
4429
|
pcb_component_id?: string | undefined;
|
|
4400
4430
|
subcircuit_id?: string | undefined;
|
|
4401
4431
|
pcb_group_id?: string | undefined;
|
|
@@ -4411,6 +4441,7 @@ declare const pcb_note_dimension: z.ZodObject<{
|
|
|
4411
4441
|
x: string | number;
|
|
4412
4442
|
y: string | number;
|
|
4413
4443
|
};
|
|
4444
|
+
name?: string | undefined;
|
|
4414
4445
|
pcb_component_id?: string | undefined;
|
|
4415
4446
|
subcircuit_id?: string | undefined;
|
|
4416
4447
|
pcb_group_id?: string | undefined;
|
|
@@ -4431,6 +4462,7 @@ interface PcbNoteDimension {
|
|
|
4431
4462
|
pcb_component_id?: string;
|
|
4432
4463
|
pcb_group_id?: string;
|
|
4433
4464
|
subcircuit_id?: string;
|
|
4465
|
+
name?: string;
|
|
4434
4466
|
from: Point;
|
|
4435
4467
|
to: Point;
|
|
4436
4468
|
text?: string;
|
|
@@ -8367,8 +8399,6 @@ interface SchematicTableCell {
|
|
|
8367
8399
|
subcircuit_id?: string;
|
|
8368
8400
|
}
|
|
8369
8401
|
|
|
8370
|
-
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError;
|
|
8371
|
-
|
|
8372
8402
|
interface SourceComponentBase {
|
|
8373
8403
|
type: "source_component";
|
|
8374
8404
|
ftype?: string;
|
|
@@ -10991,6 +11021,45 @@ interface SourceManuallyPlacedVia {
|
|
|
10991
11021
|
source_trace_id?: string;
|
|
10992
11022
|
}
|
|
10993
11023
|
|
|
11024
|
+
declare const unknown_error_finding_part: z.ZodObject<{
|
|
11025
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
11026
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11027
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
11028
|
+
message: z.ZodString;
|
|
11029
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
11030
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11031
|
+
}, "strip", z.ZodTypeAny, {
|
|
11032
|
+
message: string;
|
|
11033
|
+
type: "unknown_error_finding_part";
|
|
11034
|
+
error_type: "unknown_error_finding_part";
|
|
11035
|
+
unknown_error_finding_part_id: string;
|
|
11036
|
+
source_component_id?: string | undefined;
|
|
11037
|
+
subcircuit_id?: string | undefined;
|
|
11038
|
+
}, {
|
|
11039
|
+
message: string;
|
|
11040
|
+
type: "unknown_error_finding_part";
|
|
11041
|
+
source_component_id?: string | undefined;
|
|
11042
|
+
subcircuit_id?: string | undefined;
|
|
11043
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
11044
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
11045
|
+
}>;
|
|
11046
|
+
type UnknownErrorFindingPartInput = z.input<typeof unknown_error_finding_part>;
|
|
11047
|
+
/**
|
|
11048
|
+
* Error emitted when an unexpected error occurs while finding a part.
|
|
11049
|
+
* This includes cases where the API returns HTML instead of JSON,
|
|
11050
|
+
* network failures, or other unexpected responses.
|
|
11051
|
+
*/
|
|
11052
|
+
interface UnknownErrorFindingPart {
|
|
11053
|
+
type: "unknown_error_finding_part";
|
|
11054
|
+
unknown_error_finding_part_id: string;
|
|
11055
|
+
error_type: "unknown_error_finding_part";
|
|
11056
|
+
message: string;
|
|
11057
|
+
source_component_id?: string;
|
|
11058
|
+
subcircuit_id?: string;
|
|
11059
|
+
}
|
|
11060
|
+
|
|
11061
|
+
type CircuitJsonError = PcbTraceError | PcbPlacementError | PcbPortNotMatchedError | PcbAutoroutingError | PcbFootprintOverlapError | PcbMissingFootprintError | PcbComponentOutsideBoardError | SchematicError | UnknownErrorFindingPart;
|
|
11062
|
+
|
|
10994
11063
|
declare const cad_component: z.ZodObject<{
|
|
10995
11064
|
type: z.ZodLiteral<"cad_component">;
|
|
10996
11065
|
cad_component_id: z.ZodString;
|
|
@@ -13478,6 +13547,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13478
13547
|
subcircuit_id?: string | undefined;
|
|
13479
13548
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
13480
13549
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
13550
|
+
}>, z.ZodObject<{
|
|
13551
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
13552
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
13553
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
13554
|
+
message: z.ZodString;
|
|
13555
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
13556
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13557
|
+
}, "strip", z.ZodTypeAny, {
|
|
13558
|
+
message: string;
|
|
13559
|
+
type: "unknown_error_finding_part";
|
|
13560
|
+
error_type: "unknown_error_finding_part";
|
|
13561
|
+
unknown_error_finding_part_id: string;
|
|
13562
|
+
source_component_id?: string | undefined;
|
|
13563
|
+
subcircuit_id?: string | undefined;
|
|
13564
|
+
}, {
|
|
13565
|
+
message: string;
|
|
13566
|
+
type: "unknown_error_finding_part";
|
|
13567
|
+
source_component_id?: string | undefined;
|
|
13568
|
+
subcircuit_id?: string | undefined;
|
|
13569
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
13570
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
13481
13571
|
}>, z.ZodObject<{
|
|
13482
13572
|
type: z.ZodLiteral<"pcb_component">;
|
|
13483
13573
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -16165,9 +16255,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16165
16255
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16166
16256
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16167
16257
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16258
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16168
16259
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
16169
16260
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16170
|
-
text: z.ZodString
|
|
16261
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16171
16262
|
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
16172
16263
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16173
16264
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16182,7 +16273,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16182
16273
|
color: z.ZodOptional<z.ZodString>;
|
|
16183
16274
|
}, "strip", z.ZodTypeAny, {
|
|
16184
16275
|
type: "pcb_note_text";
|
|
16185
|
-
text: string;
|
|
16186
16276
|
font: "tscircuit2024";
|
|
16187
16277
|
font_size: number;
|
|
16188
16278
|
anchor_position: {
|
|
@@ -16191,16 +16281,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16191
16281
|
};
|
|
16192
16282
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
16193
16283
|
pcb_note_text_id: string;
|
|
16284
|
+
name?: string | undefined;
|
|
16194
16285
|
pcb_component_id?: string | undefined;
|
|
16195
16286
|
subcircuit_id?: string | undefined;
|
|
16196
16287
|
pcb_group_id?: string | undefined;
|
|
16288
|
+
text?: string | undefined;
|
|
16197
16289
|
color?: string | undefined;
|
|
16198
16290
|
}, {
|
|
16199
16291
|
type: "pcb_note_text";
|
|
16200
|
-
|
|
16292
|
+
name?: string | undefined;
|
|
16201
16293
|
pcb_component_id?: string | undefined;
|
|
16202
16294
|
subcircuit_id?: string | undefined;
|
|
16203
16295
|
pcb_group_id?: string | undefined;
|
|
16296
|
+
text?: string | undefined;
|
|
16204
16297
|
font?: "tscircuit2024" | undefined;
|
|
16205
16298
|
font_size?: string | number | undefined;
|
|
16206
16299
|
anchor_position?: {
|
|
@@ -16216,6 +16309,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16216
16309
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16217
16310
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16218
16311
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16312
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16313
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16219
16314
|
center: z.ZodObject<{
|
|
16220
16315
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16221
16316
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16243,9 +16338,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16243
16338
|
};
|
|
16244
16339
|
stroke_width: number;
|
|
16245
16340
|
pcb_note_rect_id: string;
|
|
16341
|
+
name?: string | undefined;
|
|
16246
16342
|
pcb_component_id?: string | undefined;
|
|
16247
16343
|
subcircuit_id?: string | undefined;
|
|
16248
16344
|
pcb_group_id?: string | undefined;
|
|
16345
|
+
text?: string | undefined;
|
|
16249
16346
|
is_filled?: boolean | undefined;
|
|
16250
16347
|
has_stroke?: boolean | undefined;
|
|
16251
16348
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -16258,9 +16355,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16258
16355
|
x: string | number;
|
|
16259
16356
|
y: string | number;
|
|
16260
16357
|
};
|
|
16358
|
+
name?: string | undefined;
|
|
16261
16359
|
pcb_component_id?: string | undefined;
|
|
16262
16360
|
subcircuit_id?: string | undefined;
|
|
16263
16361
|
pcb_group_id?: string | undefined;
|
|
16362
|
+
text?: string | undefined;
|
|
16264
16363
|
stroke_width?: string | number | undefined;
|
|
16265
16364
|
is_filled?: boolean | undefined;
|
|
16266
16365
|
has_stroke?: boolean | undefined;
|
|
@@ -16273,6 +16372,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16273
16372
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16274
16373
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16275
16374
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16375
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16376
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16276
16377
|
route: z.ZodArray<z.ZodObject<{
|
|
16277
16378
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16278
16379
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16293,9 +16394,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16293
16394
|
}[];
|
|
16294
16395
|
stroke_width: number;
|
|
16295
16396
|
pcb_note_path_id: string;
|
|
16397
|
+
name?: string | undefined;
|
|
16296
16398
|
pcb_component_id?: string | undefined;
|
|
16297
16399
|
subcircuit_id?: string | undefined;
|
|
16298
16400
|
pcb_group_id?: string | undefined;
|
|
16401
|
+
text?: string | undefined;
|
|
16299
16402
|
color?: string | undefined;
|
|
16300
16403
|
}, {
|
|
16301
16404
|
type: "pcb_note_path";
|
|
@@ -16303,9 +16406,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16303
16406
|
x: string | number;
|
|
16304
16407
|
y: string | number;
|
|
16305
16408
|
}[];
|
|
16409
|
+
name?: string | undefined;
|
|
16306
16410
|
pcb_component_id?: string | undefined;
|
|
16307
16411
|
subcircuit_id?: string | undefined;
|
|
16308
16412
|
pcb_group_id?: string | undefined;
|
|
16413
|
+
text?: string | undefined;
|
|
16309
16414
|
stroke_width?: string | number | undefined;
|
|
16310
16415
|
color?: string | undefined;
|
|
16311
16416
|
pcb_note_path_id?: string | undefined;
|
|
@@ -16315,6 +16420,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16315
16420
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16316
16421
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16317
16422
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16423
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16424
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16318
16425
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16319
16426
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16320
16427
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16330,9 +16437,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16330
16437
|
x2: number;
|
|
16331
16438
|
y2: number;
|
|
16332
16439
|
pcb_note_line_id: string;
|
|
16440
|
+
name?: string | undefined;
|
|
16333
16441
|
pcb_component_id?: string | undefined;
|
|
16334
16442
|
subcircuit_id?: string | undefined;
|
|
16335
16443
|
pcb_group_id?: string | undefined;
|
|
16444
|
+
text?: string | undefined;
|
|
16336
16445
|
color?: string | undefined;
|
|
16337
16446
|
is_dashed?: boolean | undefined;
|
|
16338
16447
|
}, {
|
|
@@ -16341,9 +16450,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16341
16450
|
y1: string | number;
|
|
16342
16451
|
x2: string | number;
|
|
16343
16452
|
y2: string | number;
|
|
16453
|
+
name?: string | undefined;
|
|
16344
16454
|
pcb_component_id?: string | undefined;
|
|
16345
16455
|
subcircuit_id?: string | undefined;
|
|
16346
16456
|
pcb_group_id?: string | undefined;
|
|
16457
|
+
text?: string | undefined;
|
|
16347
16458
|
stroke_width?: string | number | undefined;
|
|
16348
16459
|
color?: string | undefined;
|
|
16349
16460
|
pcb_note_line_id?: string | undefined;
|
|
@@ -16354,6 +16465,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16354
16465
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16355
16466
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16356
16467
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16468
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16357
16469
|
from: z.ZodObject<{
|
|
16358
16470
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16359
16471
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16393,6 +16505,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16393
16505
|
};
|
|
16394
16506
|
arrow_size: number;
|
|
16395
16507
|
pcb_note_dimension_id: string;
|
|
16508
|
+
name?: string | undefined;
|
|
16396
16509
|
pcb_component_id?: string | undefined;
|
|
16397
16510
|
subcircuit_id?: string | undefined;
|
|
16398
16511
|
pcb_group_id?: string | undefined;
|
|
@@ -16408,6 +16521,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16408
16521
|
x: string | number;
|
|
16409
16522
|
y: string | number;
|
|
16410
16523
|
};
|
|
16524
|
+
name?: string | undefined;
|
|
16411
16525
|
pcb_component_id?: string | undefined;
|
|
16412
16526
|
subcircuit_id?: string | undefined;
|
|
16413
16527
|
pcb_group_id?: string | undefined;
|
|
@@ -20740,6 +20854,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20740
20854
|
subcircuit_id?: string | undefined;
|
|
20741
20855
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
20742
20856
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
20857
|
+
}>, z.ZodObject<{
|
|
20858
|
+
type: z.ZodLiteral<"unknown_error_finding_part">;
|
|
20859
|
+
unknown_error_finding_part_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20860
|
+
error_type: z.ZodDefault<z.ZodLiteral<"unknown_error_finding_part">>;
|
|
20861
|
+
message: z.ZodString;
|
|
20862
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
20863
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20864
|
+
}, "strip", z.ZodTypeAny, {
|
|
20865
|
+
message: string;
|
|
20866
|
+
type: "unknown_error_finding_part";
|
|
20867
|
+
error_type: "unknown_error_finding_part";
|
|
20868
|
+
unknown_error_finding_part_id: string;
|
|
20869
|
+
source_component_id?: string | undefined;
|
|
20870
|
+
subcircuit_id?: string | undefined;
|
|
20871
|
+
}, {
|
|
20872
|
+
message: string;
|
|
20873
|
+
type: "unknown_error_finding_part";
|
|
20874
|
+
source_component_id?: string | undefined;
|
|
20875
|
+
subcircuit_id?: string | undefined;
|
|
20876
|
+
error_type?: "unknown_error_finding_part" | undefined;
|
|
20877
|
+
unknown_error_finding_part_id?: string | undefined;
|
|
20743
20878
|
}>, z.ZodObject<{
|
|
20744
20879
|
type: z.ZodLiteral<"pcb_component">;
|
|
20745
20880
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23427,9 +23562,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23427
23562
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23428
23563
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23429
23564
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23565
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23430
23566
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23431
23567
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23432
|
-
text: z.ZodString
|
|
23568
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23433
23569
|
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
23434
23570
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23435
23571
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23444,7 +23580,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23444
23580
|
color: z.ZodOptional<z.ZodString>;
|
|
23445
23581
|
}, "strip", z.ZodTypeAny, {
|
|
23446
23582
|
type: "pcb_note_text";
|
|
23447
|
-
text: string;
|
|
23448
23583
|
font: "tscircuit2024";
|
|
23449
23584
|
font_size: number;
|
|
23450
23585
|
anchor_position: {
|
|
@@ -23453,16 +23588,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23453
23588
|
};
|
|
23454
23589
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
23455
23590
|
pcb_note_text_id: string;
|
|
23591
|
+
name?: string | undefined;
|
|
23456
23592
|
pcb_component_id?: string | undefined;
|
|
23457
23593
|
subcircuit_id?: string | undefined;
|
|
23458
23594
|
pcb_group_id?: string | undefined;
|
|
23595
|
+
text?: string | undefined;
|
|
23459
23596
|
color?: string | undefined;
|
|
23460
23597
|
}, {
|
|
23461
23598
|
type: "pcb_note_text";
|
|
23462
|
-
|
|
23599
|
+
name?: string | undefined;
|
|
23463
23600
|
pcb_component_id?: string | undefined;
|
|
23464
23601
|
subcircuit_id?: string | undefined;
|
|
23465
23602
|
pcb_group_id?: string | undefined;
|
|
23603
|
+
text?: string | undefined;
|
|
23466
23604
|
font?: "tscircuit2024" | undefined;
|
|
23467
23605
|
font_size?: string | number | undefined;
|
|
23468
23606
|
anchor_position?: {
|
|
@@ -23478,6 +23616,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23478
23616
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23479
23617
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23480
23618
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23619
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23620
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23481
23621
|
center: z.ZodObject<{
|
|
23482
23622
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23483
23623
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23505,9 +23645,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23505
23645
|
};
|
|
23506
23646
|
stroke_width: number;
|
|
23507
23647
|
pcb_note_rect_id: string;
|
|
23648
|
+
name?: string | undefined;
|
|
23508
23649
|
pcb_component_id?: string | undefined;
|
|
23509
23650
|
subcircuit_id?: string | undefined;
|
|
23510
23651
|
pcb_group_id?: string | undefined;
|
|
23652
|
+
text?: string | undefined;
|
|
23511
23653
|
is_filled?: boolean | undefined;
|
|
23512
23654
|
has_stroke?: boolean | undefined;
|
|
23513
23655
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -23520,9 +23662,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23520
23662
|
x: string | number;
|
|
23521
23663
|
y: string | number;
|
|
23522
23664
|
};
|
|
23665
|
+
name?: string | undefined;
|
|
23523
23666
|
pcb_component_id?: string | undefined;
|
|
23524
23667
|
subcircuit_id?: string | undefined;
|
|
23525
23668
|
pcb_group_id?: string | undefined;
|
|
23669
|
+
text?: string | undefined;
|
|
23526
23670
|
stroke_width?: string | number | undefined;
|
|
23527
23671
|
is_filled?: boolean | undefined;
|
|
23528
23672
|
has_stroke?: boolean | undefined;
|
|
@@ -23535,6 +23679,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23535
23679
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23536
23680
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23537
23681
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23682
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23683
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23538
23684
|
route: z.ZodArray<z.ZodObject<{
|
|
23539
23685
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23540
23686
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23555,9 +23701,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23555
23701
|
}[];
|
|
23556
23702
|
stroke_width: number;
|
|
23557
23703
|
pcb_note_path_id: string;
|
|
23704
|
+
name?: string | undefined;
|
|
23558
23705
|
pcb_component_id?: string | undefined;
|
|
23559
23706
|
subcircuit_id?: string | undefined;
|
|
23560
23707
|
pcb_group_id?: string | undefined;
|
|
23708
|
+
text?: string | undefined;
|
|
23561
23709
|
color?: string | undefined;
|
|
23562
23710
|
}, {
|
|
23563
23711
|
type: "pcb_note_path";
|
|
@@ -23565,9 +23713,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23565
23713
|
x: string | number;
|
|
23566
23714
|
y: string | number;
|
|
23567
23715
|
}[];
|
|
23716
|
+
name?: string | undefined;
|
|
23568
23717
|
pcb_component_id?: string | undefined;
|
|
23569
23718
|
subcircuit_id?: string | undefined;
|
|
23570
23719
|
pcb_group_id?: string | undefined;
|
|
23720
|
+
text?: string | undefined;
|
|
23571
23721
|
stroke_width?: string | number | undefined;
|
|
23572
23722
|
color?: string | undefined;
|
|
23573
23723
|
pcb_note_path_id?: string | undefined;
|
|
@@ -23577,6 +23727,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23577
23727
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23578
23728
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23579
23729
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23730
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23731
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23580
23732
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23581
23733
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23582
23734
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23592,9 +23744,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23592
23744
|
x2: number;
|
|
23593
23745
|
y2: number;
|
|
23594
23746
|
pcb_note_line_id: string;
|
|
23747
|
+
name?: string | undefined;
|
|
23595
23748
|
pcb_component_id?: string | undefined;
|
|
23596
23749
|
subcircuit_id?: string | undefined;
|
|
23597
23750
|
pcb_group_id?: string | undefined;
|
|
23751
|
+
text?: string | undefined;
|
|
23598
23752
|
color?: string | undefined;
|
|
23599
23753
|
is_dashed?: boolean | undefined;
|
|
23600
23754
|
}, {
|
|
@@ -23603,9 +23757,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23603
23757
|
y1: string | number;
|
|
23604
23758
|
x2: string | number;
|
|
23605
23759
|
y2: string | number;
|
|
23760
|
+
name?: string | undefined;
|
|
23606
23761
|
pcb_component_id?: string | undefined;
|
|
23607
23762
|
subcircuit_id?: string | undefined;
|
|
23608
23763
|
pcb_group_id?: string | undefined;
|
|
23764
|
+
text?: string | undefined;
|
|
23609
23765
|
stroke_width?: string | number | undefined;
|
|
23610
23766
|
color?: string | undefined;
|
|
23611
23767
|
pcb_note_line_id?: string | undefined;
|
|
@@ -23616,6 +23772,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23616
23772
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23617
23773
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23618
23774
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23775
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23619
23776
|
from: z.ZodObject<{
|
|
23620
23777
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23621
23778
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23655,6 +23812,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23655
23812
|
};
|
|
23656
23813
|
arrow_size: number;
|
|
23657
23814
|
pcb_note_dimension_id: string;
|
|
23815
|
+
name?: string | undefined;
|
|
23658
23816
|
pcb_component_id?: string | undefined;
|
|
23659
23817
|
subcircuit_id?: string | undefined;
|
|
23660
23818
|
pcb_group_id?: string | undefined;
|
|
@@ -23670,6 +23828,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23670
23828
|
x: string | number;
|
|
23671
23829
|
y: string | number;
|
|
23672
23830
|
};
|
|
23831
|
+
name?: string | undefined;
|
|
23673
23832
|
pcb_component_id?: string | undefined;
|
|
23674
23833
|
subcircuit_id?: string | undefined;
|
|
23675
23834
|
pcb_group_id?: string | undefined;
|
|
@@ -26040,4 +26199,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
26040
26199
|
*/
|
|
26041
26200
|
type CircuitJson = AnyCircuitElement[];
|
|
26042
26201
|
|
|
26043
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|
|
26202
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|