circuit-json 0.0.385 → 0.0.387
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 +324 -9
- package/dist/index.mjs +1288 -1250
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11001,6 +11001,73 @@ interface PcbComponentOutsideBoardError extends BaseCircuitJsonError {
|
|
|
11001
11001
|
source_component_id?: string;
|
|
11002
11002
|
}
|
|
11003
11003
|
|
|
11004
|
+
declare const pcb_component_not_on_board_edge_error: z.ZodObject<{
|
|
11005
|
+
message: z.ZodString;
|
|
11006
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11007
|
+
} & {
|
|
11008
|
+
type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
|
|
11009
|
+
pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11010
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
|
|
11011
|
+
pcb_component_id: z.ZodString;
|
|
11012
|
+
pcb_board_id: z.ZodString;
|
|
11013
|
+
component_center: z.ZodObject<{
|
|
11014
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11015
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11016
|
+
}, "strip", z.ZodTypeAny, {
|
|
11017
|
+
x: number;
|
|
11018
|
+
y: number;
|
|
11019
|
+
}, {
|
|
11020
|
+
x: string | number;
|
|
11021
|
+
y: string | number;
|
|
11022
|
+
}>;
|
|
11023
|
+
pad_to_nearest_board_edge_distance: z.ZodNumber;
|
|
11024
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
11025
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11026
|
+
}, "strip", z.ZodTypeAny, {
|
|
11027
|
+
message: string;
|
|
11028
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
11029
|
+
pcb_component_id: string;
|
|
11030
|
+
error_type: "pcb_component_not_on_board_edge_error";
|
|
11031
|
+
pcb_board_id: string;
|
|
11032
|
+
component_center: {
|
|
11033
|
+
x: number;
|
|
11034
|
+
y: number;
|
|
11035
|
+
};
|
|
11036
|
+
pcb_component_not_on_board_edge_error_id: string;
|
|
11037
|
+
pad_to_nearest_board_edge_distance: number;
|
|
11038
|
+
source_component_id?: string | undefined;
|
|
11039
|
+
subcircuit_id?: string | undefined;
|
|
11040
|
+
is_fatal?: boolean | undefined;
|
|
11041
|
+
}, {
|
|
11042
|
+
message: string;
|
|
11043
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
11044
|
+
pcb_component_id: string;
|
|
11045
|
+
pcb_board_id: string;
|
|
11046
|
+
component_center: {
|
|
11047
|
+
x: string | number;
|
|
11048
|
+
y: string | number;
|
|
11049
|
+
};
|
|
11050
|
+
pad_to_nearest_board_edge_distance: number;
|
|
11051
|
+
source_component_id?: string | undefined;
|
|
11052
|
+
subcircuit_id?: string | undefined;
|
|
11053
|
+
error_type?: "pcb_component_not_on_board_edge_error" | undefined;
|
|
11054
|
+
is_fatal?: boolean | undefined;
|
|
11055
|
+
pcb_component_not_on_board_edge_error_id?: string | undefined;
|
|
11056
|
+
}>;
|
|
11057
|
+
type PcbComponentNotOnBoardEdgeErrorInput = z.input<typeof pcb_component_not_on_board_edge_error>;
|
|
11058
|
+
/** Error emitted when a component that must be placed on the board edge is centered away from the edge */
|
|
11059
|
+
interface PcbComponentNotOnBoardEdgeError extends BaseCircuitJsonError {
|
|
11060
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
11061
|
+
pcb_component_not_on_board_edge_error_id: string;
|
|
11062
|
+
error_type: "pcb_component_not_on_board_edge_error";
|
|
11063
|
+
pcb_component_id: string;
|
|
11064
|
+
pcb_board_id: string;
|
|
11065
|
+
component_center: Point;
|
|
11066
|
+
pad_to_nearest_board_edge_distance: number;
|
|
11067
|
+
source_component_id?: string;
|
|
11068
|
+
subcircuit_id?: string;
|
|
11069
|
+
}
|
|
11070
|
+
|
|
11004
11071
|
declare const pcb_component_invalid_layer_error: z.ZodObject<{
|
|
11005
11072
|
message: z.ZodString;
|
|
11006
11073
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11373,7 +11440,7 @@ interface PcbCourtyardCircle {
|
|
|
11373
11440
|
color?: string;
|
|
11374
11441
|
}
|
|
11375
11442
|
|
|
11376
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | 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 | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
|
|
11443
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | 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;
|
|
11377
11444
|
|
|
11378
11445
|
interface SchematicBox {
|
|
11379
11446
|
type: "schematic_box";
|
|
@@ -26597,6 +26664,40 @@ interface SourceInterconnect extends SourceComponentBase {
|
|
|
26597
26664
|
ftype: "interconnect";
|
|
26598
26665
|
}
|
|
26599
26666
|
|
|
26667
|
+
declare const source_i2c_misconfigured_error: z.ZodObject<{
|
|
26668
|
+
message: z.ZodString;
|
|
26669
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
26670
|
+
} & {
|
|
26671
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
26672
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26673
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
26674
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
26675
|
+
}, "strip", z.ZodTypeAny, {
|
|
26676
|
+
message: string;
|
|
26677
|
+
type: "source_i2c_misconfigured_error";
|
|
26678
|
+
error_type: "source_i2c_misconfigured_error";
|
|
26679
|
+
source_i2c_misconfigured_error_id: string;
|
|
26680
|
+
source_port_ids: string[];
|
|
26681
|
+
is_fatal?: boolean | undefined;
|
|
26682
|
+
}, {
|
|
26683
|
+
message: string;
|
|
26684
|
+
type: "source_i2c_misconfigured_error";
|
|
26685
|
+
source_port_ids: string[];
|
|
26686
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
26687
|
+
is_fatal?: boolean | undefined;
|
|
26688
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
26689
|
+
}>;
|
|
26690
|
+
type SourceI2cMisconfiguredErrorInput = z.input<typeof source_i2c_misconfigured_error>;
|
|
26691
|
+
/**
|
|
26692
|
+
* Error emitted when incompatible I2C pins (e.g. SDA and SCL) are connected to the same net
|
|
26693
|
+
*/
|
|
26694
|
+
interface SourceI2cMisconfiguredError extends BaseCircuitJsonError {
|
|
26695
|
+
type: "source_i2c_misconfigured_error";
|
|
26696
|
+
source_i2c_misconfigured_error_id: string;
|
|
26697
|
+
error_type: "source_i2c_misconfigured_error";
|
|
26698
|
+
source_port_ids: string[];
|
|
26699
|
+
}
|
|
26700
|
+
|
|
26600
26701
|
declare const source_simple_voltage_source: z.ZodObject<{
|
|
26601
26702
|
type: z.ZodLiteral<"source_component">;
|
|
26602
26703
|
source_component_id: z.ZodString;
|
|
@@ -28037,12 +28138,34 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
28037
28138
|
subcircuit_id?: string | undefined;
|
|
28038
28139
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
28039
28140
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
28141
|
+
}>, z.ZodObject<{
|
|
28142
|
+
message: z.ZodString;
|
|
28143
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
28144
|
+
} & {
|
|
28145
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
28146
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
28147
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
28148
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
28149
|
+
}, "strip", z.ZodTypeAny, {
|
|
28150
|
+
message: string;
|
|
28151
|
+
type: "source_i2c_misconfigured_error";
|
|
28152
|
+
error_type: "source_i2c_misconfigured_error";
|
|
28153
|
+
source_i2c_misconfigured_error_id: string;
|
|
28154
|
+
source_port_ids: string[];
|
|
28155
|
+
is_fatal?: boolean | undefined;
|
|
28156
|
+
}, {
|
|
28157
|
+
message: string;
|
|
28158
|
+
type: "source_i2c_misconfigured_error";
|
|
28159
|
+
source_port_ids: string[];
|
|
28160
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
28161
|
+
is_fatal?: boolean | undefined;
|
|
28162
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
28040
28163
|
}>]>;
|
|
28041
28164
|
/**
|
|
28042
28165
|
* Deprecated: use `AnySourceElement` instead
|
|
28043
28166
|
*/
|
|
28044
28167
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
28045
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
28168
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceI2cMisconfiguredError;
|
|
28046
28169
|
|
|
28047
28170
|
declare const source_port: z.ZodObject<{
|
|
28048
28171
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -28179,14 +28302,14 @@ declare const source_component_internal_connection: z.ZodObject<{
|
|
|
28179
28302
|
}, "strip", z.ZodTypeAny, {
|
|
28180
28303
|
type: "source_component_internal_connection";
|
|
28181
28304
|
source_component_id: string;
|
|
28182
|
-
source_component_internal_connection_id: string;
|
|
28183
28305
|
source_port_ids: string[];
|
|
28306
|
+
source_component_internal_connection_id: string;
|
|
28184
28307
|
subcircuit_id?: string | undefined;
|
|
28185
28308
|
}, {
|
|
28186
28309
|
type: "source_component_internal_connection";
|
|
28187
28310
|
source_component_id: string;
|
|
28188
|
-
source_component_internal_connection_id: string;
|
|
28189
28311
|
source_port_ids: string[];
|
|
28312
|
+
source_component_internal_connection_id: string;
|
|
28190
28313
|
subcircuit_id?: string | undefined;
|
|
28191
28314
|
}>;
|
|
28192
28315
|
|
|
@@ -31425,14 +31548,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31425
31548
|
}, "strip", z.ZodTypeAny, {
|
|
31426
31549
|
type: "source_component_internal_connection";
|
|
31427
31550
|
source_component_id: string;
|
|
31428
|
-
source_component_internal_connection_id: string;
|
|
31429
31551
|
source_port_ids: string[];
|
|
31552
|
+
source_component_internal_connection_id: string;
|
|
31430
31553
|
subcircuit_id?: string | undefined;
|
|
31431
31554
|
}, {
|
|
31432
31555
|
type: "source_component_internal_connection";
|
|
31433
31556
|
source_component_id: string;
|
|
31434
|
-
source_component_internal_connection_id: string;
|
|
31435
31557
|
source_port_ids: string[];
|
|
31558
|
+
source_component_internal_connection_id: string;
|
|
31436
31559
|
subcircuit_id?: string | undefined;
|
|
31437
31560
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
31438
31561
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -32801,6 +32924,28 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
32801
32924
|
subcircuit_id?: string | undefined;
|
|
32802
32925
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
32803
32926
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
32927
|
+
}>, z.ZodObject<{
|
|
32928
|
+
message: z.ZodString;
|
|
32929
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
32930
|
+
} & {
|
|
32931
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
32932
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
32933
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
32934
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
32935
|
+
}, "strip", z.ZodTypeAny, {
|
|
32936
|
+
message: string;
|
|
32937
|
+
type: "source_i2c_misconfigured_error";
|
|
32938
|
+
error_type: "source_i2c_misconfigured_error";
|
|
32939
|
+
source_i2c_misconfigured_error_id: string;
|
|
32940
|
+
source_port_ids: string[];
|
|
32941
|
+
is_fatal?: boolean | undefined;
|
|
32942
|
+
}, {
|
|
32943
|
+
message: string;
|
|
32944
|
+
type: "source_i2c_misconfigured_error";
|
|
32945
|
+
source_port_ids: string[];
|
|
32946
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
32947
|
+
is_fatal?: boolean | undefined;
|
|
32948
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
32804
32949
|
}>]>, z.ZodObject<{
|
|
32805
32950
|
type: z.ZodLiteral<"source_net">;
|
|
32806
32951
|
source_net_id: z.ZodString;
|
|
@@ -33857,6 +34002,28 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
33857
34002
|
error_type?: "unknown_error_finding_part" | undefined;
|
|
33858
34003
|
is_fatal?: boolean | undefined;
|
|
33859
34004
|
unknown_error_finding_part_id?: string | undefined;
|
|
34005
|
+
}>, z.ZodObject<{
|
|
34006
|
+
message: z.ZodString;
|
|
34007
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
34008
|
+
} & {
|
|
34009
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
34010
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
34011
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
34012
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
34013
|
+
}, "strip", z.ZodTypeAny, {
|
|
34014
|
+
message: string;
|
|
34015
|
+
type: "source_i2c_misconfigured_error";
|
|
34016
|
+
error_type: "source_i2c_misconfigured_error";
|
|
34017
|
+
source_i2c_misconfigured_error_id: string;
|
|
34018
|
+
source_port_ids: string[];
|
|
34019
|
+
is_fatal?: boolean | undefined;
|
|
34020
|
+
}, {
|
|
34021
|
+
message: string;
|
|
34022
|
+
type: "source_i2c_misconfigured_error";
|
|
34023
|
+
source_port_ids: string[];
|
|
34024
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
34025
|
+
is_fatal?: boolean | undefined;
|
|
34026
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
33860
34027
|
}>, z.ZodObject<{
|
|
33861
34028
|
type: z.ZodLiteral<"pcb_component">;
|
|
33862
34029
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -39760,6 +39927,58 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39760
39927
|
}>, z.ZodObject<{
|
|
39761
39928
|
message: z.ZodString;
|
|
39762
39929
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
39930
|
+
} & {
|
|
39931
|
+
type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
|
|
39932
|
+
pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
39933
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
|
|
39934
|
+
pcb_component_id: z.ZodString;
|
|
39935
|
+
pcb_board_id: z.ZodString;
|
|
39936
|
+
component_center: z.ZodObject<{
|
|
39937
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
39938
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
39939
|
+
}, "strip", z.ZodTypeAny, {
|
|
39940
|
+
x: number;
|
|
39941
|
+
y: number;
|
|
39942
|
+
}, {
|
|
39943
|
+
x: string | number;
|
|
39944
|
+
y: string | number;
|
|
39945
|
+
}>;
|
|
39946
|
+
pad_to_nearest_board_edge_distance: z.ZodNumber;
|
|
39947
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
39948
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
39949
|
+
}, "strip", z.ZodTypeAny, {
|
|
39950
|
+
message: string;
|
|
39951
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
39952
|
+
pcb_component_id: string;
|
|
39953
|
+
error_type: "pcb_component_not_on_board_edge_error";
|
|
39954
|
+
pcb_board_id: string;
|
|
39955
|
+
component_center: {
|
|
39956
|
+
x: number;
|
|
39957
|
+
y: number;
|
|
39958
|
+
};
|
|
39959
|
+
pcb_component_not_on_board_edge_error_id: string;
|
|
39960
|
+
pad_to_nearest_board_edge_distance: number;
|
|
39961
|
+
source_component_id?: string | undefined;
|
|
39962
|
+
subcircuit_id?: string | undefined;
|
|
39963
|
+
is_fatal?: boolean | undefined;
|
|
39964
|
+
}, {
|
|
39965
|
+
message: string;
|
|
39966
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
39967
|
+
pcb_component_id: string;
|
|
39968
|
+
pcb_board_id: string;
|
|
39969
|
+
component_center: {
|
|
39970
|
+
x: string | number;
|
|
39971
|
+
y: string | number;
|
|
39972
|
+
};
|
|
39973
|
+
pad_to_nearest_board_edge_distance: number;
|
|
39974
|
+
source_component_id?: string | undefined;
|
|
39975
|
+
subcircuit_id?: string | undefined;
|
|
39976
|
+
error_type?: "pcb_component_not_on_board_edge_error" | undefined;
|
|
39977
|
+
is_fatal?: boolean | undefined;
|
|
39978
|
+
pcb_component_not_on_board_edge_error_id?: string | undefined;
|
|
39979
|
+
}>, z.ZodObject<{
|
|
39980
|
+
message: z.ZodString;
|
|
39981
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
39763
39982
|
} & {
|
|
39764
39983
|
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
39765
39984
|
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -48664,14 +48883,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
48664
48883
|
}, "strip", z.ZodTypeAny, {
|
|
48665
48884
|
type: "source_component_internal_connection";
|
|
48666
48885
|
source_component_id: string;
|
|
48667
|
-
source_component_internal_connection_id: string;
|
|
48668
48886
|
source_port_ids: string[];
|
|
48887
|
+
source_component_internal_connection_id: string;
|
|
48669
48888
|
subcircuit_id?: string | undefined;
|
|
48670
48889
|
}, {
|
|
48671
48890
|
type: "source_component_internal_connection";
|
|
48672
48891
|
source_component_id: string;
|
|
48673
|
-
source_component_internal_connection_id: string;
|
|
48674
48892
|
source_port_ids: string[];
|
|
48893
|
+
source_component_internal_connection_id: string;
|
|
48675
48894
|
subcircuit_id?: string | undefined;
|
|
48676
48895
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
48677
48896
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -50040,6 +50259,28 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
50040
50259
|
subcircuit_id?: string | undefined;
|
|
50041
50260
|
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
50042
50261
|
source_pin_missing_trace_warning_id?: string | undefined;
|
|
50262
|
+
}>, z.ZodObject<{
|
|
50263
|
+
message: z.ZodString;
|
|
50264
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
50265
|
+
} & {
|
|
50266
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
50267
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
50268
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
50269
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
50270
|
+
}, "strip", z.ZodTypeAny, {
|
|
50271
|
+
message: string;
|
|
50272
|
+
type: "source_i2c_misconfigured_error";
|
|
50273
|
+
error_type: "source_i2c_misconfigured_error";
|
|
50274
|
+
source_i2c_misconfigured_error_id: string;
|
|
50275
|
+
source_port_ids: string[];
|
|
50276
|
+
is_fatal?: boolean | undefined;
|
|
50277
|
+
}, {
|
|
50278
|
+
message: string;
|
|
50279
|
+
type: "source_i2c_misconfigured_error";
|
|
50280
|
+
source_port_ids: string[];
|
|
50281
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
50282
|
+
is_fatal?: boolean | undefined;
|
|
50283
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
50043
50284
|
}>]>, z.ZodObject<{
|
|
50044
50285
|
type: z.ZodLiteral<"source_net">;
|
|
50045
50286
|
source_net_id: z.ZodString;
|
|
@@ -51096,6 +51337,28 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51096
51337
|
error_type?: "unknown_error_finding_part" | undefined;
|
|
51097
51338
|
is_fatal?: boolean | undefined;
|
|
51098
51339
|
unknown_error_finding_part_id?: string | undefined;
|
|
51340
|
+
}>, z.ZodObject<{
|
|
51341
|
+
message: z.ZodString;
|
|
51342
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
51343
|
+
} & {
|
|
51344
|
+
type: z.ZodLiteral<"source_i2c_misconfigured_error">;
|
|
51345
|
+
source_i2c_misconfigured_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51346
|
+
error_type: z.ZodDefault<z.ZodLiteral<"source_i2c_misconfigured_error">>;
|
|
51347
|
+
source_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
51348
|
+
}, "strip", z.ZodTypeAny, {
|
|
51349
|
+
message: string;
|
|
51350
|
+
type: "source_i2c_misconfigured_error";
|
|
51351
|
+
error_type: "source_i2c_misconfigured_error";
|
|
51352
|
+
source_i2c_misconfigured_error_id: string;
|
|
51353
|
+
source_port_ids: string[];
|
|
51354
|
+
is_fatal?: boolean | undefined;
|
|
51355
|
+
}, {
|
|
51356
|
+
message: string;
|
|
51357
|
+
type: "source_i2c_misconfigured_error";
|
|
51358
|
+
source_port_ids: string[];
|
|
51359
|
+
error_type?: "source_i2c_misconfigured_error" | undefined;
|
|
51360
|
+
is_fatal?: boolean | undefined;
|
|
51361
|
+
source_i2c_misconfigured_error_id?: string | undefined;
|
|
51099
51362
|
}>, z.ZodObject<{
|
|
51100
51363
|
type: z.ZodLiteral<"pcb_component">;
|
|
51101
51364
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -56999,6 +57262,58 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56999
57262
|
}>, z.ZodObject<{
|
|
57000
57263
|
message: z.ZodString;
|
|
57001
57264
|
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
57265
|
+
} & {
|
|
57266
|
+
type: z.ZodLiteral<"pcb_component_not_on_board_edge_error">;
|
|
57267
|
+
pcb_component_not_on_board_edge_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
57268
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_not_on_board_edge_error">>;
|
|
57269
|
+
pcb_component_id: z.ZodString;
|
|
57270
|
+
pcb_board_id: z.ZodString;
|
|
57271
|
+
component_center: z.ZodObject<{
|
|
57272
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57273
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
57274
|
+
}, "strip", z.ZodTypeAny, {
|
|
57275
|
+
x: number;
|
|
57276
|
+
y: number;
|
|
57277
|
+
}, {
|
|
57278
|
+
x: string | number;
|
|
57279
|
+
y: string | number;
|
|
57280
|
+
}>;
|
|
57281
|
+
pad_to_nearest_board_edge_distance: z.ZodNumber;
|
|
57282
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
57283
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
57284
|
+
}, "strip", z.ZodTypeAny, {
|
|
57285
|
+
message: string;
|
|
57286
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
57287
|
+
pcb_component_id: string;
|
|
57288
|
+
error_type: "pcb_component_not_on_board_edge_error";
|
|
57289
|
+
pcb_board_id: string;
|
|
57290
|
+
component_center: {
|
|
57291
|
+
x: number;
|
|
57292
|
+
y: number;
|
|
57293
|
+
};
|
|
57294
|
+
pcb_component_not_on_board_edge_error_id: string;
|
|
57295
|
+
pad_to_nearest_board_edge_distance: number;
|
|
57296
|
+
source_component_id?: string | undefined;
|
|
57297
|
+
subcircuit_id?: string | undefined;
|
|
57298
|
+
is_fatal?: boolean | undefined;
|
|
57299
|
+
}, {
|
|
57300
|
+
message: string;
|
|
57301
|
+
type: "pcb_component_not_on_board_edge_error";
|
|
57302
|
+
pcb_component_id: string;
|
|
57303
|
+
pcb_board_id: string;
|
|
57304
|
+
component_center: {
|
|
57305
|
+
x: string | number;
|
|
57306
|
+
y: string | number;
|
|
57307
|
+
};
|
|
57308
|
+
pad_to_nearest_board_edge_distance: number;
|
|
57309
|
+
source_component_id?: string | undefined;
|
|
57310
|
+
subcircuit_id?: string | undefined;
|
|
57311
|
+
error_type?: "pcb_component_not_on_board_edge_error" | undefined;
|
|
57312
|
+
is_fatal?: boolean | undefined;
|
|
57313
|
+
pcb_component_not_on_board_edge_error_id?: string | undefined;
|
|
57314
|
+
}>, z.ZodObject<{
|
|
57315
|
+
message: z.ZodString;
|
|
57316
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
57002
57317
|
} & {
|
|
57003
57318
|
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
57004
57319
|
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -65793,4 +66108,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
65793
66108
|
*/
|
|
65794
66109
|
type CircuitJson = AnyCircuitElement[];
|
|
65795
66110
|
|
|
65796
|
-
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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, 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 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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, cad_component, 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_outside_board_error, 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_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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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_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 };
|
|
66111
|
+
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 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 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 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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 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, cad_component, 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_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_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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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_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 };
|