circuit-json 0.0.288 → 0.0.290
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 +30 -1
- package/dist/index.d.mts +238 -12
- package/dist/index.mjs +95 -69
- 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;
|
|
@@ -6372,7 +6404,69 @@ interface PcbCourtyardOutline {
|
|
|
6372
6404
|
*/
|
|
6373
6405
|
type PCBCourtyardOutline = PcbCourtyardOutline;
|
|
6374
6406
|
|
|
6375
|
-
|
|
6407
|
+
declare const pcb_courtyard_polygon: z.ZodObject<{
|
|
6408
|
+
type: z.ZodLiteral<"pcb_courtyard_polygon">;
|
|
6409
|
+
pcb_courtyard_polygon_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6410
|
+
pcb_component_id: z.ZodString;
|
|
6411
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
6412
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6413
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
6414
|
+
points: z.ZodArray<z.ZodObject<{
|
|
6415
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6416
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6417
|
+
}, "strip", z.ZodTypeAny, {
|
|
6418
|
+
x: number;
|
|
6419
|
+
y: number;
|
|
6420
|
+
}, {
|
|
6421
|
+
x: string | number;
|
|
6422
|
+
y: string | number;
|
|
6423
|
+
}>, "many">;
|
|
6424
|
+
color: z.ZodOptional<z.ZodString>;
|
|
6425
|
+
}, "strip", z.ZodTypeAny, {
|
|
6426
|
+
type: "pcb_courtyard_polygon";
|
|
6427
|
+
pcb_component_id: string;
|
|
6428
|
+
layer: "top" | "bottom";
|
|
6429
|
+
points: {
|
|
6430
|
+
x: number;
|
|
6431
|
+
y: number;
|
|
6432
|
+
}[];
|
|
6433
|
+
pcb_courtyard_polygon_id: string;
|
|
6434
|
+
subcircuit_id?: string | undefined;
|
|
6435
|
+
pcb_group_id?: string | undefined;
|
|
6436
|
+
color?: string | undefined;
|
|
6437
|
+
}, {
|
|
6438
|
+
type: "pcb_courtyard_polygon";
|
|
6439
|
+
pcb_component_id: string;
|
|
6440
|
+
layer: "top" | "bottom";
|
|
6441
|
+
points: {
|
|
6442
|
+
x: string | number;
|
|
6443
|
+
y: string | number;
|
|
6444
|
+
}[];
|
|
6445
|
+
subcircuit_id?: string | undefined;
|
|
6446
|
+
pcb_group_id?: string | undefined;
|
|
6447
|
+
color?: string | undefined;
|
|
6448
|
+
pcb_courtyard_polygon_id?: string | undefined;
|
|
6449
|
+
}>;
|
|
6450
|
+
type PcbCourtyardPolygonInput = z.input<typeof pcb_courtyard_polygon>;
|
|
6451
|
+
/**
|
|
6452
|
+
* Defines a courtyard polygon on the PCB
|
|
6453
|
+
*/
|
|
6454
|
+
interface PcbCourtyardPolygon {
|
|
6455
|
+
type: "pcb_courtyard_polygon";
|
|
6456
|
+
pcb_courtyard_polygon_id: string;
|
|
6457
|
+
pcb_component_id: string;
|
|
6458
|
+
pcb_group_id?: string;
|
|
6459
|
+
subcircuit_id?: string;
|
|
6460
|
+
layer: VisibleLayer;
|
|
6461
|
+
points: Point[];
|
|
6462
|
+
color?: string;
|
|
6463
|
+
}
|
|
6464
|
+
/**
|
|
6465
|
+
* @deprecated use PcbCourtyardPolygon
|
|
6466
|
+
*/
|
|
6467
|
+
type PCBCourtyardPolygon = PcbCourtyardPolygon;
|
|
6468
|
+
|
|
6469
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon;
|
|
6376
6470
|
|
|
6377
6471
|
interface SchematicBox {
|
|
6378
6472
|
type: "schematic_box";
|
|
@@ -16103,9 +16197,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16103
16197
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16104
16198
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16105
16199
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16200
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16106
16201
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
16107
16202
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16108
|
-
text: z.ZodString
|
|
16203
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16109
16204
|
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
16110
16205
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16111
16206
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16120,7 +16215,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16120
16215
|
color: z.ZodOptional<z.ZodString>;
|
|
16121
16216
|
}, "strip", z.ZodTypeAny, {
|
|
16122
16217
|
type: "pcb_note_text";
|
|
16123
|
-
text: string;
|
|
16124
16218
|
font: "tscircuit2024";
|
|
16125
16219
|
font_size: number;
|
|
16126
16220
|
anchor_position: {
|
|
@@ -16129,16 +16223,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16129
16223
|
};
|
|
16130
16224
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
16131
16225
|
pcb_note_text_id: string;
|
|
16226
|
+
name?: string | undefined;
|
|
16132
16227
|
pcb_component_id?: string | undefined;
|
|
16133
16228
|
subcircuit_id?: string | undefined;
|
|
16134
16229
|
pcb_group_id?: string | undefined;
|
|
16230
|
+
text?: string | undefined;
|
|
16135
16231
|
color?: string | undefined;
|
|
16136
16232
|
}, {
|
|
16137
16233
|
type: "pcb_note_text";
|
|
16138
|
-
|
|
16234
|
+
name?: string | undefined;
|
|
16139
16235
|
pcb_component_id?: string | undefined;
|
|
16140
16236
|
subcircuit_id?: string | undefined;
|
|
16141
16237
|
pcb_group_id?: string | undefined;
|
|
16238
|
+
text?: string | undefined;
|
|
16142
16239
|
font?: "tscircuit2024" | undefined;
|
|
16143
16240
|
font_size?: string | number | undefined;
|
|
16144
16241
|
anchor_position?: {
|
|
@@ -16154,6 +16251,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16154
16251
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16155
16252
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16156
16253
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16254
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16255
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16157
16256
|
center: z.ZodObject<{
|
|
16158
16257
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16159
16258
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16181,9 +16280,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16181
16280
|
};
|
|
16182
16281
|
stroke_width: number;
|
|
16183
16282
|
pcb_note_rect_id: string;
|
|
16283
|
+
name?: string | undefined;
|
|
16184
16284
|
pcb_component_id?: string | undefined;
|
|
16185
16285
|
subcircuit_id?: string | undefined;
|
|
16186
16286
|
pcb_group_id?: string | undefined;
|
|
16287
|
+
text?: string | undefined;
|
|
16187
16288
|
is_filled?: boolean | undefined;
|
|
16188
16289
|
has_stroke?: boolean | undefined;
|
|
16189
16290
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -16196,9 +16297,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16196
16297
|
x: string | number;
|
|
16197
16298
|
y: string | number;
|
|
16198
16299
|
};
|
|
16300
|
+
name?: string | undefined;
|
|
16199
16301
|
pcb_component_id?: string | undefined;
|
|
16200
16302
|
subcircuit_id?: string | undefined;
|
|
16201
16303
|
pcb_group_id?: string | undefined;
|
|
16304
|
+
text?: string | undefined;
|
|
16202
16305
|
stroke_width?: string | number | undefined;
|
|
16203
16306
|
is_filled?: boolean | undefined;
|
|
16204
16307
|
has_stroke?: boolean | undefined;
|
|
@@ -16211,6 +16314,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16211
16314
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16212
16315
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16213
16316
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16317
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16318
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16214
16319
|
route: z.ZodArray<z.ZodObject<{
|
|
16215
16320
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16216
16321
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16231,9 +16336,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16231
16336
|
}[];
|
|
16232
16337
|
stroke_width: number;
|
|
16233
16338
|
pcb_note_path_id: string;
|
|
16339
|
+
name?: string | undefined;
|
|
16234
16340
|
pcb_component_id?: string | undefined;
|
|
16235
16341
|
subcircuit_id?: string | undefined;
|
|
16236
16342
|
pcb_group_id?: string | undefined;
|
|
16343
|
+
text?: string | undefined;
|
|
16237
16344
|
color?: string | undefined;
|
|
16238
16345
|
}, {
|
|
16239
16346
|
type: "pcb_note_path";
|
|
@@ -16241,9 +16348,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16241
16348
|
x: string | number;
|
|
16242
16349
|
y: string | number;
|
|
16243
16350
|
}[];
|
|
16351
|
+
name?: string | undefined;
|
|
16244
16352
|
pcb_component_id?: string | undefined;
|
|
16245
16353
|
subcircuit_id?: string | undefined;
|
|
16246
16354
|
pcb_group_id?: string | undefined;
|
|
16355
|
+
text?: string | undefined;
|
|
16247
16356
|
stroke_width?: string | number | undefined;
|
|
16248
16357
|
color?: string | undefined;
|
|
16249
16358
|
pcb_note_path_id?: string | undefined;
|
|
@@ -16253,6 +16362,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16253
16362
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16254
16363
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16255
16364
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16365
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16366
|
+
text: z.ZodOptional<z.ZodString>;
|
|
16256
16367
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16257
16368
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16258
16369
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16268,9 +16379,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16268
16379
|
x2: number;
|
|
16269
16380
|
y2: number;
|
|
16270
16381
|
pcb_note_line_id: string;
|
|
16382
|
+
name?: string | undefined;
|
|
16271
16383
|
pcb_component_id?: string | undefined;
|
|
16272
16384
|
subcircuit_id?: string | undefined;
|
|
16273
16385
|
pcb_group_id?: string | undefined;
|
|
16386
|
+
text?: string | undefined;
|
|
16274
16387
|
color?: string | undefined;
|
|
16275
16388
|
is_dashed?: boolean | undefined;
|
|
16276
16389
|
}, {
|
|
@@ -16279,9 +16392,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16279
16392
|
y1: string | number;
|
|
16280
16393
|
x2: string | number;
|
|
16281
16394
|
y2: string | number;
|
|
16395
|
+
name?: string | undefined;
|
|
16282
16396
|
pcb_component_id?: string | undefined;
|
|
16283
16397
|
subcircuit_id?: string | undefined;
|
|
16284
16398
|
pcb_group_id?: string | undefined;
|
|
16399
|
+
text?: string | undefined;
|
|
16285
16400
|
stroke_width?: string | number | undefined;
|
|
16286
16401
|
color?: string | undefined;
|
|
16287
16402
|
pcb_note_line_id?: string | undefined;
|
|
@@ -16292,6 +16407,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16292
16407
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16293
16408
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
16294
16409
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16410
|
+
name: z.ZodOptional<z.ZodString>;
|
|
16295
16411
|
from: z.ZodObject<{
|
|
16296
16412
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16297
16413
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16331,6 +16447,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16331
16447
|
};
|
|
16332
16448
|
arrow_size: number;
|
|
16333
16449
|
pcb_note_dimension_id: string;
|
|
16450
|
+
name?: string | undefined;
|
|
16334
16451
|
pcb_component_id?: string | undefined;
|
|
16335
16452
|
subcircuit_id?: string | undefined;
|
|
16336
16453
|
pcb_group_id?: string | undefined;
|
|
@@ -16346,6 +16463,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16346
16463
|
x: string | number;
|
|
16347
16464
|
y: string | number;
|
|
16348
16465
|
};
|
|
16466
|
+
name?: string | undefined;
|
|
16349
16467
|
pcb_component_id?: string | undefined;
|
|
16350
16468
|
subcircuit_id?: string | undefined;
|
|
16351
16469
|
pcb_group_id?: string | undefined;
|
|
@@ -17133,6 +17251,48 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17133
17251
|
color?: string | undefined;
|
|
17134
17252
|
pcb_courtyard_outline_id?: string | undefined;
|
|
17135
17253
|
is_closed?: boolean | undefined;
|
|
17254
|
+
}>, z.ZodObject<{
|
|
17255
|
+
type: z.ZodLiteral<"pcb_courtyard_polygon">;
|
|
17256
|
+
pcb_courtyard_polygon_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17257
|
+
pcb_component_id: z.ZodString;
|
|
17258
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17259
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17260
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
17261
|
+
points: z.ZodArray<z.ZodObject<{
|
|
17262
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17263
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
17264
|
+
}, "strip", z.ZodTypeAny, {
|
|
17265
|
+
x: number;
|
|
17266
|
+
y: number;
|
|
17267
|
+
}, {
|
|
17268
|
+
x: string | number;
|
|
17269
|
+
y: string | number;
|
|
17270
|
+
}>, "many">;
|
|
17271
|
+
color: z.ZodOptional<z.ZodString>;
|
|
17272
|
+
}, "strip", z.ZodTypeAny, {
|
|
17273
|
+
type: "pcb_courtyard_polygon";
|
|
17274
|
+
pcb_component_id: string;
|
|
17275
|
+
layer: "top" | "bottom";
|
|
17276
|
+
points: {
|
|
17277
|
+
x: number;
|
|
17278
|
+
y: number;
|
|
17279
|
+
}[];
|
|
17280
|
+
pcb_courtyard_polygon_id: string;
|
|
17281
|
+
subcircuit_id?: string | undefined;
|
|
17282
|
+
pcb_group_id?: string | undefined;
|
|
17283
|
+
color?: string | undefined;
|
|
17284
|
+
}, {
|
|
17285
|
+
type: "pcb_courtyard_polygon";
|
|
17286
|
+
pcb_component_id: string;
|
|
17287
|
+
layer: "top" | "bottom";
|
|
17288
|
+
points: {
|
|
17289
|
+
x: string | number;
|
|
17290
|
+
y: string | number;
|
|
17291
|
+
}[];
|
|
17292
|
+
subcircuit_id?: string | undefined;
|
|
17293
|
+
pcb_group_id?: string | undefined;
|
|
17294
|
+
color?: string | undefined;
|
|
17295
|
+
pcb_courtyard_polygon_id?: string | undefined;
|
|
17136
17296
|
}>, z.ZodObject<{
|
|
17137
17297
|
type: z.ZodLiteral<"schematic_box">;
|
|
17138
17298
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
@@ -23323,9 +23483,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23323
23483
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23324
23484
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23325
23485
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23486
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23326
23487
|
font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
|
|
23327
23488
|
font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23328
|
-
text: z.ZodString
|
|
23489
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23329
23490
|
anchor_position: z.ZodDefault<z.ZodObject<{
|
|
23330
23491
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23331
23492
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23340,7 +23501,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23340
23501
|
color: z.ZodOptional<z.ZodString>;
|
|
23341
23502
|
}, "strip", z.ZodTypeAny, {
|
|
23342
23503
|
type: "pcb_note_text";
|
|
23343
|
-
text: string;
|
|
23344
23504
|
font: "tscircuit2024";
|
|
23345
23505
|
font_size: number;
|
|
23346
23506
|
anchor_position: {
|
|
@@ -23349,16 +23509,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23349
23509
|
};
|
|
23350
23510
|
anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
23351
23511
|
pcb_note_text_id: string;
|
|
23512
|
+
name?: string | undefined;
|
|
23352
23513
|
pcb_component_id?: string | undefined;
|
|
23353
23514
|
subcircuit_id?: string | undefined;
|
|
23354
23515
|
pcb_group_id?: string | undefined;
|
|
23516
|
+
text?: string | undefined;
|
|
23355
23517
|
color?: string | undefined;
|
|
23356
23518
|
}, {
|
|
23357
23519
|
type: "pcb_note_text";
|
|
23358
|
-
|
|
23520
|
+
name?: string | undefined;
|
|
23359
23521
|
pcb_component_id?: string | undefined;
|
|
23360
23522
|
subcircuit_id?: string | undefined;
|
|
23361
23523
|
pcb_group_id?: string | undefined;
|
|
23524
|
+
text?: string | undefined;
|
|
23362
23525
|
font?: "tscircuit2024" | undefined;
|
|
23363
23526
|
font_size?: string | number | undefined;
|
|
23364
23527
|
anchor_position?: {
|
|
@@ -23374,6 +23537,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23374
23537
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23375
23538
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23376
23539
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23540
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23541
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23377
23542
|
center: z.ZodObject<{
|
|
23378
23543
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23379
23544
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23401,9 +23566,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23401
23566
|
};
|
|
23402
23567
|
stroke_width: number;
|
|
23403
23568
|
pcb_note_rect_id: string;
|
|
23569
|
+
name?: string | undefined;
|
|
23404
23570
|
pcb_component_id?: string | undefined;
|
|
23405
23571
|
subcircuit_id?: string | undefined;
|
|
23406
23572
|
pcb_group_id?: string | undefined;
|
|
23573
|
+
text?: string | undefined;
|
|
23407
23574
|
is_filled?: boolean | undefined;
|
|
23408
23575
|
has_stroke?: boolean | undefined;
|
|
23409
23576
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -23416,9 +23583,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23416
23583
|
x: string | number;
|
|
23417
23584
|
y: string | number;
|
|
23418
23585
|
};
|
|
23586
|
+
name?: string | undefined;
|
|
23419
23587
|
pcb_component_id?: string | undefined;
|
|
23420
23588
|
subcircuit_id?: string | undefined;
|
|
23421
23589
|
pcb_group_id?: string | undefined;
|
|
23590
|
+
text?: string | undefined;
|
|
23422
23591
|
stroke_width?: string | number | undefined;
|
|
23423
23592
|
is_filled?: boolean | undefined;
|
|
23424
23593
|
has_stroke?: boolean | undefined;
|
|
@@ -23431,6 +23600,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23431
23600
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23432
23601
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23433
23602
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23603
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23604
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23434
23605
|
route: z.ZodArray<z.ZodObject<{
|
|
23435
23606
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23436
23607
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23451,9 +23622,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23451
23622
|
}[];
|
|
23452
23623
|
stroke_width: number;
|
|
23453
23624
|
pcb_note_path_id: string;
|
|
23625
|
+
name?: string | undefined;
|
|
23454
23626
|
pcb_component_id?: string | undefined;
|
|
23455
23627
|
subcircuit_id?: string | undefined;
|
|
23456
23628
|
pcb_group_id?: string | undefined;
|
|
23629
|
+
text?: string | undefined;
|
|
23457
23630
|
color?: string | undefined;
|
|
23458
23631
|
}, {
|
|
23459
23632
|
type: "pcb_note_path";
|
|
@@ -23461,9 +23634,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23461
23634
|
x: string | number;
|
|
23462
23635
|
y: string | number;
|
|
23463
23636
|
}[];
|
|
23637
|
+
name?: string | undefined;
|
|
23464
23638
|
pcb_component_id?: string | undefined;
|
|
23465
23639
|
subcircuit_id?: string | undefined;
|
|
23466
23640
|
pcb_group_id?: string | undefined;
|
|
23641
|
+
text?: string | undefined;
|
|
23467
23642
|
stroke_width?: string | number | undefined;
|
|
23468
23643
|
color?: string | undefined;
|
|
23469
23644
|
pcb_note_path_id?: string | undefined;
|
|
@@ -23473,6 +23648,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23473
23648
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23474
23649
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23475
23650
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23651
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23652
|
+
text: z.ZodOptional<z.ZodString>;
|
|
23476
23653
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23477
23654
|
y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23478
23655
|
x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23488,9 +23665,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23488
23665
|
x2: number;
|
|
23489
23666
|
y2: number;
|
|
23490
23667
|
pcb_note_line_id: string;
|
|
23668
|
+
name?: string | undefined;
|
|
23491
23669
|
pcb_component_id?: string | undefined;
|
|
23492
23670
|
subcircuit_id?: string | undefined;
|
|
23493
23671
|
pcb_group_id?: string | undefined;
|
|
23672
|
+
text?: string | undefined;
|
|
23494
23673
|
color?: string | undefined;
|
|
23495
23674
|
is_dashed?: boolean | undefined;
|
|
23496
23675
|
}, {
|
|
@@ -23499,9 +23678,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23499
23678
|
y1: string | number;
|
|
23500
23679
|
x2: string | number;
|
|
23501
23680
|
y2: string | number;
|
|
23681
|
+
name?: string | undefined;
|
|
23502
23682
|
pcb_component_id?: string | undefined;
|
|
23503
23683
|
subcircuit_id?: string | undefined;
|
|
23504
23684
|
pcb_group_id?: string | undefined;
|
|
23685
|
+
text?: string | undefined;
|
|
23505
23686
|
stroke_width?: string | number | undefined;
|
|
23506
23687
|
color?: string | undefined;
|
|
23507
23688
|
pcb_note_line_id?: string | undefined;
|
|
@@ -23512,6 +23693,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23512
23693
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
23513
23694
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
23514
23695
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23696
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23515
23697
|
from: z.ZodObject<{
|
|
23516
23698
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23517
23699
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23551,6 +23733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23551
23733
|
};
|
|
23552
23734
|
arrow_size: number;
|
|
23553
23735
|
pcb_note_dimension_id: string;
|
|
23736
|
+
name?: string | undefined;
|
|
23554
23737
|
pcb_component_id?: string | undefined;
|
|
23555
23738
|
subcircuit_id?: string | undefined;
|
|
23556
23739
|
pcb_group_id?: string | undefined;
|
|
@@ -23566,6 +23749,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23566
23749
|
x: string | number;
|
|
23567
23750
|
y: string | number;
|
|
23568
23751
|
};
|
|
23752
|
+
name?: string | undefined;
|
|
23569
23753
|
pcb_component_id?: string | undefined;
|
|
23570
23754
|
subcircuit_id?: string | undefined;
|
|
23571
23755
|
pcb_group_id?: string | undefined;
|
|
@@ -24353,6 +24537,48 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24353
24537
|
color?: string | undefined;
|
|
24354
24538
|
pcb_courtyard_outline_id?: string | undefined;
|
|
24355
24539
|
is_closed?: boolean | undefined;
|
|
24540
|
+
}>, z.ZodObject<{
|
|
24541
|
+
type: z.ZodLiteral<"pcb_courtyard_polygon">;
|
|
24542
|
+
pcb_courtyard_polygon_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24543
|
+
pcb_component_id: z.ZodString;
|
|
24544
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
24545
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
24546
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
24547
|
+
points: z.ZodArray<z.ZodObject<{
|
|
24548
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
24549
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
24550
|
+
}, "strip", z.ZodTypeAny, {
|
|
24551
|
+
x: number;
|
|
24552
|
+
y: number;
|
|
24553
|
+
}, {
|
|
24554
|
+
x: string | number;
|
|
24555
|
+
y: string | number;
|
|
24556
|
+
}>, "many">;
|
|
24557
|
+
color: z.ZodOptional<z.ZodString>;
|
|
24558
|
+
}, "strip", z.ZodTypeAny, {
|
|
24559
|
+
type: "pcb_courtyard_polygon";
|
|
24560
|
+
pcb_component_id: string;
|
|
24561
|
+
layer: "top" | "bottom";
|
|
24562
|
+
points: {
|
|
24563
|
+
x: number;
|
|
24564
|
+
y: number;
|
|
24565
|
+
}[];
|
|
24566
|
+
pcb_courtyard_polygon_id: string;
|
|
24567
|
+
subcircuit_id?: string | undefined;
|
|
24568
|
+
pcb_group_id?: string | undefined;
|
|
24569
|
+
color?: string | undefined;
|
|
24570
|
+
}, {
|
|
24571
|
+
type: "pcb_courtyard_polygon";
|
|
24572
|
+
pcb_component_id: string;
|
|
24573
|
+
layer: "top" | "bottom";
|
|
24574
|
+
points: {
|
|
24575
|
+
x: string | number;
|
|
24576
|
+
y: string | number;
|
|
24577
|
+
}[];
|
|
24578
|
+
subcircuit_id?: string | undefined;
|
|
24579
|
+
pcb_group_id?: string | undefined;
|
|
24580
|
+
color?: string | undefined;
|
|
24581
|
+
pcb_courtyard_polygon_id?: string | undefined;
|
|
24356
24582
|
}>, z.ZodObject<{
|
|
24357
24583
|
type: z.ZodLiteral<"schematic_box">;
|
|
24358
24584
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
@@ -25894,4 +26120,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
25894
26120
|
*/
|
|
25895
26121
|
type CircuitJson = AnyCircuitElement[];
|
|
25896
26122
|
|
|
25897
|
-
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 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 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_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 };
|
|
26123
|
+
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 };
|