@tscircuit/eval 0.0.477 → 0.0.479
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/blob-url.js +1 -1
- package/dist/eval/index.d.ts +120 -4
- package/dist/eval/index.js +11 -3
- package/dist/lib/index.d.ts +120 -4
- package/dist/lib/index.js +11 -3
- package/dist/webworker/entrypoint.js +190 -190
- package/package.json +7 -7
package/dist/eval/index.d.ts
CHANGED
|
@@ -416,6 +416,18 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
416
416
|
display_value?: string | undefined;
|
|
417
417
|
are_pins_interchangeable?: boolean | undefined;
|
|
418
418
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
419
|
+
} | {
|
|
420
|
+
type: "source_component";
|
|
421
|
+
name: string;
|
|
422
|
+
source_component_id: string;
|
|
423
|
+
ftype: "simple_voltage_probe";
|
|
424
|
+
subcircuit_id?: string | undefined;
|
|
425
|
+
source_group_id?: string | undefined;
|
|
426
|
+
manufacturer_part_number?: string | undefined;
|
|
427
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
428
|
+
display_value?: string | undefined;
|
|
429
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
430
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
419
431
|
} | {
|
|
420
432
|
type: "source_project_metadata";
|
|
421
433
|
name?: string | undefined;
|
|
@@ -802,6 +814,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
802
814
|
hole_diameter: number;
|
|
803
815
|
subcircuit_id?: string | undefined;
|
|
804
816
|
pcb_group_id?: string | undefined;
|
|
817
|
+
soldermask_margin?: number | undefined;
|
|
805
818
|
} | {
|
|
806
819
|
x: number;
|
|
807
820
|
y: number;
|
|
@@ -812,6 +825,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
812
825
|
hole_height: number;
|
|
813
826
|
subcircuit_id?: string | undefined;
|
|
814
827
|
pcb_group_id?: string | undefined;
|
|
828
|
+
soldermask_margin?: number | undefined;
|
|
815
829
|
} | {
|
|
816
830
|
x: number;
|
|
817
831
|
y: number;
|
|
@@ -822,6 +836,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
822
836
|
hole_height: number;
|
|
823
837
|
subcircuit_id?: string | undefined;
|
|
824
838
|
pcb_group_id?: string | undefined;
|
|
839
|
+
soldermask_margin?: number | undefined;
|
|
825
840
|
} | {
|
|
826
841
|
x: number;
|
|
827
842
|
y: number;
|
|
@@ -833,6 +848,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
833
848
|
ccw_rotation: number;
|
|
834
849
|
subcircuit_id?: string | undefined;
|
|
835
850
|
pcb_group_id?: string | undefined;
|
|
851
|
+
soldermask_margin?: number | undefined;
|
|
836
852
|
} | {
|
|
837
853
|
x: number;
|
|
838
854
|
y: number;
|
|
@@ -842,6 +858,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
842
858
|
hole_diameter: number;
|
|
843
859
|
subcircuit_id?: string | undefined;
|
|
844
860
|
pcb_group_id?: string | undefined;
|
|
861
|
+
soldermask_margin?: number | undefined;
|
|
845
862
|
} | {
|
|
846
863
|
x: number;
|
|
847
864
|
y: number;
|
|
@@ -852,6 +869,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
852
869
|
hole_height: number;
|
|
853
870
|
subcircuit_id?: string | undefined;
|
|
854
871
|
pcb_group_id?: string | undefined;
|
|
872
|
+
soldermask_margin?: number | undefined;
|
|
855
873
|
} | {
|
|
856
874
|
message: string;
|
|
857
875
|
type: "pcb_missing_footprint_error";
|
|
@@ -901,6 +919,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
901
919
|
pcb_component_id?: string | undefined;
|
|
902
920
|
subcircuit_id?: string | undefined;
|
|
903
921
|
pcb_group_id?: string | undefined;
|
|
922
|
+
soldermask_margin?: number | undefined;
|
|
904
923
|
port_hints?: string[] | undefined;
|
|
905
924
|
pcb_port_id?: string | undefined;
|
|
906
925
|
} | {
|
|
@@ -918,6 +937,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
918
937
|
pcb_component_id?: string | undefined;
|
|
919
938
|
subcircuit_id?: string | undefined;
|
|
920
939
|
pcb_group_id?: string | undefined;
|
|
940
|
+
soldermask_margin?: number | undefined;
|
|
921
941
|
port_hints?: string[] | undefined;
|
|
922
942
|
pcb_port_id?: string | undefined;
|
|
923
943
|
} | {
|
|
@@ -937,6 +957,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
937
957
|
pcb_component_id?: string | undefined;
|
|
938
958
|
subcircuit_id?: string | undefined;
|
|
939
959
|
pcb_group_id?: string | undefined;
|
|
960
|
+
soldermask_margin?: number | undefined;
|
|
940
961
|
port_hints?: string[] | undefined;
|
|
941
962
|
pcb_port_id?: string | undefined;
|
|
942
963
|
rect_border_radius?: number | undefined;
|
|
@@ -958,6 +979,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
958
979
|
pcb_component_id?: string | undefined;
|
|
959
980
|
subcircuit_id?: string | undefined;
|
|
960
981
|
pcb_group_id?: string | undefined;
|
|
982
|
+
soldermask_margin?: number | undefined;
|
|
961
983
|
port_hints?: string[] | undefined;
|
|
962
984
|
pcb_port_id?: string | undefined;
|
|
963
985
|
rect_border_radius?: number | undefined;
|
|
@@ -981,6 +1003,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
981
1003
|
pcb_component_id?: string | undefined;
|
|
982
1004
|
subcircuit_id?: string | undefined;
|
|
983
1005
|
pcb_group_id?: string | undefined;
|
|
1006
|
+
soldermask_margin?: number | undefined;
|
|
984
1007
|
port_hints?: string[] | undefined;
|
|
985
1008
|
pcb_port_id?: string | undefined;
|
|
986
1009
|
rect_border_radius?: number | undefined;
|
|
@@ -1002,6 +1025,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1002
1025
|
subcircuit_id?: string | undefined;
|
|
1003
1026
|
pcb_group_id?: string | undefined;
|
|
1004
1027
|
hole_diameter?: number | undefined;
|
|
1028
|
+
soldermask_margin?: number | undefined;
|
|
1005
1029
|
hole_width?: number | undefined;
|
|
1006
1030
|
hole_height?: number | undefined;
|
|
1007
1031
|
port_hints?: string[] | undefined;
|
|
@@ -1120,6 +1144,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1120
1144
|
pcb_component_id?: string | undefined;
|
|
1121
1145
|
subcircuit_id?: string | undefined;
|
|
1122
1146
|
pcb_group_id?: string | undefined;
|
|
1147
|
+
soldermask_margin?: number | undefined;
|
|
1123
1148
|
port_hints?: string[] | undefined;
|
|
1124
1149
|
pcb_port_id?: string | undefined;
|
|
1125
1150
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1135,6 +1160,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1135
1160
|
pcb_component_id?: string | undefined;
|
|
1136
1161
|
subcircuit_id?: string | undefined;
|
|
1137
1162
|
pcb_group_id?: string | undefined;
|
|
1163
|
+
soldermask_margin?: number | undefined;
|
|
1138
1164
|
port_hints?: string[] | undefined;
|
|
1139
1165
|
pcb_port_id?: string | undefined;
|
|
1140
1166
|
rect_border_radius?: number | undefined;
|
|
@@ -1153,6 +1179,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1153
1179
|
pcb_component_id?: string | undefined;
|
|
1154
1180
|
subcircuit_id?: string | undefined;
|
|
1155
1181
|
pcb_group_id?: string | undefined;
|
|
1182
|
+
soldermask_margin?: number | undefined;
|
|
1156
1183
|
port_hints?: string[] | undefined;
|
|
1157
1184
|
pcb_port_id?: string | undefined;
|
|
1158
1185
|
rect_border_radius?: number | undefined;
|
|
@@ -1172,6 +1199,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1172
1199
|
pcb_component_id?: string | undefined;
|
|
1173
1200
|
subcircuit_id?: string | undefined;
|
|
1174
1201
|
pcb_group_id?: string | undefined;
|
|
1202
|
+
soldermask_margin?: number | undefined;
|
|
1175
1203
|
port_hints?: string[] | undefined;
|
|
1176
1204
|
pcb_port_id?: string | undefined;
|
|
1177
1205
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1188,6 +1216,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1188
1216
|
pcb_component_id?: string | undefined;
|
|
1189
1217
|
subcircuit_id?: string | undefined;
|
|
1190
1218
|
pcb_group_id?: string | undefined;
|
|
1219
|
+
soldermask_margin?: number | undefined;
|
|
1191
1220
|
port_hints?: string[] | undefined;
|
|
1192
1221
|
pcb_port_id?: string | undefined;
|
|
1193
1222
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1203,6 +1232,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1203
1232
|
pcb_component_id?: string | undefined;
|
|
1204
1233
|
subcircuit_id?: string | undefined;
|
|
1205
1234
|
pcb_group_id?: string | undefined;
|
|
1235
|
+
soldermask_margin?: number | undefined;
|
|
1206
1236
|
port_hints?: string[] | undefined;
|
|
1207
1237
|
pcb_port_id?: string | undefined;
|
|
1208
1238
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1725,6 +1755,9 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1725
1755
|
rotation?: number | undefined;
|
|
1726
1756
|
subcircuit_id?: string | undefined;
|
|
1727
1757
|
pcb_group_id?: string | undefined;
|
|
1758
|
+
corner_radius?: number | undefined;
|
|
1759
|
+
pcb_board_id?: string | undefined;
|
|
1760
|
+
pcb_panel_id?: string | undefined;
|
|
1728
1761
|
} | {
|
|
1729
1762
|
type: "pcb_cutout";
|
|
1730
1763
|
center: {
|
|
@@ -1736,6 +1769,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1736
1769
|
pcb_cutout_id: string;
|
|
1737
1770
|
subcircuit_id?: string | undefined;
|
|
1738
1771
|
pcb_group_id?: string | undefined;
|
|
1772
|
+
pcb_board_id?: string | undefined;
|
|
1773
|
+
pcb_panel_id?: string | undefined;
|
|
1739
1774
|
} | {
|
|
1740
1775
|
type: "pcb_cutout";
|
|
1741
1776
|
shape: "polygon";
|
|
@@ -1746,6 +1781,24 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1746
1781
|
pcb_cutout_id: string;
|
|
1747
1782
|
subcircuit_id?: string | undefined;
|
|
1748
1783
|
pcb_group_id?: string | undefined;
|
|
1784
|
+
pcb_board_id?: string | undefined;
|
|
1785
|
+
pcb_panel_id?: string | undefined;
|
|
1786
|
+
} | {
|
|
1787
|
+
type: "pcb_cutout";
|
|
1788
|
+
shape: "path";
|
|
1789
|
+
route: {
|
|
1790
|
+
x: number;
|
|
1791
|
+
y: number;
|
|
1792
|
+
}[];
|
|
1793
|
+
pcb_cutout_id: string;
|
|
1794
|
+
slot_width: number;
|
|
1795
|
+
subcircuit_id?: string | undefined;
|
|
1796
|
+
pcb_group_id?: string | undefined;
|
|
1797
|
+
pcb_board_id?: string | undefined;
|
|
1798
|
+
pcb_panel_id?: string | undefined;
|
|
1799
|
+
slot_length?: number | undefined;
|
|
1800
|
+
space_between_slots?: number | undefined;
|
|
1801
|
+
slot_corner_radius?: number | undefined;
|
|
1749
1802
|
} | {
|
|
1750
1803
|
type: "pcb_ground_plane";
|
|
1751
1804
|
source_net_id: string;
|
|
@@ -2160,7 +2213,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2160
2213
|
y: number;
|
|
2161
2214
|
};
|
|
2162
2215
|
schematic_voltage_probe_id: string;
|
|
2216
|
+
name?: string | undefined;
|
|
2217
|
+
source_component_id?: string | undefined;
|
|
2163
2218
|
subcircuit_id?: string | undefined;
|
|
2219
|
+
color?: string | undefined;
|
|
2164
2220
|
voltage?: number | undefined;
|
|
2165
2221
|
} | {
|
|
2166
2222
|
message: string;
|
|
@@ -2297,10 +2353,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2297
2353
|
simulation_transient_voltage_graph_id: string;
|
|
2298
2354
|
voltage_levels: number[];
|
|
2299
2355
|
name?: string | undefined;
|
|
2356
|
+
source_component_id?: string | undefined;
|
|
2300
2357
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
2301
|
-
|
|
2358
|
+
color?: string | undefined;
|
|
2302
2359
|
timestamps_ms?: number[] | undefined;
|
|
2303
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
2304
2360
|
} | {
|
|
2305
2361
|
type: "simulation_switch";
|
|
2306
2362
|
simulation_switch_id: string;
|
|
@@ -2313,9 +2369,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2313
2369
|
type: "simulation_voltage_probe";
|
|
2314
2370
|
simulation_voltage_probe_id: string;
|
|
2315
2371
|
name?: string | undefined;
|
|
2372
|
+
source_component_id?: string | undefined;
|
|
2316
2373
|
subcircuit_id?: string | undefined;
|
|
2317
2374
|
source_port_id?: string | undefined;
|
|
2318
2375
|
source_net_id?: string | undefined;
|
|
2376
|
+
color?: string | undefined;
|
|
2319
2377
|
} | {
|
|
2320
2378
|
message: string;
|
|
2321
2379
|
type: "simulation_unknown_experiment_error";
|
|
@@ -2619,6 +2677,18 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2619
2677
|
display_value?: string | undefined;
|
|
2620
2678
|
are_pins_interchangeable?: boolean | undefined;
|
|
2621
2679
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2680
|
+
} | {
|
|
2681
|
+
type: "source_component";
|
|
2682
|
+
name: string;
|
|
2683
|
+
source_component_id: string;
|
|
2684
|
+
ftype: "simple_voltage_probe";
|
|
2685
|
+
subcircuit_id?: string | undefined;
|
|
2686
|
+
source_group_id?: string | undefined;
|
|
2687
|
+
manufacturer_part_number?: string | undefined;
|
|
2688
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2689
|
+
display_value?: string | undefined;
|
|
2690
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
2691
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2622
2692
|
} | {
|
|
2623
2693
|
type: "source_project_metadata";
|
|
2624
2694
|
name?: string | undefined;
|
|
@@ -3005,6 +3075,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3005
3075
|
hole_diameter: number;
|
|
3006
3076
|
subcircuit_id?: string | undefined;
|
|
3007
3077
|
pcb_group_id?: string | undefined;
|
|
3078
|
+
soldermask_margin?: number | undefined;
|
|
3008
3079
|
} | {
|
|
3009
3080
|
x: number;
|
|
3010
3081
|
y: number;
|
|
@@ -3015,6 +3086,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3015
3086
|
hole_height: number;
|
|
3016
3087
|
subcircuit_id?: string | undefined;
|
|
3017
3088
|
pcb_group_id?: string | undefined;
|
|
3089
|
+
soldermask_margin?: number | undefined;
|
|
3018
3090
|
} | {
|
|
3019
3091
|
x: number;
|
|
3020
3092
|
y: number;
|
|
@@ -3025,6 +3097,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3025
3097
|
hole_height: number;
|
|
3026
3098
|
subcircuit_id?: string | undefined;
|
|
3027
3099
|
pcb_group_id?: string | undefined;
|
|
3100
|
+
soldermask_margin?: number | undefined;
|
|
3028
3101
|
} | {
|
|
3029
3102
|
x: number;
|
|
3030
3103
|
y: number;
|
|
@@ -3036,6 +3109,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3036
3109
|
ccw_rotation: number;
|
|
3037
3110
|
subcircuit_id?: string | undefined;
|
|
3038
3111
|
pcb_group_id?: string | undefined;
|
|
3112
|
+
soldermask_margin?: number | undefined;
|
|
3039
3113
|
} | {
|
|
3040
3114
|
x: number;
|
|
3041
3115
|
y: number;
|
|
@@ -3045,6 +3119,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3045
3119
|
hole_diameter: number;
|
|
3046
3120
|
subcircuit_id?: string | undefined;
|
|
3047
3121
|
pcb_group_id?: string | undefined;
|
|
3122
|
+
soldermask_margin?: number | undefined;
|
|
3048
3123
|
} | {
|
|
3049
3124
|
x: number;
|
|
3050
3125
|
y: number;
|
|
@@ -3055,6 +3130,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3055
3130
|
hole_height: number;
|
|
3056
3131
|
subcircuit_id?: string | undefined;
|
|
3057
3132
|
pcb_group_id?: string | undefined;
|
|
3133
|
+
soldermask_margin?: number | undefined;
|
|
3058
3134
|
} | {
|
|
3059
3135
|
message: string;
|
|
3060
3136
|
type: "pcb_missing_footprint_error";
|
|
@@ -3104,6 +3180,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3104
3180
|
pcb_component_id?: string | undefined;
|
|
3105
3181
|
subcircuit_id?: string | undefined;
|
|
3106
3182
|
pcb_group_id?: string | undefined;
|
|
3183
|
+
soldermask_margin?: number | undefined;
|
|
3107
3184
|
port_hints?: string[] | undefined;
|
|
3108
3185
|
pcb_port_id?: string | undefined;
|
|
3109
3186
|
} | {
|
|
@@ -3121,6 +3198,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3121
3198
|
pcb_component_id?: string | undefined;
|
|
3122
3199
|
subcircuit_id?: string | undefined;
|
|
3123
3200
|
pcb_group_id?: string | undefined;
|
|
3201
|
+
soldermask_margin?: number | undefined;
|
|
3124
3202
|
port_hints?: string[] | undefined;
|
|
3125
3203
|
pcb_port_id?: string | undefined;
|
|
3126
3204
|
} | {
|
|
@@ -3140,6 +3218,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3140
3218
|
pcb_component_id?: string | undefined;
|
|
3141
3219
|
subcircuit_id?: string | undefined;
|
|
3142
3220
|
pcb_group_id?: string | undefined;
|
|
3221
|
+
soldermask_margin?: number | undefined;
|
|
3143
3222
|
port_hints?: string[] | undefined;
|
|
3144
3223
|
pcb_port_id?: string | undefined;
|
|
3145
3224
|
rect_border_radius?: number | undefined;
|
|
@@ -3161,6 +3240,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3161
3240
|
pcb_component_id?: string | undefined;
|
|
3162
3241
|
subcircuit_id?: string | undefined;
|
|
3163
3242
|
pcb_group_id?: string | undefined;
|
|
3243
|
+
soldermask_margin?: number | undefined;
|
|
3164
3244
|
port_hints?: string[] | undefined;
|
|
3165
3245
|
pcb_port_id?: string | undefined;
|
|
3166
3246
|
rect_border_radius?: number | undefined;
|
|
@@ -3184,6 +3264,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3184
3264
|
pcb_component_id?: string | undefined;
|
|
3185
3265
|
subcircuit_id?: string | undefined;
|
|
3186
3266
|
pcb_group_id?: string | undefined;
|
|
3267
|
+
soldermask_margin?: number | undefined;
|
|
3187
3268
|
port_hints?: string[] | undefined;
|
|
3188
3269
|
pcb_port_id?: string | undefined;
|
|
3189
3270
|
rect_border_radius?: number | undefined;
|
|
@@ -3205,6 +3286,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3205
3286
|
subcircuit_id?: string | undefined;
|
|
3206
3287
|
pcb_group_id?: string | undefined;
|
|
3207
3288
|
hole_diameter?: number | undefined;
|
|
3289
|
+
soldermask_margin?: number | undefined;
|
|
3208
3290
|
hole_width?: number | undefined;
|
|
3209
3291
|
hole_height?: number | undefined;
|
|
3210
3292
|
port_hints?: string[] | undefined;
|
|
@@ -3323,6 +3405,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3323
3405
|
pcb_component_id?: string | undefined;
|
|
3324
3406
|
subcircuit_id?: string | undefined;
|
|
3325
3407
|
pcb_group_id?: string | undefined;
|
|
3408
|
+
soldermask_margin?: number | undefined;
|
|
3326
3409
|
port_hints?: string[] | undefined;
|
|
3327
3410
|
pcb_port_id?: string | undefined;
|
|
3328
3411
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3338,6 +3421,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3338
3421
|
pcb_component_id?: string | undefined;
|
|
3339
3422
|
subcircuit_id?: string | undefined;
|
|
3340
3423
|
pcb_group_id?: string | undefined;
|
|
3424
|
+
soldermask_margin?: number | undefined;
|
|
3341
3425
|
port_hints?: string[] | undefined;
|
|
3342
3426
|
pcb_port_id?: string | undefined;
|
|
3343
3427
|
rect_border_radius?: number | undefined;
|
|
@@ -3356,6 +3440,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3356
3440
|
pcb_component_id?: string | undefined;
|
|
3357
3441
|
subcircuit_id?: string | undefined;
|
|
3358
3442
|
pcb_group_id?: string | undefined;
|
|
3443
|
+
soldermask_margin?: number | undefined;
|
|
3359
3444
|
port_hints?: string[] | undefined;
|
|
3360
3445
|
pcb_port_id?: string | undefined;
|
|
3361
3446
|
rect_border_radius?: number | undefined;
|
|
@@ -3375,6 +3460,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3375
3460
|
pcb_component_id?: string | undefined;
|
|
3376
3461
|
subcircuit_id?: string | undefined;
|
|
3377
3462
|
pcb_group_id?: string | undefined;
|
|
3463
|
+
soldermask_margin?: number | undefined;
|
|
3378
3464
|
port_hints?: string[] | undefined;
|
|
3379
3465
|
pcb_port_id?: string | undefined;
|
|
3380
3466
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3391,6 +3477,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3391
3477
|
pcb_component_id?: string | undefined;
|
|
3392
3478
|
subcircuit_id?: string | undefined;
|
|
3393
3479
|
pcb_group_id?: string | undefined;
|
|
3480
|
+
soldermask_margin?: number | undefined;
|
|
3394
3481
|
port_hints?: string[] | undefined;
|
|
3395
3482
|
pcb_port_id?: string | undefined;
|
|
3396
3483
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3406,6 +3493,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3406
3493
|
pcb_component_id?: string | undefined;
|
|
3407
3494
|
subcircuit_id?: string | undefined;
|
|
3408
3495
|
pcb_group_id?: string | undefined;
|
|
3496
|
+
soldermask_margin?: number | undefined;
|
|
3409
3497
|
port_hints?: string[] | undefined;
|
|
3410
3498
|
pcb_port_id?: string | undefined;
|
|
3411
3499
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3928,6 +4016,9 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3928
4016
|
rotation?: number | undefined;
|
|
3929
4017
|
subcircuit_id?: string | undefined;
|
|
3930
4018
|
pcb_group_id?: string | undefined;
|
|
4019
|
+
corner_radius?: number | undefined;
|
|
4020
|
+
pcb_board_id?: string | undefined;
|
|
4021
|
+
pcb_panel_id?: string | undefined;
|
|
3931
4022
|
} | {
|
|
3932
4023
|
type: "pcb_cutout";
|
|
3933
4024
|
center: {
|
|
@@ -3939,6 +4030,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3939
4030
|
pcb_cutout_id: string;
|
|
3940
4031
|
subcircuit_id?: string | undefined;
|
|
3941
4032
|
pcb_group_id?: string | undefined;
|
|
4033
|
+
pcb_board_id?: string | undefined;
|
|
4034
|
+
pcb_panel_id?: string | undefined;
|
|
3942
4035
|
} | {
|
|
3943
4036
|
type: "pcb_cutout";
|
|
3944
4037
|
shape: "polygon";
|
|
@@ -3949,6 +4042,24 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3949
4042
|
pcb_cutout_id: string;
|
|
3950
4043
|
subcircuit_id?: string | undefined;
|
|
3951
4044
|
pcb_group_id?: string | undefined;
|
|
4045
|
+
pcb_board_id?: string | undefined;
|
|
4046
|
+
pcb_panel_id?: string | undefined;
|
|
4047
|
+
} | {
|
|
4048
|
+
type: "pcb_cutout";
|
|
4049
|
+
shape: "path";
|
|
4050
|
+
route: {
|
|
4051
|
+
x: number;
|
|
4052
|
+
y: number;
|
|
4053
|
+
}[];
|
|
4054
|
+
pcb_cutout_id: string;
|
|
4055
|
+
slot_width: number;
|
|
4056
|
+
subcircuit_id?: string | undefined;
|
|
4057
|
+
pcb_group_id?: string | undefined;
|
|
4058
|
+
pcb_board_id?: string | undefined;
|
|
4059
|
+
pcb_panel_id?: string | undefined;
|
|
4060
|
+
slot_length?: number | undefined;
|
|
4061
|
+
space_between_slots?: number | undefined;
|
|
4062
|
+
slot_corner_radius?: number | undefined;
|
|
3952
4063
|
} | {
|
|
3953
4064
|
type: "pcb_ground_plane";
|
|
3954
4065
|
source_net_id: string;
|
|
@@ -4363,7 +4474,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4363
4474
|
y: number;
|
|
4364
4475
|
};
|
|
4365
4476
|
schematic_voltage_probe_id: string;
|
|
4477
|
+
name?: string | undefined;
|
|
4478
|
+
source_component_id?: string | undefined;
|
|
4366
4479
|
subcircuit_id?: string | undefined;
|
|
4480
|
+
color?: string | undefined;
|
|
4367
4481
|
voltage?: number | undefined;
|
|
4368
4482
|
} | {
|
|
4369
4483
|
message: string;
|
|
@@ -4500,10 +4614,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4500
4614
|
simulation_transient_voltage_graph_id: string;
|
|
4501
4615
|
voltage_levels: number[];
|
|
4502
4616
|
name?: string | undefined;
|
|
4617
|
+
source_component_id?: string | undefined;
|
|
4503
4618
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4504
|
-
|
|
4619
|
+
color?: string | undefined;
|
|
4505
4620
|
timestamps_ms?: number[] | undefined;
|
|
4506
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
4507
4621
|
} | {
|
|
4508
4622
|
type: "simulation_switch";
|
|
4509
4623
|
simulation_switch_id: string;
|
|
@@ -4516,9 +4630,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4516
4630
|
type: "simulation_voltage_probe";
|
|
4517
4631
|
simulation_voltage_probe_id: string;
|
|
4518
4632
|
name?: string | undefined;
|
|
4633
|
+
source_component_id?: string | undefined;
|
|
4519
4634
|
subcircuit_id?: string | undefined;
|
|
4520
4635
|
source_port_id?: string | undefined;
|
|
4521
4636
|
source_net_id?: string | undefined;
|
|
4637
|
+
color?: string | undefined;
|
|
4522
4638
|
} | {
|
|
4523
4639
|
message: string;
|
|
4524
4640
|
type: "simulation_unknown_experiment_error";
|