circuit-json 0.0.445 → 0.0.447
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 +23 -0
- package/dist/index.d.mts +337 -6
- package/dist/index.mjs +1513 -1468
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,6 +163,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
163
163
|
- [PcbTraceError](#pcbtraceerror)
|
|
164
164
|
- [PcbTraceHint](#pcbtracehint)
|
|
165
165
|
- [PcbTraceMissingError](#pcbtracemissingerror)
|
|
166
|
+
- [PcbTraceTooLongWarning](#pcbtracetoolongwarning)
|
|
166
167
|
- [PcbTraceWarning](#pcbtracewarning)
|
|
167
168
|
- [PcbVia](#pcbvia)
|
|
168
169
|
- [PcbViaClearanceError](#pcbviaclearanceerror)
|
|
@@ -2684,6 +2685,28 @@ interface PcbTraceMissingError extends BaseCircuitJsonError {
|
|
|
2684
2685
|
}
|
|
2685
2686
|
```
|
|
2686
2687
|
|
|
2688
|
+
### PcbTraceTooLongWarning
|
|
2689
|
+
|
|
2690
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_too_long_warning.ts)
|
|
2691
|
+
|
|
2692
|
+
Warning emitted when a PCB trace is longer than its maximum allowed length
|
|
2693
|
+
|
|
2694
|
+
```typescript
|
|
2695
|
+
/** Warning emitted when a PCB trace is longer than its maximum allowed length */
|
|
2696
|
+
interface PcbTraceTooLongWarning {
|
|
2697
|
+
type: "pcb_trace_too_long_warning"
|
|
2698
|
+
pcb_trace_too_long_warning_id: string
|
|
2699
|
+
warning_type: "pcb_trace_too_long_warning"
|
|
2700
|
+
message: string
|
|
2701
|
+
pcb_trace_id: string
|
|
2702
|
+
source_net_id?: string
|
|
2703
|
+
source_trace_id?: string
|
|
2704
|
+
actual_trace_length: Distance
|
|
2705
|
+
maximum_trace_length: Distance
|
|
2706
|
+
subcircuit_id?: string
|
|
2707
|
+
}
|
|
2708
|
+
```
|
|
2709
|
+
|
|
2687
2710
|
### PcbTraceWarning
|
|
2688
2711
|
|
|
2689
2712
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_warning.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -7406,6 +7406,55 @@ interface PcbTraceWarning {
|
|
|
7406
7406
|
subcircuit_id?: string;
|
|
7407
7407
|
}
|
|
7408
7408
|
|
|
7409
|
+
declare const pcb_trace_too_long_warning: z.ZodObject<{
|
|
7410
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
7411
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7412
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
7413
|
+
message: z.ZodString;
|
|
7414
|
+
pcb_trace_id: z.ZodString;
|
|
7415
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
7416
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
7417
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7418
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7419
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7420
|
+
}, "strip", z.ZodTypeAny, {
|
|
7421
|
+
message: string;
|
|
7422
|
+
type: "pcb_trace_too_long_warning";
|
|
7423
|
+
pcb_trace_id: string;
|
|
7424
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
7425
|
+
pcb_trace_too_long_warning_id: string;
|
|
7426
|
+
actual_trace_length: number;
|
|
7427
|
+
maximum_trace_length: number;
|
|
7428
|
+
subcircuit_id?: string | undefined;
|
|
7429
|
+
source_trace_id?: string | undefined;
|
|
7430
|
+
source_net_id?: string | undefined;
|
|
7431
|
+
}, {
|
|
7432
|
+
message: string;
|
|
7433
|
+
type: "pcb_trace_too_long_warning";
|
|
7434
|
+
pcb_trace_id: string;
|
|
7435
|
+
actual_trace_length: string | number;
|
|
7436
|
+
maximum_trace_length: string | number;
|
|
7437
|
+
subcircuit_id?: string | undefined;
|
|
7438
|
+
source_trace_id?: string | undefined;
|
|
7439
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
7440
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
7441
|
+
source_net_id?: string | undefined;
|
|
7442
|
+
}>;
|
|
7443
|
+
type PcbTraceTooLongWarningInput = z.input<typeof pcb_trace_too_long_warning>;
|
|
7444
|
+
/** Warning emitted when a PCB trace is longer than its maximum allowed length */
|
|
7445
|
+
interface PcbTraceTooLongWarning {
|
|
7446
|
+
type: "pcb_trace_too_long_warning";
|
|
7447
|
+
pcb_trace_too_long_warning_id: string;
|
|
7448
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
7449
|
+
message: string;
|
|
7450
|
+
pcb_trace_id: string;
|
|
7451
|
+
source_net_id?: string;
|
|
7452
|
+
source_trace_id?: string;
|
|
7453
|
+
actual_trace_length: Distance;
|
|
7454
|
+
maximum_trace_length: Distance;
|
|
7455
|
+
subcircuit_id?: string;
|
|
7456
|
+
}
|
|
7457
|
+
|
|
7409
7458
|
declare const base_circuit_json_error: z.ZodObject<{
|
|
7410
7459
|
error_type: z.ZodString;
|
|
7411
7460
|
message: z.ZodString;
|
|
@@ -7665,8 +7714,8 @@ declare const pcb_net: z.ZodObject<{
|
|
|
7665
7714
|
}, {
|
|
7666
7715
|
type: "pcb_net";
|
|
7667
7716
|
highlight_color?: string | undefined;
|
|
7668
|
-
pcb_net_id?: string | undefined;
|
|
7669
7717
|
source_net_id?: string | undefined;
|
|
7718
|
+
pcb_net_id?: string | undefined;
|
|
7670
7719
|
}>;
|
|
7671
7720
|
type PcbNetInput = z.input<typeof pcb_net>;
|
|
7672
7721
|
/**
|
|
@@ -12844,7 +12893,7 @@ interface PcbCourtyardPill {
|
|
|
12844
12893
|
color?: string;
|
|
12845
12894
|
}
|
|
12846
12895
|
|
|
12847
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbSilkscreenGraphic | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
|
|
12896
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceTooLongWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbSilkscreenGraphic | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
|
|
12848
12897
|
|
|
12849
12898
|
interface SchematicBox {
|
|
12850
12899
|
type: "schematic_box";
|
|
@@ -28803,6 +28852,57 @@ interface SourceMissingManufacturerPartNumberWarning {
|
|
|
28803
28852
|
subcircuit_id?: string;
|
|
28804
28853
|
}
|
|
28805
28854
|
|
|
28855
|
+
declare const source_refdes_convention_warning: z.ZodObject<{
|
|
28856
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
28857
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28858
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
28859
|
+
message: z.ZodString;
|
|
28860
|
+
source_component_id: z.ZodString;
|
|
28861
|
+
refdes: z.ZodString;
|
|
28862
|
+
source_component_ftype: z.ZodString;
|
|
28863
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
28864
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
28865
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28866
|
+
}, "strip", z.ZodTypeAny, {
|
|
28867
|
+
message: string;
|
|
28868
|
+
type: "source_refdes_convention_warning";
|
|
28869
|
+
source_component_id: string;
|
|
28870
|
+
warning_type: "source_refdes_convention_warning";
|
|
28871
|
+
source_refdes_convention_warning_id: string;
|
|
28872
|
+
refdes: string;
|
|
28873
|
+
source_component_ftype: string;
|
|
28874
|
+
expected_prefixes: string[];
|
|
28875
|
+
subcircuit_id?: string | undefined;
|
|
28876
|
+
actual_prefix?: string | undefined;
|
|
28877
|
+
}, {
|
|
28878
|
+
message: string;
|
|
28879
|
+
type: "source_refdes_convention_warning";
|
|
28880
|
+
source_component_id: string;
|
|
28881
|
+
refdes: string;
|
|
28882
|
+
source_component_ftype: string;
|
|
28883
|
+
expected_prefixes: string[];
|
|
28884
|
+
subcircuit_id?: string | undefined;
|
|
28885
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
28886
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
28887
|
+
actual_prefix?: string | undefined;
|
|
28888
|
+
}>;
|
|
28889
|
+
type SourceRefdesConventionWarningInput = z.input<typeof source_refdes_convention_warning>;
|
|
28890
|
+
/**
|
|
28891
|
+
* Warning emitted when a source component reference designator does not match the component type convention
|
|
28892
|
+
*/
|
|
28893
|
+
interface SourceRefdesConventionWarning {
|
|
28894
|
+
type: "source_refdes_convention_warning";
|
|
28895
|
+
source_refdes_convention_warning_id: string;
|
|
28896
|
+
warning_type: "source_refdes_convention_warning";
|
|
28897
|
+
message: string;
|
|
28898
|
+
source_component_id: string;
|
|
28899
|
+
refdes: string;
|
|
28900
|
+
source_component_ftype: string;
|
|
28901
|
+
expected_prefixes: string[];
|
|
28902
|
+
actual_prefix?: string;
|
|
28903
|
+
subcircuit_id?: string;
|
|
28904
|
+
}
|
|
28905
|
+
|
|
28806
28906
|
declare const source_simple_voltage_probe: z.ZodObject<{
|
|
28807
28907
|
type: z.ZodLiteral<"source_component">;
|
|
28808
28908
|
source_component_id: z.ZodString;
|
|
@@ -30592,6 +30692,39 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
30592
30692
|
subcircuit_id?: string | undefined;
|
|
30593
30693
|
warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
|
|
30594
30694
|
source_missing_manufacturer_part_number_warning_id?: string | undefined;
|
|
30695
|
+
}>, z.ZodObject<{
|
|
30696
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
30697
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30698
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
30699
|
+
message: z.ZodString;
|
|
30700
|
+
source_component_id: z.ZodString;
|
|
30701
|
+
refdes: z.ZodString;
|
|
30702
|
+
source_component_ftype: z.ZodString;
|
|
30703
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
30704
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
30705
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
30706
|
+
}, "strip", z.ZodTypeAny, {
|
|
30707
|
+
message: string;
|
|
30708
|
+
type: "source_refdes_convention_warning";
|
|
30709
|
+
source_component_id: string;
|
|
30710
|
+
warning_type: "source_refdes_convention_warning";
|
|
30711
|
+
source_refdes_convention_warning_id: string;
|
|
30712
|
+
refdes: string;
|
|
30713
|
+
source_component_ftype: string;
|
|
30714
|
+
expected_prefixes: string[];
|
|
30715
|
+
subcircuit_id?: string | undefined;
|
|
30716
|
+
actual_prefix?: string | undefined;
|
|
30717
|
+
}, {
|
|
30718
|
+
message: string;
|
|
30719
|
+
type: "source_refdes_convention_warning";
|
|
30720
|
+
source_component_id: string;
|
|
30721
|
+
refdes: string;
|
|
30722
|
+
source_component_ftype: string;
|
|
30723
|
+
expected_prefixes: string[];
|
|
30724
|
+
subcircuit_id?: string | undefined;
|
|
30725
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
30726
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
30727
|
+
actual_prefix?: string | undefined;
|
|
30595
30728
|
}>, z.ZodObject<{
|
|
30596
30729
|
message: z.ZodString;
|
|
30597
30730
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30644,7 +30777,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
30644
30777
|
* Deprecated: use `AnySourceElement` instead
|
|
30645
30778
|
*/
|
|
30646
30779
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
30647
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
|
|
30780
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceRefdesConventionWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
|
|
30648
30781
|
|
|
30649
30782
|
declare const source_port: z.ZodObject<{
|
|
30650
30783
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -35970,6 +36103,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35970
36103
|
subcircuit_id?: string | undefined;
|
|
35971
36104
|
warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
|
|
35972
36105
|
source_missing_manufacturer_part_number_warning_id?: string | undefined;
|
|
36106
|
+
}>, z.ZodObject<{
|
|
36107
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
36108
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
36109
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
36110
|
+
message: z.ZodString;
|
|
36111
|
+
source_component_id: z.ZodString;
|
|
36112
|
+
refdes: z.ZodString;
|
|
36113
|
+
source_component_ftype: z.ZodString;
|
|
36114
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
36115
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
36116
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
36117
|
+
}, "strip", z.ZodTypeAny, {
|
|
36118
|
+
message: string;
|
|
36119
|
+
type: "source_refdes_convention_warning";
|
|
36120
|
+
source_component_id: string;
|
|
36121
|
+
warning_type: "source_refdes_convention_warning";
|
|
36122
|
+
source_refdes_convention_warning_id: string;
|
|
36123
|
+
refdes: string;
|
|
36124
|
+
source_component_ftype: string;
|
|
36125
|
+
expected_prefixes: string[];
|
|
36126
|
+
subcircuit_id?: string | undefined;
|
|
36127
|
+
actual_prefix?: string | undefined;
|
|
36128
|
+
}, {
|
|
36129
|
+
message: string;
|
|
36130
|
+
type: "source_refdes_convention_warning";
|
|
36131
|
+
source_component_id: string;
|
|
36132
|
+
refdes: string;
|
|
36133
|
+
source_component_ftype: string;
|
|
36134
|
+
expected_prefixes: string[];
|
|
36135
|
+
subcircuit_id?: string | undefined;
|
|
36136
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
36137
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
36138
|
+
actual_prefix?: string | undefined;
|
|
35973
36139
|
}>, z.ZodObject<{
|
|
35974
36140
|
message: z.ZodString;
|
|
35975
36141
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37102,6 +37268,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37102
37268
|
subcircuit_id?: string | undefined;
|
|
37103
37269
|
warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
|
|
37104
37270
|
source_missing_manufacturer_part_number_warning_id?: string | undefined;
|
|
37271
|
+
}>, z.ZodObject<{
|
|
37272
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
37273
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
37274
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
37275
|
+
message: z.ZodString;
|
|
37276
|
+
source_component_id: z.ZodString;
|
|
37277
|
+
refdes: z.ZodString;
|
|
37278
|
+
source_component_ftype: z.ZodString;
|
|
37279
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
37280
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
37281
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
37282
|
+
}, "strip", z.ZodTypeAny, {
|
|
37283
|
+
message: string;
|
|
37284
|
+
type: "source_refdes_convention_warning";
|
|
37285
|
+
source_component_id: string;
|
|
37286
|
+
warning_type: "source_refdes_convention_warning";
|
|
37287
|
+
source_refdes_convention_warning_id: string;
|
|
37288
|
+
refdes: string;
|
|
37289
|
+
source_component_ftype: string;
|
|
37290
|
+
expected_prefixes: string[];
|
|
37291
|
+
subcircuit_id?: string | undefined;
|
|
37292
|
+
actual_prefix?: string | undefined;
|
|
37293
|
+
}, {
|
|
37294
|
+
message: string;
|
|
37295
|
+
type: "source_refdes_convention_warning";
|
|
37296
|
+
source_component_id: string;
|
|
37297
|
+
refdes: string;
|
|
37298
|
+
source_component_ftype: string;
|
|
37299
|
+
expected_prefixes: string[];
|
|
37300
|
+
subcircuit_id?: string | undefined;
|
|
37301
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
37302
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
37303
|
+
actual_prefix?: string | undefined;
|
|
37105
37304
|
}>, z.ZodObject<{
|
|
37106
37305
|
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
37107
37306
|
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -40023,8 +40222,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40023
40222
|
}, {
|
|
40024
40223
|
type: "pcb_net";
|
|
40025
40224
|
highlight_color?: string | undefined;
|
|
40026
|
-
pcb_net_id?: string | undefined;
|
|
40027
40225
|
source_net_id?: string | undefined;
|
|
40226
|
+
pcb_net_id?: string | undefined;
|
|
40028
40227
|
}>, z.ZodObject<{
|
|
40029
40228
|
type: z.ZodLiteral<"pcb_text">;
|
|
40030
40229
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -40420,6 +40619,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40420
40619
|
subcircuit_id?: string | undefined;
|
|
40421
40620
|
pcb_trace_warning_id?: string | undefined;
|
|
40422
40621
|
warning_type?: "pcb_trace_warning" | undefined;
|
|
40622
|
+
}>, z.ZodObject<{
|
|
40623
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
40624
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40625
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
40626
|
+
message: z.ZodString;
|
|
40627
|
+
pcb_trace_id: z.ZodString;
|
|
40628
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
40629
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
40630
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
40631
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
40632
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40633
|
+
}, "strip", z.ZodTypeAny, {
|
|
40634
|
+
message: string;
|
|
40635
|
+
type: "pcb_trace_too_long_warning";
|
|
40636
|
+
pcb_trace_id: string;
|
|
40637
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
40638
|
+
pcb_trace_too_long_warning_id: string;
|
|
40639
|
+
actual_trace_length: number;
|
|
40640
|
+
maximum_trace_length: number;
|
|
40641
|
+
subcircuit_id?: string | undefined;
|
|
40642
|
+
source_trace_id?: string | undefined;
|
|
40643
|
+
source_net_id?: string | undefined;
|
|
40644
|
+
}, {
|
|
40645
|
+
message: string;
|
|
40646
|
+
type: "pcb_trace_too_long_warning";
|
|
40647
|
+
pcb_trace_id: string;
|
|
40648
|
+
actual_trace_length: string | number;
|
|
40649
|
+
maximum_trace_length: string | number;
|
|
40650
|
+
subcircuit_id?: string | undefined;
|
|
40651
|
+
source_trace_id?: string | undefined;
|
|
40652
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
40653
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
40654
|
+
source_net_id?: string | undefined;
|
|
40423
40655
|
}>, z.ZodObject<{
|
|
40424
40656
|
type: z.ZodLiteral<"pcb_via">;
|
|
40425
40657
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -54890,6 +55122,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
54890
55122
|
subcircuit_id?: string | undefined;
|
|
54891
55123
|
warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
|
|
54892
55124
|
source_missing_manufacturer_part_number_warning_id?: string | undefined;
|
|
55125
|
+
}>, z.ZodObject<{
|
|
55126
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
55127
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
55128
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
55129
|
+
message: z.ZodString;
|
|
55130
|
+
source_component_id: z.ZodString;
|
|
55131
|
+
refdes: z.ZodString;
|
|
55132
|
+
source_component_ftype: z.ZodString;
|
|
55133
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
55134
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
55135
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
55136
|
+
}, "strip", z.ZodTypeAny, {
|
|
55137
|
+
message: string;
|
|
55138
|
+
type: "source_refdes_convention_warning";
|
|
55139
|
+
source_component_id: string;
|
|
55140
|
+
warning_type: "source_refdes_convention_warning";
|
|
55141
|
+
source_refdes_convention_warning_id: string;
|
|
55142
|
+
refdes: string;
|
|
55143
|
+
source_component_ftype: string;
|
|
55144
|
+
expected_prefixes: string[];
|
|
55145
|
+
subcircuit_id?: string | undefined;
|
|
55146
|
+
actual_prefix?: string | undefined;
|
|
55147
|
+
}, {
|
|
55148
|
+
message: string;
|
|
55149
|
+
type: "source_refdes_convention_warning";
|
|
55150
|
+
source_component_id: string;
|
|
55151
|
+
refdes: string;
|
|
55152
|
+
source_component_ftype: string;
|
|
55153
|
+
expected_prefixes: string[];
|
|
55154
|
+
subcircuit_id?: string | undefined;
|
|
55155
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
55156
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
55157
|
+
actual_prefix?: string | undefined;
|
|
54893
55158
|
}>, z.ZodObject<{
|
|
54894
55159
|
message: z.ZodString;
|
|
54895
55160
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -56022,6 +56287,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56022
56287
|
subcircuit_id?: string | undefined;
|
|
56023
56288
|
warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
|
|
56024
56289
|
source_missing_manufacturer_part_number_warning_id?: string | undefined;
|
|
56290
|
+
}>, z.ZodObject<{
|
|
56291
|
+
type: z.ZodLiteral<"source_refdes_convention_warning">;
|
|
56292
|
+
source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
56293
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
|
|
56294
|
+
message: z.ZodString;
|
|
56295
|
+
source_component_id: z.ZodString;
|
|
56296
|
+
refdes: z.ZodString;
|
|
56297
|
+
source_component_ftype: z.ZodString;
|
|
56298
|
+
expected_prefixes: z.ZodArray<z.ZodString, "many">;
|
|
56299
|
+
actual_prefix: z.ZodOptional<z.ZodString>;
|
|
56300
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
56301
|
+
}, "strip", z.ZodTypeAny, {
|
|
56302
|
+
message: string;
|
|
56303
|
+
type: "source_refdes_convention_warning";
|
|
56304
|
+
source_component_id: string;
|
|
56305
|
+
warning_type: "source_refdes_convention_warning";
|
|
56306
|
+
source_refdes_convention_warning_id: string;
|
|
56307
|
+
refdes: string;
|
|
56308
|
+
source_component_ftype: string;
|
|
56309
|
+
expected_prefixes: string[];
|
|
56310
|
+
subcircuit_id?: string | undefined;
|
|
56311
|
+
actual_prefix?: string | undefined;
|
|
56312
|
+
}, {
|
|
56313
|
+
message: string;
|
|
56314
|
+
type: "source_refdes_convention_warning";
|
|
56315
|
+
source_component_id: string;
|
|
56316
|
+
refdes: string;
|
|
56317
|
+
source_component_ftype: string;
|
|
56318
|
+
expected_prefixes: string[];
|
|
56319
|
+
subcircuit_id?: string | undefined;
|
|
56320
|
+
warning_type?: "source_refdes_convention_warning" | undefined;
|
|
56321
|
+
source_refdes_convention_warning_id?: string | undefined;
|
|
56322
|
+
actual_prefix?: string | undefined;
|
|
56025
56323
|
}>, z.ZodObject<{
|
|
56026
56324
|
type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
|
|
56027
56325
|
source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -58943,8 +59241,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58943
59241
|
}, {
|
|
58944
59242
|
type: "pcb_net";
|
|
58945
59243
|
highlight_color?: string | undefined;
|
|
58946
|
-
pcb_net_id?: string | undefined;
|
|
58947
59244
|
source_net_id?: string | undefined;
|
|
59245
|
+
pcb_net_id?: string | undefined;
|
|
58948
59246
|
}>, z.ZodObject<{
|
|
58949
59247
|
type: z.ZodLiteral<"pcb_text">;
|
|
58950
59248
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -59340,6 +59638,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
59340
59638
|
subcircuit_id?: string | undefined;
|
|
59341
59639
|
pcb_trace_warning_id?: string | undefined;
|
|
59342
59640
|
warning_type?: "pcb_trace_warning" | undefined;
|
|
59641
|
+
}>, z.ZodObject<{
|
|
59642
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
59643
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
59644
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
59645
|
+
message: z.ZodString;
|
|
59646
|
+
pcb_trace_id: z.ZodString;
|
|
59647
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
59648
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
59649
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
59650
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
59651
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
59652
|
+
}, "strip", z.ZodTypeAny, {
|
|
59653
|
+
message: string;
|
|
59654
|
+
type: "pcb_trace_too_long_warning";
|
|
59655
|
+
pcb_trace_id: string;
|
|
59656
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
59657
|
+
pcb_trace_too_long_warning_id: string;
|
|
59658
|
+
actual_trace_length: number;
|
|
59659
|
+
maximum_trace_length: number;
|
|
59660
|
+
subcircuit_id?: string | undefined;
|
|
59661
|
+
source_trace_id?: string | undefined;
|
|
59662
|
+
source_net_id?: string | undefined;
|
|
59663
|
+
}, {
|
|
59664
|
+
message: string;
|
|
59665
|
+
type: "pcb_trace_too_long_warning";
|
|
59666
|
+
pcb_trace_id: string;
|
|
59667
|
+
actual_trace_length: string | number;
|
|
59668
|
+
maximum_trace_length: string | number;
|
|
59669
|
+
subcircuit_id?: string | undefined;
|
|
59670
|
+
source_trace_id?: string | undefined;
|
|
59671
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
59672
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
59673
|
+
source_net_id?: string | undefined;
|
|
59343
59674
|
}>, z.ZodObject<{
|
|
59344
59675
|
type: z.ZodLiteral<"pcb_via">;
|
|
59345
59676
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -72101,4 +72432,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
72101
72432
|
*/
|
|
72102
72433
|
type CircuitJson = AnyCircuitElement[];
|
|
72103
72434
|
|
|
72104
|
-
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 PcbCourtyardPill, type PcbCourtyardPillInput, 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 PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SimulationCurrentProbe, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationOscilloscopeTrace, type SimulationOscilloscopeTraceInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, 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 SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, 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 SourcePartNotFoundWarning, type SourcePartNotFoundWarningInput, 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 SourceSimpleAmmeter, type SourceSimpleAmmeterInput, 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 SourceSimpleFuse, type SourceSimpleFuseInput, 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 SourceUnnamedTraceWarning, type SourceUnnamedTraceWarningInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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_pill, 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_graphic, pcb_silkscreen_graphic_brep, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_probe, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_oscilloscope_trace, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, 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_misconfigured_error, 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_part_not_found_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_ammeter, 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_fuse, 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, source_unnamed_trace_warning, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
72435
|
+
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 PcbCourtyardPill, type PcbCourtyardPillInput, 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 PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceTooLongWarning, type PcbTraceTooLongWarningInput, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SimulationCurrentProbe, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationOscilloscopeTrace, type SimulationOscilloscopeTraceInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, 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 SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, 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 SourcePartNotFoundWarning, type SourcePartNotFoundWarningInput, 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 SourceRefdesConventionWarning, type SourceRefdesConventionWarningInput, type SourceSimpleAmmeter, type SourceSimpleAmmeterInput, 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 SourceSimpleFuse, type SourceSimpleFuseInput, 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 SourceUnnamedTraceWarning, type SourceUnnamedTraceWarningInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, 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_pill, 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_graphic, pcb_silkscreen_graphic_brep, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_too_long_warning, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_probe, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_oscilloscope_trace, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, 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_misconfigured_error, 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_part_not_found_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_refdes_convention_warning, source_simple_ammeter, 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_fuse, 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, source_unnamed_trace_warning, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|