circuit-json 0.0.412 → 0.0.414
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/dist/index.d.mts +416 -3
- package/dist/index.mjs +987 -929
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -377,6 +377,33 @@ interface RouteHintPoint {
|
|
|
377
377
|
trace_width?: number;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
+
declare const manufacturing_drc_properties: z.ZodObject<{
|
|
381
|
+
min_via_to_via_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
382
|
+
min_trace_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
383
|
+
min_pad_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
384
|
+
min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
385
|
+
min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
386
|
+
}, "strip", z.ZodTypeAny, {
|
|
387
|
+
min_via_to_via_spacing?: number | undefined;
|
|
388
|
+
min_trace_to_pad_spacing?: number | undefined;
|
|
389
|
+
min_pad_to_pad_spacing?: number | undefined;
|
|
390
|
+
min_via_hole_diameter?: number | undefined;
|
|
391
|
+
min_via_pad_diameter?: number | undefined;
|
|
392
|
+
}, {
|
|
393
|
+
min_via_to_via_spacing?: string | number | undefined;
|
|
394
|
+
min_trace_to_pad_spacing?: string | number | undefined;
|
|
395
|
+
min_pad_to_pad_spacing?: string | number | undefined;
|
|
396
|
+
min_via_hole_diameter?: string | number | undefined;
|
|
397
|
+
min_via_pad_diameter?: string | number | undefined;
|
|
398
|
+
}>;
|
|
399
|
+
interface ManufacturingDrcProperties {
|
|
400
|
+
min_via_to_via_spacing?: Length;
|
|
401
|
+
min_trace_to_pad_spacing?: Length;
|
|
402
|
+
min_pad_to_pad_spacing?: Length;
|
|
403
|
+
min_via_hole_diameter?: Length;
|
|
404
|
+
min_via_pad_diameter?: Length;
|
|
405
|
+
}
|
|
406
|
+
|
|
380
407
|
interface KicadAt {
|
|
381
408
|
x: number;
|
|
382
409
|
y: number;
|
|
@@ -7512,6 +7539,12 @@ declare const pcb_board: z.ZodObject<{
|
|
|
7512
7539
|
}>>;
|
|
7513
7540
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
7514
7541
|
position_mode: z.ZodOptional<z.ZodEnum<["relative_to_panel_anchor", "none"]>>;
|
|
7542
|
+
} & {
|
|
7543
|
+
min_via_to_via_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7544
|
+
min_trace_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7545
|
+
min_pad_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7546
|
+
min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7547
|
+
min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7515
7548
|
}, "strip", z.ZodTypeAny, {
|
|
7516
7549
|
type: "pcb_board";
|
|
7517
7550
|
thickness: number;
|
|
@@ -7524,6 +7557,11 @@ declare const pcb_board: z.ZodObject<{
|
|
|
7524
7557
|
material: "fr4" | "fr1";
|
|
7525
7558
|
width?: number | undefined;
|
|
7526
7559
|
height?: number | undefined;
|
|
7560
|
+
min_via_to_via_spacing?: number | undefined;
|
|
7561
|
+
min_trace_to_pad_spacing?: number | undefined;
|
|
7562
|
+
min_pad_to_pad_spacing?: number | undefined;
|
|
7563
|
+
min_via_hole_diameter?: number | undefined;
|
|
7564
|
+
min_via_pad_diameter?: number | undefined;
|
|
7527
7565
|
shape?: "rect" | "polygon" | undefined;
|
|
7528
7566
|
display_offset_x?: string | undefined;
|
|
7529
7567
|
display_offset_y?: string | undefined;
|
|
@@ -7550,6 +7588,11 @@ declare const pcb_board: z.ZodObject<{
|
|
|
7550
7588
|
};
|
|
7551
7589
|
width?: string | number | undefined;
|
|
7552
7590
|
height?: string | number | undefined;
|
|
7591
|
+
min_via_to_via_spacing?: string | number | undefined;
|
|
7592
|
+
min_trace_to_pad_spacing?: string | number | undefined;
|
|
7593
|
+
min_pad_to_pad_spacing?: string | number | undefined;
|
|
7594
|
+
min_via_hole_diameter?: string | number | undefined;
|
|
7595
|
+
min_via_pad_diameter?: string | number | undefined;
|
|
7553
7596
|
thickness?: string | number | undefined;
|
|
7554
7597
|
shape?: "rect" | "polygon" | undefined;
|
|
7555
7598
|
display_offset_x?: string | undefined;
|
|
@@ -7576,7 +7619,7 @@ declare const pcb_board: z.ZodObject<{
|
|
|
7576
7619
|
/**
|
|
7577
7620
|
* Defines the board outline of the PCB
|
|
7578
7621
|
*/
|
|
7579
|
-
interface PcbBoard {
|
|
7622
|
+
interface PcbBoard extends ManufacturingDrcProperties {
|
|
7580
7623
|
type: "pcb_board";
|
|
7581
7624
|
pcb_board_id: string;
|
|
7582
7625
|
pcb_panel_id?: string;
|
|
@@ -11523,6 +11566,142 @@ interface PcbViaClearanceError extends BaseCircuitJsonError {
|
|
|
11523
11566
|
subcircuit_id?: string;
|
|
11524
11567
|
}
|
|
11525
11568
|
|
|
11569
|
+
declare const pcb_pad_pad_clearance_error: z.ZodObject<{
|
|
11570
|
+
message: z.ZodString;
|
|
11571
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11572
|
+
} & {
|
|
11573
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
11574
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11575
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
11576
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
11577
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11578
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11579
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
11580
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
11581
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
11582
|
+
}, "strip", z.ZodTypeAny, {
|
|
11583
|
+
x?: number | undefined;
|
|
11584
|
+
y?: number | undefined;
|
|
11585
|
+
}, {
|
|
11586
|
+
x?: number | undefined;
|
|
11587
|
+
y?: number | undefined;
|
|
11588
|
+
}>>;
|
|
11589
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11590
|
+
}, "strip", z.ZodTypeAny, {
|
|
11591
|
+
message: string;
|
|
11592
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11593
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
11594
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
11595
|
+
pcb_pad_ids: string[];
|
|
11596
|
+
center?: {
|
|
11597
|
+
x?: number | undefined;
|
|
11598
|
+
y?: number | undefined;
|
|
11599
|
+
} | undefined;
|
|
11600
|
+
subcircuit_id?: string | undefined;
|
|
11601
|
+
is_fatal?: boolean | undefined;
|
|
11602
|
+
minimum_clearance?: number | undefined;
|
|
11603
|
+
actual_clearance?: number | undefined;
|
|
11604
|
+
}, {
|
|
11605
|
+
message: string;
|
|
11606
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11607
|
+
pcb_pad_ids: string[];
|
|
11608
|
+
center?: {
|
|
11609
|
+
x?: number | undefined;
|
|
11610
|
+
y?: number | undefined;
|
|
11611
|
+
} | undefined;
|
|
11612
|
+
subcircuit_id?: string | undefined;
|
|
11613
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
11614
|
+
is_fatal?: boolean | undefined;
|
|
11615
|
+
minimum_clearance?: string | number | undefined;
|
|
11616
|
+
actual_clearance?: string | number | undefined;
|
|
11617
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
11618
|
+
}>;
|
|
11619
|
+
type PcbPadPadClearanceErrorInput = z.input<typeof pcb_pad_pad_clearance_error>;
|
|
11620
|
+
/** Error emitted when pads are closer than the allowed clearance */
|
|
11621
|
+
interface PcbPadPadClearanceError extends BaseCircuitJsonError {
|
|
11622
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11623
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
11624
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
11625
|
+
pcb_pad_ids: string[];
|
|
11626
|
+
minimum_clearance?: Distance;
|
|
11627
|
+
actual_clearance?: Distance;
|
|
11628
|
+
center?: {
|
|
11629
|
+
x?: number;
|
|
11630
|
+
y?: number;
|
|
11631
|
+
};
|
|
11632
|
+
subcircuit_id?: string;
|
|
11633
|
+
}
|
|
11634
|
+
|
|
11635
|
+
declare const pcb_pad_trace_clearance_error: z.ZodObject<{
|
|
11636
|
+
message: z.ZodString;
|
|
11637
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11638
|
+
} & {
|
|
11639
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
11640
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11641
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
11642
|
+
pcb_pad_id: z.ZodString;
|
|
11643
|
+
pcb_trace_id: z.ZodString;
|
|
11644
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11645
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11646
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
11647
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
11648
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
11649
|
+
}, "strip", z.ZodTypeAny, {
|
|
11650
|
+
x?: number | undefined;
|
|
11651
|
+
y?: number | undefined;
|
|
11652
|
+
}, {
|
|
11653
|
+
x?: number | undefined;
|
|
11654
|
+
y?: number | undefined;
|
|
11655
|
+
}>>;
|
|
11656
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11657
|
+
}, "strip", z.ZodTypeAny, {
|
|
11658
|
+
message: string;
|
|
11659
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11660
|
+
pcb_trace_id: string;
|
|
11661
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
11662
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
11663
|
+
pcb_pad_id: string;
|
|
11664
|
+
center?: {
|
|
11665
|
+
x?: number | undefined;
|
|
11666
|
+
y?: number | undefined;
|
|
11667
|
+
} | undefined;
|
|
11668
|
+
subcircuit_id?: string | undefined;
|
|
11669
|
+
is_fatal?: boolean | undefined;
|
|
11670
|
+
minimum_clearance?: number | undefined;
|
|
11671
|
+
actual_clearance?: number | undefined;
|
|
11672
|
+
}, {
|
|
11673
|
+
message: string;
|
|
11674
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11675
|
+
pcb_trace_id: string;
|
|
11676
|
+
pcb_pad_id: string;
|
|
11677
|
+
center?: {
|
|
11678
|
+
x?: number | undefined;
|
|
11679
|
+
y?: number | undefined;
|
|
11680
|
+
} | undefined;
|
|
11681
|
+
subcircuit_id?: string | undefined;
|
|
11682
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
11683
|
+
is_fatal?: boolean | undefined;
|
|
11684
|
+
minimum_clearance?: string | number | undefined;
|
|
11685
|
+
actual_clearance?: string | number | undefined;
|
|
11686
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
11687
|
+
}>;
|
|
11688
|
+
type PcbPadTraceClearanceErrorInput = z.input<typeof pcb_pad_trace_clearance_error>;
|
|
11689
|
+
/** Error emitted when a pad and trace are closer than allowed clearance */
|
|
11690
|
+
interface PcbPadTraceClearanceError extends BaseCircuitJsonError {
|
|
11691
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11692
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
11693
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
11694
|
+
pcb_pad_id: string;
|
|
11695
|
+
pcb_trace_id: string;
|
|
11696
|
+
minimum_clearance?: Distance;
|
|
11697
|
+
actual_clearance?: Distance;
|
|
11698
|
+
center?: {
|
|
11699
|
+
x?: number;
|
|
11700
|
+
y?: number;
|
|
11701
|
+
};
|
|
11702
|
+
subcircuit_id?: string;
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11526
11705
|
declare const pcb_courtyard_rect: z.ZodObject<{
|
|
11527
11706
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
11528
11707
|
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11779,7 +11958,7 @@ interface PcbCourtyardCircle {
|
|
|
11779
11958
|
color?: string;
|
|
11780
11959
|
}
|
|
11781
11960
|
|
|
11782
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
|
|
11961
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
|
|
11783
11962
|
|
|
11784
11963
|
interface SchematicBox {
|
|
11785
11964
|
type: "schematic_box";
|
|
@@ -39055,6 +39234,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39055
39234
|
}>>;
|
|
39056
39235
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
39057
39236
|
position_mode: z.ZodOptional<z.ZodEnum<["relative_to_panel_anchor", "none"]>>;
|
|
39237
|
+
} & {
|
|
39238
|
+
min_via_to_via_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39239
|
+
min_trace_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39240
|
+
min_pad_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39241
|
+
min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39242
|
+
min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
39058
39243
|
}, "strip", z.ZodTypeAny, {
|
|
39059
39244
|
type: "pcb_board";
|
|
39060
39245
|
thickness: number;
|
|
@@ -39067,6 +39252,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39067
39252
|
material: "fr4" | "fr1";
|
|
39068
39253
|
width?: number | undefined;
|
|
39069
39254
|
height?: number | undefined;
|
|
39255
|
+
min_via_to_via_spacing?: number | undefined;
|
|
39256
|
+
min_trace_to_pad_spacing?: number | undefined;
|
|
39257
|
+
min_pad_to_pad_spacing?: number | undefined;
|
|
39258
|
+
min_via_hole_diameter?: number | undefined;
|
|
39259
|
+
min_via_pad_diameter?: number | undefined;
|
|
39070
39260
|
shape?: "rect" | "polygon" | undefined;
|
|
39071
39261
|
display_offset_x?: string | undefined;
|
|
39072
39262
|
display_offset_y?: string | undefined;
|
|
@@ -39093,6 +39283,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39093
39283
|
};
|
|
39094
39284
|
width?: string | number | undefined;
|
|
39095
39285
|
height?: string | number | undefined;
|
|
39286
|
+
min_via_to_via_spacing?: string | number | undefined;
|
|
39287
|
+
min_trace_to_pad_spacing?: string | number | undefined;
|
|
39288
|
+
min_pad_to_pad_spacing?: string | number | undefined;
|
|
39289
|
+
min_via_hole_diameter?: string | number | undefined;
|
|
39290
|
+
min_via_pad_diameter?: string | number | undefined;
|
|
39096
39291
|
thickness?: string | number | undefined;
|
|
39097
39292
|
shape?: "rect" | "polygon" | undefined;
|
|
39098
39293
|
display_offset_x?: string | undefined;
|
|
@@ -40098,6 +40293,107 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40098
40293
|
x?: number | undefined;
|
|
40099
40294
|
y?: number | undefined;
|
|
40100
40295
|
} | undefined;
|
|
40296
|
+
}>, z.ZodObject<{
|
|
40297
|
+
message: z.ZodString;
|
|
40298
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
40299
|
+
} & {
|
|
40300
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
40301
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40302
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
40303
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
40304
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40305
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40306
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
40307
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
40308
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
40309
|
+
}, "strip", z.ZodTypeAny, {
|
|
40310
|
+
x?: number | undefined;
|
|
40311
|
+
y?: number | undefined;
|
|
40312
|
+
}, {
|
|
40313
|
+
x?: number | undefined;
|
|
40314
|
+
y?: number | undefined;
|
|
40315
|
+
}>>;
|
|
40316
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40317
|
+
}, "strip", z.ZodTypeAny, {
|
|
40318
|
+
message: string;
|
|
40319
|
+
type: "pcb_pad_pad_clearance_error";
|
|
40320
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
40321
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
40322
|
+
pcb_pad_ids: string[];
|
|
40323
|
+
center?: {
|
|
40324
|
+
x?: number | undefined;
|
|
40325
|
+
y?: number | undefined;
|
|
40326
|
+
} | undefined;
|
|
40327
|
+
subcircuit_id?: string | undefined;
|
|
40328
|
+
is_fatal?: boolean | undefined;
|
|
40329
|
+
minimum_clearance?: number | undefined;
|
|
40330
|
+
actual_clearance?: number | undefined;
|
|
40331
|
+
}, {
|
|
40332
|
+
message: string;
|
|
40333
|
+
type: "pcb_pad_pad_clearance_error";
|
|
40334
|
+
pcb_pad_ids: string[];
|
|
40335
|
+
center?: {
|
|
40336
|
+
x?: number | undefined;
|
|
40337
|
+
y?: number | undefined;
|
|
40338
|
+
} | undefined;
|
|
40339
|
+
subcircuit_id?: string | undefined;
|
|
40340
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
40341
|
+
is_fatal?: boolean | undefined;
|
|
40342
|
+
minimum_clearance?: string | number | undefined;
|
|
40343
|
+
actual_clearance?: string | number | undefined;
|
|
40344
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
40345
|
+
}>, z.ZodObject<{
|
|
40346
|
+
message: z.ZodString;
|
|
40347
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
40348
|
+
} & {
|
|
40349
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
40350
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40351
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
40352
|
+
pcb_pad_id: z.ZodString;
|
|
40353
|
+
pcb_trace_id: z.ZodString;
|
|
40354
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40355
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40356
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
40357
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
40358
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
40359
|
+
}, "strip", z.ZodTypeAny, {
|
|
40360
|
+
x?: number | undefined;
|
|
40361
|
+
y?: number | undefined;
|
|
40362
|
+
}, {
|
|
40363
|
+
x?: number | undefined;
|
|
40364
|
+
y?: number | undefined;
|
|
40365
|
+
}>>;
|
|
40366
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40367
|
+
}, "strip", z.ZodTypeAny, {
|
|
40368
|
+
message: string;
|
|
40369
|
+
type: "pcb_pad_trace_clearance_error";
|
|
40370
|
+
pcb_trace_id: string;
|
|
40371
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
40372
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
40373
|
+
pcb_pad_id: string;
|
|
40374
|
+
center?: {
|
|
40375
|
+
x?: number | undefined;
|
|
40376
|
+
y?: number | undefined;
|
|
40377
|
+
} | undefined;
|
|
40378
|
+
subcircuit_id?: string | undefined;
|
|
40379
|
+
is_fatal?: boolean | undefined;
|
|
40380
|
+
minimum_clearance?: number | undefined;
|
|
40381
|
+
actual_clearance?: number | undefined;
|
|
40382
|
+
}, {
|
|
40383
|
+
message: string;
|
|
40384
|
+
type: "pcb_pad_trace_clearance_error";
|
|
40385
|
+
pcb_trace_id: string;
|
|
40386
|
+
pcb_pad_id: string;
|
|
40387
|
+
center?: {
|
|
40388
|
+
x?: number | undefined;
|
|
40389
|
+
y?: number | undefined;
|
|
40390
|
+
} | undefined;
|
|
40391
|
+
subcircuit_id?: string | undefined;
|
|
40392
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
40393
|
+
is_fatal?: boolean | undefined;
|
|
40394
|
+
minimum_clearance?: string | number | undefined;
|
|
40395
|
+
actual_clearance?: string | number | undefined;
|
|
40396
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
40101
40397
|
}>, z.ZodObject<{
|
|
40102
40398
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
40103
40399
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -56958,6 +57254,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56958
57254
|
}>>;
|
|
56959
57255
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
56960
57256
|
position_mode: z.ZodOptional<z.ZodEnum<["relative_to_panel_anchor", "none"]>>;
|
|
57257
|
+
} & {
|
|
57258
|
+
min_via_to_via_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57259
|
+
min_trace_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57260
|
+
min_pad_to_pad_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57261
|
+
min_via_hole_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
57262
|
+
min_via_pad_diameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
56961
57263
|
}, "strip", z.ZodTypeAny, {
|
|
56962
57264
|
type: "pcb_board";
|
|
56963
57265
|
thickness: number;
|
|
@@ -56970,6 +57272,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56970
57272
|
material: "fr4" | "fr1";
|
|
56971
57273
|
width?: number | undefined;
|
|
56972
57274
|
height?: number | undefined;
|
|
57275
|
+
min_via_to_via_spacing?: number | undefined;
|
|
57276
|
+
min_trace_to_pad_spacing?: number | undefined;
|
|
57277
|
+
min_pad_to_pad_spacing?: number | undefined;
|
|
57278
|
+
min_via_hole_diameter?: number | undefined;
|
|
57279
|
+
min_via_pad_diameter?: number | undefined;
|
|
56973
57280
|
shape?: "rect" | "polygon" | undefined;
|
|
56974
57281
|
display_offset_x?: string | undefined;
|
|
56975
57282
|
display_offset_y?: string | undefined;
|
|
@@ -56996,6 +57303,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56996
57303
|
};
|
|
56997
57304
|
width?: string | number | undefined;
|
|
56998
57305
|
height?: string | number | undefined;
|
|
57306
|
+
min_via_to_via_spacing?: string | number | undefined;
|
|
57307
|
+
min_trace_to_pad_spacing?: string | number | undefined;
|
|
57308
|
+
min_pad_to_pad_spacing?: string | number | undefined;
|
|
57309
|
+
min_via_hole_diameter?: string | number | undefined;
|
|
57310
|
+
min_via_pad_diameter?: string | number | undefined;
|
|
56999
57311
|
thickness?: string | number | undefined;
|
|
57000
57312
|
shape?: "rect" | "polygon" | undefined;
|
|
57001
57313
|
display_offset_x?: string | undefined;
|
|
@@ -58001,6 +58313,107 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58001
58313
|
x?: number | undefined;
|
|
58002
58314
|
y?: number | undefined;
|
|
58003
58315
|
} | undefined;
|
|
58316
|
+
}>, z.ZodObject<{
|
|
58317
|
+
message: z.ZodString;
|
|
58318
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
58319
|
+
} & {
|
|
58320
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
58321
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
58322
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
58323
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
58324
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58325
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58326
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
58327
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
58328
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
58329
|
+
}, "strip", z.ZodTypeAny, {
|
|
58330
|
+
x?: number | undefined;
|
|
58331
|
+
y?: number | undefined;
|
|
58332
|
+
}, {
|
|
58333
|
+
x?: number | undefined;
|
|
58334
|
+
y?: number | undefined;
|
|
58335
|
+
}>>;
|
|
58336
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
58337
|
+
}, "strip", z.ZodTypeAny, {
|
|
58338
|
+
message: string;
|
|
58339
|
+
type: "pcb_pad_pad_clearance_error";
|
|
58340
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
58341
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
58342
|
+
pcb_pad_ids: string[];
|
|
58343
|
+
center?: {
|
|
58344
|
+
x?: number | undefined;
|
|
58345
|
+
y?: number | undefined;
|
|
58346
|
+
} | undefined;
|
|
58347
|
+
subcircuit_id?: string | undefined;
|
|
58348
|
+
is_fatal?: boolean | undefined;
|
|
58349
|
+
minimum_clearance?: number | undefined;
|
|
58350
|
+
actual_clearance?: number | undefined;
|
|
58351
|
+
}, {
|
|
58352
|
+
message: string;
|
|
58353
|
+
type: "pcb_pad_pad_clearance_error";
|
|
58354
|
+
pcb_pad_ids: string[];
|
|
58355
|
+
center?: {
|
|
58356
|
+
x?: number | undefined;
|
|
58357
|
+
y?: number | undefined;
|
|
58358
|
+
} | undefined;
|
|
58359
|
+
subcircuit_id?: string | undefined;
|
|
58360
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
58361
|
+
is_fatal?: boolean | undefined;
|
|
58362
|
+
minimum_clearance?: string | number | undefined;
|
|
58363
|
+
actual_clearance?: string | number | undefined;
|
|
58364
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
58365
|
+
}>, z.ZodObject<{
|
|
58366
|
+
message: z.ZodString;
|
|
58367
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
58368
|
+
} & {
|
|
58369
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
58370
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
58371
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
58372
|
+
pcb_pad_id: z.ZodString;
|
|
58373
|
+
pcb_trace_id: z.ZodString;
|
|
58374
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58375
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58376
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
58377
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
58378
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
58379
|
+
}, "strip", z.ZodTypeAny, {
|
|
58380
|
+
x?: number | undefined;
|
|
58381
|
+
y?: number | undefined;
|
|
58382
|
+
}, {
|
|
58383
|
+
x?: number | undefined;
|
|
58384
|
+
y?: number | undefined;
|
|
58385
|
+
}>>;
|
|
58386
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
58387
|
+
}, "strip", z.ZodTypeAny, {
|
|
58388
|
+
message: string;
|
|
58389
|
+
type: "pcb_pad_trace_clearance_error";
|
|
58390
|
+
pcb_trace_id: string;
|
|
58391
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
58392
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
58393
|
+
pcb_pad_id: string;
|
|
58394
|
+
center?: {
|
|
58395
|
+
x?: number | undefined;
|
|
58396
|
+
y?: number | undefined;
|
|
58397
|
+
} | undefined;
|
|
58398
|
+
subcircuit_id?: string | undefined;
|
|
58399
|
+
is_fatal?: boolean | undefined;
|
|
58400
|
+
minimum_clearance?: number | undefined;
|
|
58401
|
+
actual_clearance?: number | undefined;
|
|
58402
|
+
}, {
|
|
58403
|
+
message: string;
|
|
58404
|
+
type: "pcb_pad_trace_clearance_error";
|
|
58405
|
+
pcb_trace_id: string;
|
|
58406
|
+
pcb_pad_id: string;
|
|
58407
|
+
center?: {
|
|
58408
|
+
x?: number | undefined;
|
|
58409
|
+
y?: number | undefined;
|
|
58410
|
+
} | undefined;
|
|
58411
|
+
subcircuit_id?: string | undefined;
|
|
58412
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
58413
|
+
is_fatal?: boolean | undefined;
|
|
58414
|
+
minimum_clearance?: string | number | undefined;
|
|
58415
|
+
actual_clearance?: string | number | undefined;
|
|
58416
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
58004
58417
|
}>, z.ZodObject<{
|
|
58005
58418
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
58006
58419
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -68238,4 +68651,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
68238
68651
|
*/
|
|
68239
68652
|
type CircuitJson = AnyCircuitElement[];
|
|
68240
68653
|
|
|
68241
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, 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 PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, 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 PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbTraceWarning, type PcbTraceWarningInput, 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 SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, 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, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_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_panelization_placement_error, 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_pill, 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_trace_warning, 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_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
68654
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, 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 PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, 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 PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbTraceWarning, type PcbTraceWarningInput, 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 SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, 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, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, 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_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, 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_pill, 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_trace_warning, 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_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|