circuit-json 0.0.259 → 0.0.261
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 +18 -0
- package/dist/index.d.mts +94 -17
- package/dist/index.mjs +290 -276
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
94
94
|
- [PcbHole](#pcbhole)
|
|
95
95
|
- [PcbManualEditConflictWarning](#pcbmanualeditconflictwarning)
|
|
96
96
|
- [PcbMissingFootprintError](#pcbmissingfootprinterror)
|
|
97
|
+
- [PcbNet](#pcbnet)
|
|
97
98
|
- [PcbPlacementError](#pcbplacementerror)
|
|
98
99
|
- [PcbPlatedHole](#pcbplatedhole)
|
|
99
100
|
- [PcbPort](#pcbport)
|
|
@@ -1064,6 +1065,22 @@ interface PcbMissingFootprintError {
|
|
|
1064
1065
|
}
|
|
1065
1066
|
```
|
|
1066
1067
|
|
|
1068
|
+
### PcbNet
|
|
1069
|
+
|
|
1070
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_net.ts)
|
|
1071
|
+
|
|
1072
|
+
Defines a net on the PCB
|
|
1073
|
+
|
|
1074
|
+
```typescript
|
|
1075
|
+
/** Defines a net on the PCB */
|
|
1076
|
+
interface PcbNet {
|
|
1077
|
+
type: "pcb_net"
|
|
1078
|
+
pcb_net_id: string
|
|
1079
|
+
source_net_id?: string
|
|
1080
|
+
rats_nest_color?: string
|
|
1081
|
+
}
|
|
1082
|
+
```
|
|
1083
|
+
|
|
1067
1084
|
### PcbPlacementError
|
|
1068
1085
|
|
|
1069
1086
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_placement_error.ts)
|
|
@@ -1681,6 +1698,7 @@ interface SchematicComponent {
|
|
|
1681
1698
|
schematic_group_id?: string
|
|
1682
1699
|
is_schematic_group?: boolean
|
|
1683
1700
|
source_group_id?: string
|
|
1701
|
+
is_box_with_pins: boolean
|
|
1684
1702
|
}
|
|
1685
1703
|
|
|
1686
1704
|
interface SchematicPortArrangementBySize {
|
package/dist/index.d.mts
CHANGED
|
@@ -2277,6 +2277,7 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
2277
2277
|
route_order_index: z.ZodOptional<z.ZodNumber>;
|
|
2278
2278
|
should_round_corners: z.ZodOptional<z.ZodBoolean>;
|
|
2279
2279
|
trace_length: z.ZodOptional<z.ZodNumber>;
|
|
2280
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
2280
2281
|
route: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
2281
2282
|
route_type: z.ZodLiteral<"wire">;
|
|
2282
2283
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -2364,6 +2365,7 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
2364
2365
|
route_order_index?: number | undefined;
|
|
2365
2366
|
should_round_corners?: boolean | undefined;
|
|
2366
2367
|
trace_length?: number | undefined;
|
|
2368
|
+
rats_nest_color?: string | undefined;
|
|
2367
2369
|
}, {
|
|
2368
2370
|
type: "pcb_trace";
|
|
2369
2371
|
route: ({
|
|
@@ -2394,6 +2396,7 @@ declare const pcb_trace: z.ZodObject<{
|
|
|
2394
2396
|
route_order_index?: number | undefined;
|
|
2395
2397
|
should_round_corners?: boolean | undefined;
|
|
2396
2398
|
trace_length?: number | undefined;
|
|
2399
|
+
rats_nest_color?: string | undefined;
|
|
2397
2400
|
}>;
|
|
2398
2401
|
type PcbTraceInput = z.input<typeof pcb_trace>;
|
|
2399
2402
|
interface PcbTraceRoutePointWire {
|
|
@@ -2435,6 +2438,7 @@ interface PcbTrace {
|
|
|
2435
2438
|
route_thickness_mode?: "constant" | "interpolated";
|
|
2436
2439
|
should_round_corners?: boolean;
|
|
2437
2440
|
trace_length?: number;
|
|
2441
|
+
rats_nest_color?: string;
|
|
2438
2442
|
route: Array<PcbTraceRoutePoint>;
|
|
2439
2443
|
}
|
|
2440
2444
|
/**
|
|
@@ -2660,6 +2664,33 @@ interface PcbPortNotConnectedError {
|
|
|
2660
2664
|
subcircuit_id?: string;
|
|
2661
2665
|
}
|
|
2662
2666
|
|
|
2667
|
+
declare const pcb_net: z.ZodObject<{
|
|
2668
|
+
type: z.ZodLiteral<"pcb_net">;
|
|
2669
|
+
pcb_net_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2670
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
2671
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
}, "strip", z.ZodTypeAny, {
|
|
2673
|
+
type: "pcb_net";
|
|
2674
|
+
pcb_net_id: string;
|
|
2675
|
+
rats_nest_color?: string | undefined;
|
|
2676
|
+
source_net_id?: string | undefined;
|
|
2677
|
+
}, {
|
|
2678
|
+
type: "pcb_net";
|
|
2679
|
+
rats_nest_color?: string | undefined;
|
|
2680
|
+
pcb_net_id?: string | undefined;
|
|
2681
|
+
source_net_id?: string | undefined;
|
|
2682
|
+
}>;
|
|
2683
|
+
type PcbNetInput = z.input<typeof pcb_net>;
|
|
2684
|
+
/**
|
|
2685
|
+
* Defines a net on the PCB
|
|
2686
|
+
*/
|
|
2687
|
+
interface PcbNet {
|
|
2688
|
+
type: "pcb_net";
|
|
2689
|
+
pcb_net_id: string;
|
|
2690
|
+
source_net_id?: string;
|
|
2691
|
+
rats_nest_color?: string;
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2663
2694
|
declare const pcb_via: z.ZodObject<{
|
|
2664
2695
|
type: z.ZodLiteral<"pcb_via">;
|
|
2665
2696
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -4366,8 +4397,8 @@ declare const pcb_breakout_point: z.ZodObject<{
|
|
|
4366
4397
|
subcircuit_id?: string | undefined;
|
|
4367
4398
|
source_port_id?: string | undefined;
|
|
4368
4399
|
source_trace_id?: string | undefined;
|
|
4369
|
-
pcb_breakout_point_id?: string | undefined;
|
|
4370
4400
|
source_net_id?: string | undefined;
|
|
4401
|
+
pcb_breakout_point_id?: string | undefined;
|
|
4371
4402
|
}>;
|
|
4372
4403
|
type PcbBreakoutPointInput = z.input<typeof pcb_breakout_point>;
|
|
4373
4404
|
/**
|
|
@@ -5218,7 +5249,7 @@ interface PcbComponentOutsideBoardError {
|
|
|
5218
5249
|
source_component_id?: string;
|
|
5219
5250
|
}
|
|
5220
5251
|
|
|
5221
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError;
|
|
5252
|
+
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;
|
|
5222
5253
|
|
|
5223
5254
|
interface SchematicBox {
|
|
5224
5255
|
type: "schematic_box";
|
|
@@ -5370,6 +5401,7 @@ interface SchematicComponent {
|
|
|
5370
5401
|
schematic_group_id?: string;
|
|
5371
5402
|
is_schematic_group?: boolean;
|
|
5372
5403
|
source_group_id?: string;
|
|
5404
|
+
is_box_with_pins: boolean;
|
|
5373
5405
|
}
|
|
5374
5406
|
declare const schematic_component_port_arrangement_by_size: z.ZodObject<{
|
|
5375
5407
|
left_size: z.ZodNumber;
|
|
@@ -5694,6 +5726,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5694
5726
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
5695
5727
|
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
5696
5728
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5729
|
+
is_box_with_pins: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5697
5730
|
}, "strip", z.ZodTypeAny, {
|
|
5698
5731
|
type: "schematic_component";
|
|
5699
5732
|
center: {
|
|
@@ -5705,6 +5738,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5705
5738
|
width: number;
|
|
5706
5739
|
height: number;
|
|
5707
5740
|
};
|
|
5741
|
+
is_box_with_pins: boolean;
|
|
5708
5742
|
source_component_id?: string | undefined;
|
|
5709
5743
|
subcircuit_id?: string | undefined;
|
|
5710
5744
|
source_group_id?: string | undefined;
|
|
@@ -5794,6 +5828,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5794
5828
|
symbol_display_value?: string | undefined;
|
|
5795
5829
|
schematic_group_id?: string | undefined;
|
|
5796
5830
|
is_schematic_group?: boolean | undefined;
|
|
5831
|
+
is_box_with_pins?: boolean | undefined;
|
|
5797
5832
|
}>;
|
|
5798
5833
|
type SchematicComponentInput = z.input<typeof schematic_component>;
|
|
5799
5834
|
|
|
@@ -9682,14 +9717,14 @@ declare const source_pcb_ground_plane: z.ZodObject<{
|
|
|
9682
9717
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9683
9718
|
}, "strip", z.ZodTypeAny, {
|
|
9684
9719
|
type: "source_pcb_ground_plane";
|
|
9685
|
-
source_group_id: string;
|
|
9686
9720
|
source_net_id: string;
|
|
9721
|
+
source_group_id: string;
|
|
9687
9722
|
source_pcb_ground_plane_id: string;
|
|
9688
9723
|
subcircuit_id?: string | undefined;
|
|
9689
9724
|
}, {
|
|
9690
9725
|
type: "source_pcb_ground_plane";
|
|
9691
|
-
source_group_id: string;
|
|
9692
9726
|
source_net_id: string;
|
|
9727
|
+
source_group_id: string;
|
|
9693
9728
|
source_pcb_ground_plane_id: string;
|
|
9694
9729
|
subcircuit_id?: string | undefined;
|
|
9695
9730
|
}>;
|
|
@@ -9714,15 +9749,15 @@ declare const source_manually_placed_via: z.ZodObject<{
|
|
|
9714
9749
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
9715
9750
|
}, "strip", z.ZodTypeAny, {
|
|
9716
9751
|
type: "source_manually_placed_via";
|
|
9717
|
-
source_group_id: string;
|
|
9718
9752
|
source_net_id: string;
|
|
9753
|
+
source_group_id: string;
|
|
9719
9754
|
source_manually_placed_via_id: string;
|
|
9720
9755
|
subcircuit_id?: string | undefined;
|
|
9721
9756
|
source_trace_id?: string | undefined;
|
|
9722
9757
|
}, {
|
|
9723
9758
|
type: "source_manually_placed_via";
|
|
9724
|
-
source_group_id: string;
|
|
9725
9759
|
source_net_id: string;
|
|
9760
|
+
source_group_id: string;
|
|
9726
9761
|
source_manually_placed_via_id: string;
|
|
9727
9762
|
subcircuit_id?: string | undefined;
|
|
9728
9763
|
source_trace_id?: string | undefined;
|
|
@@ -11927,14 +11962,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11927
11962
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11928
11963
|
}, "strip", z.ZodTypeAny, {
|
|
11929
11964
|
type: "source_pcb_ground_plane";
|
|
11930
|
-
source_group_id: string;
|
|
11931
11965
|
source_net_id: string;
|
|
11966
|
+
source_group_id: string;
|
|
11932
11967
|
source_pcb_ground_plane_id: string;
|
|
11933
11968
|
subcircuit_id?: string | undefined;
|
|
11934
11969
|
}, {
|
|
11935
11970
|
type: "source_pcb_ground_plane";
|
|
11936
|
-
source_group_id: string;
|
|
11937
11971
|
source_net_id: string;
|
|
11972
|
+
source_group_id: string;
|
|
11938
11973
|
source_pcb_ground_plane_id: string;
|
|
11939
11974
|
subcircuit_id?: string | undefined;
|
|
11940
11975
|
}>, z.ZodObject<{
|
|
@@ -11946,15 +11981,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11946
11981
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
11947
11982
|
}, "strip", z.ZodTypeAny, {
|
|
11948
11983
|
type: "source_manually_placed_via";
|
|
11949
|
-
source_group_id: string;
|
|
11950
11984
|
source_net_id: string;
|
|
11985
|
+
source_group_id: string;
|
|
11951
11986
|
source_manually_placed_via_id: string;
|
|
11952
11987
|
subcircuit_id?: string | undefined;
|
|
11953
11988
|
source_trace_id?: string | undefined;
|
|
11954
11989
|
}, {
|
|
11955
11990
|
type: "source_manually_placed_via";
|
|
11956
|
-
source_group_id: string;
|
|
11957
11991
|
source_net_id: string;
|
|
11992
|
+
source_group_id: string;
|
|
11958
11993
|
source_manually_placed_via_id: string;
|
|
11959
11994
|
subcircuit_id?: string | undefined;
|
|
11960
11995
|
source_trace_id?: string | undefined;
|
|
@@ -12727,6 +12762,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12727
12762
|
pcb_group_id?: string | undefined;
|
|
12728
12763
|
pcb_port_id?: string | undefined;
|
|
12729
12764
|
is_board_pinout?: boolean | undefined;
|
|
12765
|
+
}>, z.ZodObject<{
|
|
12766
|
+
type: z.ZodLiteral<"pcb_net">;
|
|
12767
|
+
pcb_net_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12768
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
12769
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
12770
|
+
}, "strip", z.ZodTypeAny, {
|
|
12771
|
+
type: "pcb_net";
|
|
12772
|
+
pcb_net_id: string;
|
|
12773
|
+
rats_nest_color?: string | undefined;
|
|
12774
|
+
source_net_id?: string | undefined;
|
|
12775
|
+
}, {
|
|
12776
|
+
type: "pcb_net";
|
|
12777
|
+
rats_nest_color?: string | undefined;
|
|
12778
|
+
pcb_net_id?: string | undefined;
|
|
12779
|
+
source_net_id?: string | undefined;
|
|
12730
12780
|
}>, z.ZodObject<{
|
|
12731
12781
|
type: z.ZodLiteral<"pcb_text">;
|
|
12732
12782
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12799,6 +12849,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12799
12849
|
route_order_index: z.ZodOptional<z.ZodNumber>;
|
|
12800
12850
|
should_round_corners: z.ZodOptional<z.ZodBoolean>;
|
|
12801
12851
|
trace_length: z.ZodOptional<z.ZodNumber>;
|
|
12852
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
12802
12853
|
route: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
12803
12854
|
route_type: z.ZodLiteral<"wire">;
|
|
12804
12855
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12886,6 +12937,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12886
12937
|
route_order_index?: number | undefined;
|
|
12887
12938
|
should_round_corners?: boolean | undefined;
|
|
12888
12939
|
trace_length?: number | undefined;
|
|
12940
|
+
rats_nest_color?: string | undefined;
|
|
12889
12941
|
}, {
|
|
12890
12942
|
type: "pcb_trace";
|
|
12891
12943
|
route: ({
|
|
@@ -12916,6 +12968,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12916
12968
|
route_order_index?: number | undefined;
|
|
12917
12969
|
should_round_corners?: boolean | undefined;
|
|
12918
12970
|
trace_length?: number | undefined;
|
|
12971
|
+
rats_nest_color?: string | undefined;
|
|
12919
12972
|
}>, z.ZodObject<{
|
|
12920
12973
|
type: z.ZodLiteral<"pcb_via">;
|
|
12921
12974
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14451,8 +14504,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14451
14504
|
subcircuit_id?: string | undefined;
|
|
14452
14505
|
source_port_id?: string | undefined;
|
|
14453
14506
|
source_trace_id?: string | undefined;
|
|
14454
|
-
pcb_breakout_point_id?: string | undefined;
|
|
14455
14507
|
source_net_id?: string | undefined;
|
|
14508
|
+
pcb_breakout_point_id?: string | undefined;
|
|
14456
14509
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
14457
14510
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
14458
14511
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15433,6 +15486,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15433
15486
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
15434
15487
|
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
15435
15488
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15489
|
+
is_box_with_pins: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
15436
15490
|
}, "strip", z.ZodTypeAny, {
|
|
15437
15491
|
type: "schematic_component";
|
|
15438
15492
|
center: {
|
|
@@ -15444,6 +15498,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15444
15498
|
width: number;
|
|
15445
15499
|
height: number;
|
|
15446
15500
|
};
|
|
15501
|
+
is_box_with_pins: boolean;
|
|
15447
15502
|
source_component_id?: string | undefined;
|
|
15448
15503
|
subcircuit_id?: string | undefined;
|
|
15449
15504
|
source_group_id?: string | undefined;
|
|
@@ -15533,6 +15588,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15533
15588
|
symbol_display_value?: string | undefined;
|
|
15534
15589
|
schematic_group_id?: string | undefined;
|
|
15535
15590
|
is_schematic_group?: boolean | undefined;
|
|
15591
|
+
is_box_with_pins?: boolean | undefined;
|
|
15536
15592
|
}>, z.ZodObject<{
|
|
15537
15593
|
type: z.ZodLiteral<"schematic_port">;
|
|
15538
15594
|
schematic_port_id: z.ZodString;
|
|
@@ -18277,14 +18333,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18277
18333
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18278
18334
|
}, "strip", z.ZodTypeAny, {
|
|
18279
18335
|
type: "source_pcb_ground_plane";
|
|
18280
|
-
source_group_id: string;
|
|
18281
18336
|
source_net_id: string;
|
|
18337
|
+
source_group_id: string;
|
|
18282
18338
|
source_pcb_ground_plane_id: string;
|
|
18283
18339
|
subcircuit_id?: string | undefined;
|
|
18284
18340
|
}, {
|
|
18285
18341
|
type: "source_pcb_ground_plane";
|
|
18286
|
-
source_group_id: string;
|
|
18287
18342
|
source_net_id: string;
|
|
18343
|
+
source_group_id: string;
|
|
18288
18344
|
source_pcb_ground_plane_id: string;
|
|
18289
18345
|
subcircuit_id?: string | undefined;
|
|
18290
18346
|
}>, z.ZodObject<{
|
|
@@ -18296,15 +18352,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18296
18352
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
18297
18353
|
}, "strip", z.ZodTypeAny, {
|
|
18298
18354
|
type: "source_manually_placed_via";
|
|
18299
|
-
source_group_id: string;
|
|
18300
18355
|
source_net_id: string;
|
|
18356
|
+
source_group_id: string;
|
|
18301
18357
|
source_manually_placed_via_id: string;
|
|
18302
18358
|
subcircuit_id?: string | undefined;
|
|
18303
18359
|
source_trace_id?: string | undefined;
|
|
18304
18360
|
}, {
|
|
18305
18361
|
type: "source_manually_placed_via";
|
|
18306
|
-
source_group_id: string;
|
|
18307
18362
|
source_net_id: string;
|
|
18363
|
+
source_group_id: string;
|
|
18308
18364
|
source_manually_placed_via_id: string;
|
|
18309
18365
|
subcircuit_id?: string | undefined;
|
|
18310
18366
|
source_trace_id?: string | undefined;
|
|
@@ -19077,6 +19133,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19077
19133
|
pcb_group_id?: string | undefined;
|
|
19078
19134
|
pcb_port_id?: string | undefined;
|
|
19079
19135
|
is_board_pinout?: boolean | undefined;
|
|
19136
|
+
}>, z.ZodObject<{
|
|
19137
|
+
type: z.ZodLiteral<"pcb_net">;
|
|
19138
|
+
pcb_net_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19139
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
19140
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
19141
|
+
}, "strip", z.ZodTypeAny, {
|
|
19142
|
+
type: "pcb_net";
|
|
19143
|
+
pcb_net_id: string;
|
|
19144
|
+
rats_nest_color?: string | undefined;
|
|
19145
|
+
source_net_id?: string | undefined;
|
|
19146
|
+
}, {
|
|
19147
|
+
type: "pcb_net";
|
|
19148
|
+
rats_nest_color?: string | undefined;
|
|
19149
|
+
pcb_net_id?: string | undefined;
|
|
19150
|
+
source_net_id?: string | undefined;
|
|
19080
19151
|
}>, z.ZodObject<{
|
|
19081
19152
|
type: z.ZodLiteral<"pcb_text">;
|
|
19082
19153
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19149,6 +19220,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19149
19220
|
route_order_index: z.ZodOptional<z.ZodNumber>;
|
|
19150
19221
|
should_round_corners: z.ZodOptional<z.ZodBoolean>;
|
|
19151
19222
|
trace_length: z.ZodOptional<z.ZodNumber>;
|
|
19223
|
+
rats_nest_color: z.ZodOptional<z.ZodString>;
|
|
19152
19224
|
route: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
19153
19225
|
route_type: z.ZodLiteral<"wire">;
|
|
19154
19226
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19236,6 +19308,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19236
19308
|
route_order_index?: number | undefined;
|
|
19237
19309
|
should_round_corners?: boolean | undefined;
|
|
19238
19310
|
trace_length?: number | undefined;
|
|
19311
|
+
rats_nest_color?: string | undefined;
|
|
19239
19312
|
}, {
|
|
19240
19313
|
type: "pcb_trace";
|
|
19241
19314
|
route: ({
|
|
@@ -19266,6 +19339,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19266
19339
|
route_order_index?: number | undefined;
|
|
19267
19340
|
should_round_corners?: boolean | undefined;
|
|
19268
19341
|
trace_length?: number | undefined;
|
|
19342
|
+
rats_nest_color?: string | undefined;
|
|
19269
19343
|
}>, z.ZodObject<{
|
|
19270
19344
|
type: z.ZodLiteral<"pcb_via">;
|
|
19271
19345
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -20801,8 +20875,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20801
20875
|
subcircuit_id?: string | undefined;
|
|
20802
20876
|
source_port_id?: string | undefined;
|
|
20803
20877
|
source_trace_id?: string | undefined;
|
|
20804
|
-
pcb_breakout_point_id?: string | undefined;
|
|
20805
20878
|
source_net_id?: string | undefined;
|
|
20879
|
+
pcb_breakout_point_id?: string | undefined;
|
|
20806
20880
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
20807
20881
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
20808
20882
|
pcb_cutout_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21783,6 +21857,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21783
21857
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
21784
21858
|
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
21785
21859
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21860
|
+
is_box_with_pins: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
21786
21861
|
}, "strip", z.ZodTypeAny, {
|
|
21787
21862
|
type: "schematic_component";
|
|
21788
21863
|
center: {
|
|
@@ -21794,6 +21869,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21794
21869
|
width: number;
|
|
21795
21870
|
height: number;
|
|
21796
21871
|
};
|
|
21872
|
+
is_box_with_pins: boolean;
|
|
21797
21873
|
source_component_id?: string | undefined;
|
|
21798
21874
|
subcircuit_id?: string | undefined;
|
|
21799
21875
|
source_group_id?: string | undefined;
|
|
@@ -21883,6 +21959,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21883
21959
|
symbol_display_value?: string | undefined;
|
|
21884
21960
|
schematic_group_id?: string | undefined;
|
|
21885
21961
|
is_schematic_group?: boolean | undefined;
|
|
21962
|
+
is_box_with_pins?: boolean | undefined;
|
|
21886
21963
|
}>, z.ZodObject<{
|
|
21887
21964
|
type: z.ZodLiteral<"schematic_port">;
|
|
21888
21965
|
schematic_port_id: z.ZodString;
|
|
@@ -22786,4 +22863,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
22786
22863
|
*/
|
|
22787
22864
|
type CircuitJson = AnyCircuitElement[];
|
|
22788
22865
|
|
|
22789
|
-
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 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 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 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, 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_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_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 };
|
|
22866
|
+
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 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 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, 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_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 };
|