circuit-json 0.0.267 → 0.0.269
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 +85 -6
- package/dist/index.d.mts +207 -22
- package/dist/index.mjs +92 -59
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,8 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
79
79
|
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
80
80
|
- [SourceTrace](#sourcetrace)
|
|
81
81
|
- [SourceTraceNotConnectedError](#sourcetracenotconnectederror)
|
|
82
|
+
- [CAD Components](#cad-components)
|
|
83
|
+
- [CadComponent](#cadcomponent)
|
|
82
84
|
- [PCB Elements](#pcb-elements)
|
|
83
85
|
- [PcbAutoroutingError](#pcbautoroutingerror)
|
|
84
86
|
- [PcbBoard](#pcbboard)
|
|
@@ -118,6 +120,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
118
120
|
- [PcbTraceHint](#pcbtracehint)
|
|
119
121
|
- [PcbTraceMissingError](#pcbtracemissingerror)
|
|
120
122
|
- [PcbVia](#pcbvia)
|
|
123
|
+
- [PcbViaClearanceError](#pcbviaclearanceerror)
|
|
121
124
|
- [Schematic Elements](#schematic-elements)
|
|
122
125
|
- [SchematicArc](#schematicarc)
|
|
123
126
|
- [SchematicBox](#schematicbox)
|
|
@@ -140,6 +143,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
140
143
|
- [SchematicVoltageProbe](#schematicvoltageprobe)
|
|
141
144
|
- [Simulation Elements](#simulation-elements)
|
|
142
145
|
- [SimulationExperiment](#simulationexperiment)
|
|
146
|
+
- [SimulationSwitch](#simulationswitch)
|
|
143
147
|
- [SimulationTransientVoltageGraph](#simulationtransientvoltagegraph)
|
|
144
148
|
- [SimulationVoltageSource](#simulationvoltagesource)
|
|
145
149
|
|
|
@@ -748,6 +752,36 @@ interface SourceTraceNotConnectedError {
|
|
|
748
752
|
}
|
|
749
753
|
```
|
|
750
754
|
|
|
755
|
+
## CAD Components
|
|
756
|
+
|
|
757
|
+
### CadComponent
|
|
758
|
+
|
|
759
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/cad/cad_component.ts)
|
|
760
|
+
|
|
761
|
+
```typescript
|
|
762
|
+
interface CadComponent {
|
|
763
|
+
type: "cad_component"
|
|
764
|
+
cad_component_id: string
|
|
765
|
+
pcb_component_id: string
|
|
766
|
+
source_component_id: string
|
|
767
|
+
position: Point3
|
|
768
|
+
rotation?: Point3
|
|
769
|
+
size?: Point3
|
|
770
|
+
layer?: LayerRef
|
|
771
|
+
subcircuit_id?: string
|
|
772
|
+
footprinter_string?: string
|
|
773
|
+
model_obj_url?: string
|
|
774
|
+
model_stl_url?: string
|
|
775
|
+
model_3mf_url?: string
|
|
776
|
+
model_gltf_url?: string
|
|
777
|
+
model_glb_url?: string
|
|
778
|
+
model_step_url?: string
|
|
779
|
+
model_wrl_url?: string
|
|
780
|
+
model_unit_to_mm_scale_factor?: number
|
|
781
|
+
model_jscad?: any
|
|
782
|
+
}
|
|
783
|
+
```
|
|
784
|
+
|
|
751
785
|
## PCB Elements
|
|
752
786
|
|
|
753
787
|
### PcbAutoroutingError
|
|
@@ -839,7 +873,8 @@ interface PcbComponent {
|
|
|
839
873
|
Error emitted when a PCB component is placed outside the board boundaries
|
|
840
874
|
|
|
841
875
|
```typescript
|
|
842
|
-
/** Error emitted when a PCB component is placed outside the board boundaries */
|
|
876
|
+
/** Error emitted when a PCB component is placed outside the board boundaries */
|
|
877
|
+
interface PcbComponentOutsideBoardError {
|
|
843
878
|
type: "pcb_component_outside_board_error"
|
|
844
879
|
pcb_component_outside_board_error_id: string
|
|
845
880
|
error_type: "pcb_component_outside_board_error"
|
|
@@ -958,7 +993,8 @@ interface PcbFabricationNoteText {
|
|
|
958
993
|
Error emitted when a pcb footprint overlaps with another element
|
|
959
994
|
|
|
960
995
|
```typescript
|
|
961
|
-
/** Error emitted when a pcb footprint overlaps with another element */
|
|
996
|
+
/** Error emitted when a pcb footprint overlaps with another element */
|
|
997
|
+
interface PcbFootprintOverlapError {
|
|
962
998
|
type: "pcb_footprint_overlap_error"
|
|
963
999
|
pcb_error_id: string
|
|
964
1000
|
error_type: "pcb_footprint_overlap_error"
|
|
@@ -1633,6 +1669,30 @@ interface PcbVia {
|
|
|
1633
1669
|
}
|
|
1634
1670
|
```
|
|
1635
1671
|
|
|
1672
|
+
### PcbViaClearanceError
|
|
1673
|
+
|
|
1674
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_via_clearance_error.ts)
|
|
1675
|
+
|
|
1676
|
+
Error emitted when vias are closer than the allowed clearance
|
|
1677
|
+
|
|
1678
|
+
```typescript
|
|
1679
|
+
/** Error emitted when vias are closer than the allowed clearance */
|
|
1680
|
+
interface PcbViaClearanceError {
|
|
1681
|
+
type: "pcb_via_clearance_error"
|
|
1682
|
+
pcb_error_id: string
|
|
1683
|
+
error_type: "pcb_via_clearance_error"
|
|
1684
|
+
message: string
|
|
1685
|
+
pcb_via_ids: string[]
|
|
1686
|
+
minimum_clearance?: Distance
|
|
1687
|
+
actual_clearance?: Distance
|
|
1688
|
+
pcb_center?: {
|
|
1689
|
+
x?: number
|
|
1690
|
+
y?: number
|
|
1691
|
+
}
|
|
1692
|
+
subcircuit_id?: string
|
|
1693
|
+
}
|
|
1694
|
+
```
|
|
1695
|
+
|
|
1636
1696
|
## Schematic Elements
|
|
1637
1697
|
|
|
1638
1698
|
### SchematicArc
|
|
@@ -1642,7 +1702,8 @@ interface PcbVia {
|
|
|
1642
1702
|
Draws a styled arc on the schematic
|
|
1643
1703
|
|
|
1644
1704
|
```typescript
|
|
1645
|
-
/** Draws a styled arc on the schematic */
|
|
1705
|
+
/** Draws a styled arc on the schematic */
|
|
1706
|
+
interface SchematicArc {
|
|
1646
1707
|
type: "schematic_arc"
|
|
1647
1708
|
schematic_arc_id: string
|
|
1648
1709
|
schematic_component_id: string
|
|
@@ -1682,7 +1743,8 @@ interface SchematicBox {
|
|
|
1682
1743
|
Draws a styled circle on the schematic
|
|
1683
1744
|
|
|
1684
1745
|
```typescript
|
|
1685
|
-
/** Draws a styled circle on the schematic */
|
|
1746
|
+
/** Draws a styled circle on the schematic */
|
|
1747
|
+
interface SchematicCircle {
|
|
1686
1748
|
type: "schematic_circle"
|
|
1687
1749
|
schematic_circle_id: string
|
|
1688
1750
|
schematic_component_id: string
|
|
@@ -1850,7 +1912,8 @@ interface SchematicLayoutError {
|
|
|
1850
1912
|
Draws a styled line on the schematic
|
|
1851
1913
|
|
|
1852
1914
|
```typescript
|
|
1853
|
-
/** Draws a styled line on the schematic */
|
|
1915
|
+
/** Draws a styled line on the schematic */
|
|
1916
|
+
interface SchematicLine {
|
|
1854
1917
|
type: "schematic_line"
|
|
1855
1918
|
schematic_line_id: string
|
|
1856
1919
|
schematic_component_id: string
|
|
@@ -1955,7 +2018,8 @@ interface SchematicPort {
|
|
|
1955
2018
|
Draws a styled rectangle on the schematic
|
|
1956
2019
|
|
|
1957
2020
|
```typescript
|
|
1958
|
-
/** Draws a styled rectangle on the schematic */
|
|
2021
|
+
/** Draws a styled rectangle on the schematic */
|
|
2022
|
+
interface SchematicRect {
|
|
1959
2023
|
type: "schematic_rect"
|
|
1960
2024
|
schematic_rect_id: string
|
|
1961
2025
|
schematic_component_id: string
|
|
@@ -2093,6 +2157,21 @@ interface SimulationExperiment {
|
|
|
2093
2157
|
}
|
|
2094
2158
|
```
|
|
2095
2159
|
|
|
2160
|
+
### SimulationSwitch
|
|
2161
|
+
|
|
2162
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_switch.ts)
|
|
2163
|
+
|
|
2164
|
+
```typescript
|
|
2165
|
+
interface SimulationSwitch {
|
|
2166
|
+
type: "simulation_switch"
|
|
2167
|
+
simulation_switch_id: string
|
|
2168
|
+
closes_at?: number
|
|
2169
|
+
opens_at?: number
|
|
2170
|
+
starts_closed?: boolean
|
|
2171
|
+
switching_frequency?: number
|
|
2172
|
+
}
|
|
2173
|
+
```
|
|
2174
|
+
|
|
2096
2175
|
### SimulationTransientVoltageGraph
|
|
2097
2176
|
|
|
2098
2177
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_transient_voltage_graph.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -5257,7 +5257,70 @@ interface PcbComponentOutsideBoardError {
|
|
|
5257
5257
|
source_component_id?: string;
|
|
5258
5258
|
}
|
|
5259
5259
|
|
|
5260
|
-
|
|
5260
|
+
declare const pcb_via_clearance_error: z.ZodObject<{
|
|
5261
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
5262
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5263
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
5264
|
+
message: z.ZodString;
|
|
5265
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
5266
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5267
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5268
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
5269
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
5270
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
5271
|
+
}, "strip", z.ZodTypeAny, {
|
|
5272
|
+
x?: number | undefined;
|
|
5273
|
+
y?: number | undefined;
|
|
5274
|
+
}, {
|
|
5275
|
+
x?: number | undefined;
|
|
5276
|
+
y?: number | undefined;
|
|
5277
|
+
}>>;
|
|
5278
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5279
|
+
}, "strip", z.ZodTypeAny, {
|
|
5280
|
+
message: string;
|
|
5281
|
+
type: "pcb_via_clearance_error";
|
|
5282
|
+
error_type: "pcb_via_clearance_error";
|
|
5283
|
+
pcb_error_id: string;
|
|
5284
|
+
pcb_via_ids: string[];
|
|
5285
|
+
subcircuit_id?: string | undefined;
|
|
5286
|
+
minimum_clearance?: number | undefined;
|
|
5287
|
+
actual_clearance?: number | undefined;
|
|
5288
|
+
pcb_center?: {
|
|
5289
|
+
x?: number | undefined;
|
|
5290
|
+
y?: number | undefined;
|
|
5291
|
+
} | undefined;
|
|
5292
|
+
}, {
|
|
5293
|
+
message: string;
|
|
5294
|
+
type: "pcb_via_clearance_error";
|
|
5295
|
+
pcb_via_ids: string[];
|
|
5296
|
+
subcircuit_id?: string | undefined;
|
|
5297
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
5298
|
+
pcb_error_id?: string | undefined;
|
|
5299
|
+
minimum_clearance?: string | number | undefined;
|
|
5300
|
+
actual_clearance?: string | number | undefined;
|
|
5301
|
+
pcb_center?: {
|
|
5302
|
+
x?: number | undefined;
|
|
5303
|
+
y?: number | undefined;
|
|
5304
|
+
} | undefined;
|
|
5305
|
+
}>;
|
|
5306
|
+
type PcbViaClearanceErrorInput = z.input<typeof pcb_via_clearance_error>;
|
|
5307
|
+
/** Error emitted when vias are closer than the allowed clearance */
|
|
5308
|
+
interface PcbViaClearanceError {
|
|
5309
|
+
type: "pcb_via_clearance_error";
|
|
5310
|
+
pcb_error_id: string;
|
|
5311
|
+
error_type: "pcb_via_clearance_error";
|
|
5312
|
+
message: string;
|
|
5313
|
+
pcb_via_ids: string[];
|
|
5314
|
+
minimum_clearance?: Distance;
|
|
5315
|
+
actual_clearance?: Distance;
|
|
5316
|
+
pcb_center?: {
|
|
5317
|
+
x?: number;
|
|
5318
|
+
y?: number;
|
|
5319
|
+
};
|
|
5320
|
+
subcircuit_id?: string;
|
|
5321
|
+
}
|
|
5322
|
+
|
|
5323
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError;
|
|
5261
5324
|
|
|
5262
5325
|
interface SchematicBox {
|
|
5263
5326
|
type: "schematic_box";
|
|
@@ -8340,12 +8403,12 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
8340
8403
|
error_type: "source_failed_to_create_component_error";
|
|
8341
8404
|
source_failed_to_create_component_error_id: string;
|
|
8342
8405
|
subcircuit_id?: string | undefined;
|
|
8343
|
-
component_name?: string | undefined;
|
|
8344
|
-
parent_source_component_id?: string | undefined;
|
|
8345
8406
|
pcb_center?: {
|
|
8346
8407
|
x?: number | undefined;
|
|
8347
8408
|
y?: number | undefined;
|
|
8348
8409
|
} | undefined;
|
|
8410
|
+
component_name?: string | undefined;
|
|
8411
|
+
parent_source_component_id?: string | undefined;
|
|
8349
8412
|
schematic_center?: {
|
|
8350
8413
|
x?: number | undefined;
|
|
8351
8414
|
y?: number | undefined;
|
|
@@ -8355,13 +8418,13 @@ declare const source_failed_to_create_component_error: z.ZodObject<{
|
|
|
8355
8418
|
type: "source_failed_to_create_component_error";
|
|
8356
8419
|
subcircuit_id?: string | undefined;
|
|
8357
8420
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
8358
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
8359
|
-
component_name?: string | undefined;
|
|
8360
|
-
parent_source_component_id?: string | undefined;
|
|
8361
8421
|
pcb_center?: {
|
|
8362
8422
|
x?: number | undefined;
|
|
8363
8423
|
y?: number | undefined;
|
|
8364
8424
|
} | undefined;
|
|
8425
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
8426
|
+
component_name?: string | undefined;
|
|
8427
|
+
parent_source_component_id?: string | undefined;
|
|
8365
8428
|
schematic_center?: {
|
|
8366
8429
|
x?: number | undefined;
|
|
8367
8430
|
y?: number | undefined;
|
|
@@ -9424,12 +9487,12 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9424
9487
|
error_type: "source_failed_to_create_component_error";
|
|
9425
9488
|
source_failed_to_create_component_error_id: string;
|
|
9426
9489
|
subcircuit_id?: string | undefined;
|
|
9427
|
-
component_name?: string | undefined;
|
|
9428
|
-
parent_source_component_id?: string | undefined;
|
|
9429
9490
|
pcb_center?: {
|
|
9430
9491
|
x?: number | undefined;
|
|
9431
9492
|
y?: number | undefined;
|
|
9432
9493
|
} | undefined;
|
|
9494
|
+
component_name?: string | undefined;
|
|
9495
|
+
parent_source_component_id?: string | undefined;
|
|
9433
9496
|
schematic_center?: {
|
|
9434
9497
|
x?: number | undefined;
|
|
9435
9498
|
y?: number | undefined;
|
|
@@ -9439,13 +9502,13 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9439
9502
|
type: "source_failed_to_create_component_error";
|
|
9440
9503
|
subcircuit_id?: string | undefined;
|
|
9441
9504
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
9442
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
9443
|
-
component_name?: string | undefined;
|
|
9444
|
-
parent_source_component_id?: string | undefined;
|
|
9445
9505
|
pcb_center?: {
|
|
9446
9506
|
x?: number | undefined;
|
|
9447
9507
|
y?: number | undefined;
|
|
9448
9508
|
} | undefined;
|
|
9509
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
9510
|
+
component_name?: string | undefined;
|
|
9511
|
+
parent_source_component_id?: string | undefined;
|
|
9449
9512
|
schematic_center?: {
|
|
9450
9513
|
x?: number | undefined;
|
|
9451
9514
|
y?: number | undefined;
|
|
@@ -10194,6 +10257,38 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
10194
10257
|
}>;
|
|
10195
10258
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
10196
10259
|
|
|
10260
|
+
declare const simulation_switch: z.ZodObject<{
|
|
10261
|
+
type: z.ZodLiteral<"simulation_switch">;
|
|
10262
|
+
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10263
|
+
closes_at: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10264
|
+
opens_at: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10265
|
+
starts_closed: z.ZodOptional<z.ZodBoolean>;
|
|
10266
|
+
switching_frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10267
|
+
}, "strip", z.ZodTypeAny, {
|
|
10268
|
+
type: "simulation_switch";
|
|
10269
|
+
simulation_switch_id: string;
|
|
10270
|
+
closes_at?: number | undefined;
|
|
10271
|
+
opens_at?: number | undefined;
|
|
10272
|
+
starts_closed?: boolean | undefined;
|
|
10273
|
+
switching_frequency?: number | undefined;
|
|
10274
|
+
}, {
|
|
10275
|
+
type: "simulation_switch";
|
|
10276
|
+
simulation_switch_id?: string | undefined;
|
|
10277
|
+
closes_at?: string | number | undefined;
|
|
10278
|
+
opens_at?: string | number | undefined;
|
|
10279
|
+
starts_closed?: boolean | undefined;
|
|
10280
|
+
switching_frequency?: string | number | undefined;
|
|
10281
|
+
}>;
|
|
10282
|
+
type SimulationSwitchInput = z.input<typeof simulation_switch>;
|
|
10283
|
+
interface SimulationSwitch {
|
|
10284
|
+
type: "simulation_switch";
|
|
10285
|
+
simulation_switch_id: string;
|
|
10286
|
+
closes_at?: number;
|
|
10287
|
+
opens_at?: number;
|
|
10288
|
+
starts_closed?: boolean;
|
|
10289
|
+
switching_frequency?: number;
|
|
10290
|
+
}
|
|
10291
|
+
|
|
10197
10292
|
declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
10198
10293
|
type: z.ZodLiteral<"source_trace">;
|
|
10199
10294
|
source_trace_id: z.ZodString;
|
|
@@ -11160,12 +11255,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11160
11255
|
error_type: "source_failed_to_create_component_error";
|
|
11161
11256
|
source_failed_to_create_component_error_id: string;
|
|
11162
11257
|
subcircuit_id?: string | undefined;
|
|
11163
|
-
component_name?: string | undefined;
|
|
11164
|
-
parent_source_component_id?: string | undefined;
|
|
11165
11258
|
pcb_center?: {
|
|
11166
11259
|
x?: number | undefined;
|
|
11167
11260
|
y?: number | undefined;
|
|
11168
11261
|
} | undefined;
|
|
11262
|
+
component_name?: string | undefined;
|
|
11263
|
+
parent_source_component_id?: string | undefined;
|
|
11169
11264
|
schematic_center?: {
|
|
11170
11265
|
x?: number | undefined;
|
|
11171
11266
|
y?: number | undefined;
|
|
@@ -11175,13 +11270,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11175
11270
|
type: "source_failed_to_create_component_error";
|
|
11176
11271
|
subcircuit_id?: string | undefined;
|
|
11177
11272
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
11178
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
11179
|
-
component_name?: string | undefined;
|
|
11180
|
-
parent_source_component_id?: string | undefined;
|
|
11181
11273
|
pcb_center?: {
|
|
11182
11274
|
x?: number | undefined;
|
|
11183
11275
|
y?: number | undefined;
|
|
11184
11276
|
} | undefined;
|
|
11277
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
11278
|
+
component_name?: string | undefined;
|
|
11279
|
+
parent_source_component_id?: string | undefined;
|
|
11185
11280
|
schematic_center?: {
|
|
11186
11281
|
x?: number | undefined;
|
|
11187
11282
|
y?: number | undefined;
|
|
@@ -14417,6 +14512,51 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14417
14512
|
subcircuit_id?: string | undefined;
|
|
14418
14513
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
14419
14514
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
14515
|
+
}>, z.ZodObject<{
|
|
14516
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
14517
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14518
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
14519
|
+
message: z.ZodString;
|
|
14520
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
14521
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14522
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14523
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
14524
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
14525
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
14526
|
+
}, "strip", z.ZodTypeAny, {
|
|
14527
|
+
x?: number | undefined;
|
|
14528
|
+
y?: number | undefined;
|
|
14529
|
+
}, {
|
|
14530
|
+
x?: number | undefined;
|
|
14531
|
+
y?: number | undefined;
|
|
14532
|
+
}>>;
|
|
14533
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14534
|
+
}, "strip", z.ZodTypeAny, {
|
|
14535
|
+
message: string;
|
|
14536
|
+
type: "pcb_via_clearance_error";
|
|
14537
|
+
error_type: "pcb_via_clearance_error";
|
|
14538
|
+
pcb_error_id: string;
|
|
14539
|
+
pcb_via_ids: string[];
|
|
14540
|
+
subcircuit_id?: string | undefined;
|
|
14541
|
+
minimum_clearance?: number | undefined;
|
|
14542
|
+
actual_clearance?: number | undefined;
|
|
14543
|
+
pcb_center?: {
|
|
14544
|
+
x?: number | undefined;
|
|
14545
|
+
y?: number | undefined;
|
|
14546
|
+
} | undefined;
|
|
14547
|
+
}, {
|
|
14548
|
+
message: string;
|
|
14549
|
+
type: "pcb_via_clearance_error";
|
|
14550
|
+
pcb_via_ids: string[];
|
|
14551
|
+
subcircuit_id?: string | undefined;
|
|
14552
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
14553
|
+
pcb_error_id?: string | undefined;
|
|
14554
|
+
minimum_clearance?: string | number | undefined;
|
|
14555
|
+
actual_clearance?: string | number | undefined;
|
|
14556
|
+
pcb_center?: {
|
|
14557
|
+
x?: number | undefined;
|
|
14558
|
+
y?: number | undefined;
|
|
14559
|
+
} | undefined;
|
|
14420
14560
|
}>, z.ZodObject<{
|
|
14421
14561
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
14422
14562
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -17588,12 +17728,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17588
17728
|
error_type: "source_failed_to_create_component_error";
|
|
17589
17729
|
source_failed_to_create_component_error_id: string;
|
|
17590
17730
|
subcircuit_id?: string | undefined;
|
|
17591
|
-
component_name?: string | undefined;
|
|
17592
|
-
parent_source_component_id?: string | undefined;
|
|
17593
17731
|
pcb_center?: {
|
|
17594
17732
|
x?: number | undefined;
|
|
17595
17733
|
y?: number | undefined;
|
|
17596
17734
|
} | undefined;
|
|
17735
|
+
component_name?: string | undefined;
|
|
17736
|
+
parent_source_component_id?: string | undefined;
|
|
17597
17737
|
schematic_center?: {
|
|
17598
17738
|
x?: number | undefined;
|
|
17599
17739
|
y?: number | undefined;
|
|
@@ -17603,13 +17743,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17603
17743
|
type: "source_failed_to_create_component_error";
|
|
17604
17744
|
subcircuit_id?: string | undefined;
|
|
17605
17745
|
error_type?: "source_failed_to_create_component_error" | undefined;
|
|
17606
|
-
source_failed_to_create_component_error_id?: string | undefined;
|
|
17607
|
-
component_name?: string | undefined;
|
|
17608
|
-
parent_source_component_id?: string | undefined;
|
|
17609
17746
|
pcb_center?: {
|
|
17610
17747
|
x?: number | undefined;
|
|
17611
17748
|
y?: number | undefined;
|
|
17612
17749
|
} | undefined;
|
|
17750
|
+
source_failed_to_create_component_error_id?: string | undefined;
|
|
17751
|
+
component_name?: string | undefined;
|
|
17752
|
+
parent_source_component_id?: string | undefined;
|
|
17613
17753
|
schematic_center?: {
|
|
17614
17754
|
x?: number | undefined;
|
|
17615
17755
|
y?: number | undefined;
|
|
@@ -20845,6 +20985,51 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20845
20985
|
subcircuit_id?: string | undefined;
|
|
20846
20986
|
error_type?: "pcb_port_not_connected_error" | undefined;
|
|
20847
20987
|
pcb_port_not_connected_error_id?: string | undefined;
|
|
20988
|
+
}>, z.ZodObject<{
|
|
20989
|
+
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
20990
|
+
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20991
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_via_clearance_error">>;
|
|
20992
|
+
message: z.ZodString;
|
|
20993
|
+
pcb_via_ids: z.ZodArray<z.ZodString, "many">;
|
|
20994
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20995
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20996
|
+
pcb_center: z.ZodOptional<z.ZodObject<{
|
|
20997
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
20998
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
20999
|
+
}, "strip", z.ZodTypeAny, {
|
|
21000
|
+
x?: number | undefined;
|
|
21001
|
+
y?: number | undefined;
|
|
21002
|
+
}, {
|
|
21003
|
+
x?: number | undefined;
|
|
21004
|
+
y?: number | undefined;
|
|
21005
|
+
}>>;
|
|
21006
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21007
|
+
}, "strip", z.ZodTypeAny, {
|
|
21008
|
+
message: string;
|
|
21009
|
+
type: "pcb_via_clearance_error";
|
|
21010
|
+
error_type: "pcb_via_clearance_error";
|
|
21011
|
+
pcb_error_id: string;
|
|
21012
|
+
pcb_via_ids: string[];
|
|
21013
|
+
subcircuit_id?: string | undefined;
|
|
21014
|
+
minimum_clearance?: number | undefined;
|
|
21015
|
+
actual_clearance?: number | undefined;
|
|
21016
|
+
pcb_center?: {
|
|
21017
|
+
x?: number | undefined;
|
|
21018
|
+
y?: number | undefined;
|
|
21019
|
+
} | undefined;
|
|
21020
|
+
}, {
|
|
21021
|
+
message: string;
|
|
21022
|
+
type: "pcb_via_clearance_error";
|
|
21023
|
+
pcb_via_ids: string[];
|
|
21024
|
+
subcircuit_id?: string | undefined;
|
|
21025
|
+
error_type?: "pcb_via_clearance_error" | undefined;
|
|
21026
|
+
pcb_error_id?: string | undefined;
|
|
21027
|
+
minimum_clearance?: string | number | undefined;
|
|
21028
|
+
actual_clearance?: string | number | undefined;
|
|
21029
|
+
pcb_center?: {
|
|
21030
|
+
x?: number | undefined;
|
|
21031
|
+
y?: number | undefined;
|
|
21032
|
+
} | undefined;
|
|
20848
21033
|
}>, z.ZodObject<{
|
|
20849
21034
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
20850
21035
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23063,4 +23248,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
23063
23248
|
*/
|
|
23064
23249
|
type CircuitJson = AnyCircuitElement[];
|
|
23065
23250
|
|
|
23066
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_transient_voltage_graph, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|
|
23251
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|