@tscircuit/eval 0.0.476 → 0.0.478
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 +118 -4
- package/dist/eval/index.js +5 -2
- package/dist/lib/index.d.ts +118 -4
- package/dist/lib/index.js +5 -2
- package/dist/webworker/entrypoint.js +190 -190
- package/package.json +7 -7
package/dist/lib/index.d.ts
CHANGED
|
@@ -432,6 +432,18 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
432
432
|
display_value?: string | undefined;
|
|
433
433
|
are_pins_interchangeable?: boolean | undefined;
|
|
434
434
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
435
|
+
} | {
|
|
436
|
+
type: "source_component";
|
|
437
|
+
name: string;
|
|
438
|
+
source_component_id: string;
|
|
439
|
+
ftype: "simple_voltage_probe";
|
|
440
|
+
subcircuit_id?: string | undefined;
|
|
441
|
+
source_group_id?: string | undefined;
|
|
442
|
+
manufacturer_part_number?: string | undefined;
|
|
443
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
444
|
+
display_value?: string | undefined;
|
|
445
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
446
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
435
447
|
} | {
|
|
436
448
|
type: "source_project_metadata";
|
|
437
449
|
name?: string | undefined;
|
|
@@ -818,6 +830,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
818
830
|
hole_diameter: number;
|
|
819
831
|
subcircuit_id?: string | undefined;
|
|
820
832
|
pcb_group_id?: string | undefined;
|
|
833
|
+
soldermask_margin?: number | undefined;
|
|
821
834
|
} | {
|
|
822
835
|
x: number;
|
|
823
836
|
y: number;
|
|
@@ -828,6 +841,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
828
841
|
hole_height: number;
|
|
829
842
|
subcircuit_id?: string | undefined;
|
|
830
843
|
pcb_group_id?: string | undefined;
|
|
844
|
+
soldermask_margin?: number | undefined;
|
|
831
845
|
} | {
|
|
832
846
|
x: number;
|
|
833
847
|
y: number;
|
|
@@ -838,6 +852,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
838
852
|
hole_height: number;
|
|
839
853
|
subcircuit_id?: string | undefined;
|
|
840
854
|
pcb_group_id?: string | undefined;
|
|
855
|
+
soldermask_margin?: number | undefined;
|
|
841
856
|
} | {
|
|
842
857
|
x: number;
|
|
843
858
|
y: number;
|
|
@@ -849,6 +864,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
849
864
|
ccw_rotation: number;
|
|
850
865
|
subcircuit_id?: string | undefined;
|
|
851
866
|
pcb_group_id?: string | undefined;
|
|
867
|
+
soldermask_margin?: number | undefined;
|
|
852
868
|
} | {
|
|
853
869
|
x: number;
|
|
854
870
|
y: number;
|
|
@@ -858,6 +874,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
858
874
|
hole_diameter: number;
|
|
859
875
|
subcircuit_id?: string | undefined;
|
|
860
876
|
pcb_group_id?: string | undefined;
|
|
877
|
+
soldermask_margin?: number | undefined;
|
|
861
878
|
} | {
|
|
862
879
|
x: number;
|
|
863
880
|
y: number;
|
|
@@ -868,6 +885,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
868
885
|
hole_height: number;
|
|
869
886
|
subcircuit_id?: string | undefined;
|
|
870
887
|
pcb_group_id?: string | undefined;
|
|
888
|
+
soldermask_margin?: number | undefined;
|
|
871
889
|
} | {
|
|
872
890
|
message: string;
|
|
873
891
|
type: "pcb_missing_footprint_error";
|
|
@@ -917,6 +935,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
917
935
|
pcb_component_id?: string | undefined;
|
|
918
936
|
subcircuit_id?: string | undefined;
|
|
919
937
|
pcb_group_id?: string | undefined;
|
|
938
|
+
soldermask_margin?: number | undefined;
|
|
920
939
|
port_hints?: string[] | undefined;
|
|
921
940
|
pcb_port_id?: string | undefined;
|
|
922
941
|
} | {
|
|
@@ -934,6 +953,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
934
953
|
pcb_component_id?: string | undefined;
|
|
935
954
|
subcircuit_id?: string | undefined;
|
|
936
955
|
pcb_group_id?: string | undefined;
|
|
956
|
+
soldermask_margin?: number | undefined;
|
|
937
957
|
port_hints?: string[] | undefined;
|
|
938
958
|
pcb_port_id?: string | undefined;
|
|
939
959
|
} | {
|
|
@@ -953,6 +973,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
953
973
|
pcb_component_id?: string | undefined;
|
|
954
974
|
subcircuit_id?: string | undefined;
|
|
955
975
|
pcb_group_id?: string | undefined;
|
|
976
|
+
soldermask_margin?: number | undefined;
|
|
956
977
|
port_hints?: string[] | undefined;
|
|
957
978
|
pcb_port_id?: string | undefined;
|
|
958
979
|
rect_border_radius?: number | undefined;
|
|
@@ -974,6 +995,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
974
995
|
pcb_component_id?: string | undefined;
|
|
975
996
|
subcircuit_id?: string | undefined;
|
|
976
997
|
pcb_group_id?: string | undefined;
|
|
998
|
+
soldermask_margin?: number | undefined;
|
|
977
999
|
port_hints?: string[] | undefined;
|
|
978
1000
|
pcb_port_id?: string | undefined;
|
|
979
1001
|
rect_border_radius?: number | undefined;
|
|
@@ -997,6 +1019,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
997
1019
|
pcb_component_id?: string | undefined;
|
|
998
1020
|
subcircuit_id?: string | undefined;
|
|
999
1021
|
pcb_group_id?: string | undefined;
|
|
1022
|
+
soldermask_margin?: number | undefined;
|
|
1000
1023
|
port_hints?: string[] | undefined;
|
|
1001
1024
|
pcb_port_id?: string | undefined;
|
|
1002
1025
|
rect_border_radius?: number | undefined;
|
|
@@ -1018,6 +1041,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1018
1041
|
subcircuit_id?: string | undefined;
|
|
1019
1042
|
pcb_group_id?: string | undefined;
|
|
1020
1043
|
hole_diameter?: number | undefined;
|
|
1044
|
+
soldermask_margin?: number | undefined;
|
|
1021
1045
|
hole_width?: number | undefined;
|
|
1022
1046
|
hole_height?: number | undefined;
|
|
1023
1047
|
port_hints?: string[] | undefined;
|
|
@@ -1136,6 +1160,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1136
1160
|
pcb_component_id?: string | undefined;
|
|
1137
1161
|
subcircuit_id?: string | undefined;
|
|
1138
1162
|
pcb_group_id?: string | undefined;
|
|
1163
|
+
soldermask_margin?: number | undefined;
|
|
1139
1164
|
port_hints?: string[] | undefined;
|
|
1140
1165
|
pcb_port_id?: string | undefined;
|
|
1141
1166
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1151,6 +1176,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1151
1176
|
pcb_component_id?: string | undefined;
|
|
1152
1177
|
subcircuit_id?: string | undefined;
|
|
1153
1178
|
pcb_group_id?: string | undefined;
|
|
1179
|
+
soldermask_margin?: number | undefined;
|
|
1154
1180
|
port_hints?: string[] | undefined;
|
|
1155
1181
|
pcb_port_id?: string | undefined;
|
|
1156
1182
|
rect_border_radius?: number | undefined;
|
|
@@ -1169,6 +1195,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1169
1195
|
pcb_component_id?: string | undefined;
|
|
1170
1196
|
subcircuit_id?: string | undefined;
|
|
1171
1197
|
pcb_group_id?: string | undefined;
|
|
1198
|
+
soldermask_margin?: number | undefined;
|
|
1172
1199
|
port_hints?: string[] | undefined;
|
|
1173
1200
|
pcb_port_id?: string | undefined;
|
|
1174
1201
|
rect_border_radius?: number | undefined;
|
|
@@ -1188,6 +1215,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1188
1215
|
pcb_component_id?: string | undefined;
|
|
1189
1216
|
subcircuit_id?: string | undefined;
|
|
1190
1217
|
pcb_group_id?: string | undefined;
|
|
1218
|
+
soldermask_margin?: number | undefined;
|
|
1191
1219
|
port_hints?: string[] | undefined;
|
|
1192
1220
|
pcb_port_id?: string | undefined;
|
|
1193
1221
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1204,6 +1232,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1204
1232
|
pcb_component_id?: string | undefined;
|
|
1205
1233
|
subcircuit_id?: string | undefined;
|
|
1206
1234
|
pcb_group_id?: string | undefined;
|
|
1235
|
+
soldermask_margin?: number | undefined;
|
|
1207
1236
|
port_hints?: string[] | undefined;
|
|
1208
1237
|
pcb_port_id?: string | undefined;
|
|
1209
1238
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1219,6 +1248,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1219
1248
|
pcb_component_id?: string | undefined;
|
|
1220
1249
|
subcircuit_id?: string | undefined;
|
|
1221
1250
|
pcb_group_id?: string | undefined;
|
|
1251
|
+
soldermask_margin?: number | undefined;
|
|
1222
1252
|
port_hints?: string[] | undefined;
|
|
1223
1253
|
pcb_port_id?: string | undefined;
|
|
1224
1254
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -1741,6 +1771,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1741
1771
|
rotation?: number | undefined;
|
|
1742
1772
|
subcircuit_id?: string | undefined;
|
|
1743
1773
|
pcb_group_id?: string | undefined;
|
|
1774
|
+
pcb_board_id?: string | undefined;
|
|
1775
|
+
pcb_panel_id?: string | undefined;
|
|
1744
1776
|
} | {
|
|
1745
1777
|
type: "pcb_cutout";
|
|
1746
1778
|
center: {
|
|
@@ -1752,6 +1784,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1752
1784
|
pcb_cutout_id: string;
|
|
1753
1785
|
subcircuit_id?: string | undefined;
|
|
1754
1786
|
pcb_group_id?: string | undefined;
|
|
1787
|
+
pcb_board_id?: string | undefined;
|
|
1788
|
+
pcb_panel_id?: string | undefined;
|
|
1755
1789
|
} | {
|
|
1756
1790
|
type: "pcb_cutout";
|
|
1757
1791
|
shape: "polygon";
|
|
@@ -1762,6 +1796,24 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1762
1796
|
pcb_cutout_id: string;
|
|
1763
1797
|
subcircuit_id?: string | undefined;
|
|
1764
1798
|
pcb_group_id?: string | undefined;
|
|
1799
|
+
pcb_board_id?: string | undefined;
|
|
1800
|
+
pcb_panel_id?: string | undefined;
|
|
1801
|
+
} | {
|
|
1802
|
+
type: "pcb_cutout";
|
|
1803
|
+
shape: "path";
|
|
1804
|
+
route: {
|
|
1805
|
+
x: number;
|
|
1806
|
+
y: number;
|
|
1807
|
+
}[];
|
|
1808
|
+
pcb_cutout_id: string;
|
|
1809
|
+
slot_width: number;
|
|
1810
|
+
subcircuit_id?: string | undefined;
|
|
1811
|
+
pcb_group_id?: string | undefined;
|
|
1812
|
+
pcb_board_id?: string | undefined;
|
|
1813
|
+
pcb_panel_id?: string | undefined;
|
|
1814
|
+
slot_length?: number | undefined;
|
|
1815
|
+
space_between_slots?: number | undefined;
|
|
1816
|
+
slot_corner_radius?: number | undefined;
|
|
1765
1817
|
} | {
|
|
1766
1818
|
type: "pcb_ground_plane";
|
|
1767
1819
|
source_net_id: string;
|
|
@@ -2176,7 +2228,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2176
2228
|
y: number;
|
|
2177
2229
|
};
|
|
2178
2230
|
schematic_voltage_probe_id: string;
|
|
2231
|
+
name?: string | undefined;
|
|
2232
|
+
source_component_id?: string | undefined;
|
|
2179
2233
|
subcircuit_id?: string | undefined;
|
|
2234
|
+
color?: string | undefined;
|
|
2180
2235
|
voltage?: number | undefined;
|
|
2181
2236
|
} | {
|
|
2182
2237
|
message: string;
|
|
@@ -2313,10 +2368,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2313
2368
|
simulation_transient_voltage_graph_id: string;
|
|
2314
2369
|
voltage_levels: number[];
|
|
2315
2370
|
name?: string | undefined;
|
|
2371
|
+
source_component_id?: string | undefined;
|
|
2316
2372
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
2317
|
-
|
|
2373
|
+
color?: string | undefined;
|
|
2318
2374
|
timestamps_ms?: number[] | undefined;
|
|
2319
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
2320
2375
|
} | {
|
|
2321
2376
|
type: "simulation_switch";
|
|
2322
2377
|
simulation_switch_id: string;
|
|
@@ -2329,9 +2384,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2329
2384
|
type: "simulation_voltage_probe";
|
|
2330
2385
|
simulation_voltage_probe_id: string;
|
|
2331
2386
|
name?: string | undefined;
|
|
2387
|
+
source_component_id?: string | undefined;
|
|
2332
2388
|
subcircuit_id?: string | undefined;
|
|
2333
2389
|
source_port_id?: string | undefined;
|
|
2334
2390
|
source_net_id?: string | undefined;
|
|
2391
|
+
color?: string | undefined;
|
|
2335
2392
|
} | {
|
|
2336
2393
|
message: string;
|
|
2337
2394
|
type: "simulation_unknown_experiment_error";
|
|
@@ -2635,6 +2692,18 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2635
2692
|
display_value?: string | undefined;
|
|
2636
2693
|
are_pins_interchangeable?: boolean | undefined;
|
|
2637
2694
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2695
|
+
} | {
|
|
2696
|
+
type: "source_component";
|
|
2697
|
+
name: string;
|
|
2698
|
+
source_component_id: string;
|
|
2699
|
+
ftype: "simple_voltage_probe";
|
|
2700
|
+
subcircuit_id?: string | undefined;
|
|
2701
|
+
source_group_id?: string | undefined;
|
|
2702
|
+
manufacturer_part_number?: string | undefined;
|
|
2703
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2704
|
+
display_value?: string | undefined;
|
|
2705
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
2706
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2638
2707
|
} | {
|
|
2639
2708
|
type: "source_project_metadata";
|
|
2640
2709
|
name?: string | undefined;
|
|
@@ -3021,6 +3090,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3021
3090
|
hole_diameter: number;
|
|
3022
3091
|
subcircuit_id?: string | undefined;
|
|
3023
3092
|
pcb_group_id?: string | undefined;
|
|
3093
|
+
soldermask_margin?: number | undefined;
|
|
3024
3094
|
} | {
|
|
3025
3095
|
x: number;
|
|
3026
3096
|
y: number;
|
|
@@ -3031,6 +3101,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3031
3101
|
hole_height: number;
|
|
3032
3102
|
subcircuit_id?: string | undefined;
|
|
3033
3103
|
pcb_group_id?: string | undefined;
|
|
3104
|
+
soldermask_margin?: number | undefined;
|
|
3034
3105
|
} | {
|
|
3035
3106
|
x: number;
|
|
3036
3107
|
y: number;
|
|
@@ -3041,6 +3112,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3041
3112
|
hole_height: number;
|
|
3042
3113
|
subcircuit_id?: string | undefined;
|
|
3043
3114
|
pcb_group_id?: string | undefined;
|
|
3115
|
+
soldermask_margin?: number | undefined;
|
|
3044
3116
|
} | {
|
|
3045
3117
|
x: number;
|
|
3046
3118
|
y: number;
|
|
@@ -3052,6 +3124,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3052
3124
|
ccw_rotation: number;
|
|
3053
3125
|
subcircuit_id?: string | undefined;
|
|
3054
3126
|
pcb_group_id?: string | undefined;
|
|
3127
|
+
soldermask_margin?: number | undefined;
|
|
3055
3128
|
} | {
|
|
3056
3129
|
x: number;
|
|
3057
3130
|
y: number;
|
|
@@ -3061,6 +3134,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3061
3134
|
hole_diameter: number;
|
|
3062
3135
|
subcircuit_id?: string | undefined;
|
|
3063
3136
|
pcb_group_id?: string | undefined;
|
|
3137
|
+
soldermask_margin?: number | undefined;
|
|
3064
3138
|
} | {
|
|
3065
3139
|
x: number;
|
|
3066
3140
|
y: number;
|
|
@@ -3071,6 +3145,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3071
3145
|
hole_height: number;
|
|
3072
3146
|
subcircuit_id?: string | undefined;
|
|
3073
3147
|
pcb_group_id?: string | undefined;
|
|
3148
|
+
soldermask_margin?: number | undefined;
|
|
3074
3149
|
} | {
|
|
3075
3150
|
message: string;
|
|
3076
3151
|
type: "pcb_missing_footprint_error";
|
|
@@ -3120,6 +3195,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3120
3195
|
pcb_component_id?: string | undefined;
|
|
3121
3196
|
subcircuit_id?: string | undefined;
|
|
3122
3197
|
pcb_group_id?: string | undefined;
|
|
3198
|
+
soldermask_margin?: number | undefined;
|
|
3123
3199
|
port_hints?: string[] | undefined;
|
|
3124
3200
|
pcb_port_id?: string | undefined;
|
|
3125
3201
|
} | {
|
|
@@ -3137,6 +3213,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3137
3213
|
pcb_component_id?: string | undefined;
|
|
3138
3214
|
subcircuit_id?: string | undefined;
|
|
3139
3215
|
pcb_group_id?: string | undefined;
|
|
3216
|
+
soldermask_margin?: number | undefined;
|
|
3140
3217
|
port_hints?: string[] | undefined;
|
|
3141
3218
|
pcb_port_id?: string | undefined;
|
|
3142
3219
|
} | {
|
|
@@ -3156,6 +3233,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3156
3233
|
pcb_component_id?: string | undefined;
|
|
3157
3234
|
subcircuit_id?: string | undefined;
|
|
3158
3235
|
pcb_group_id?: string | undefined;
|
|
3236
|
+
soldermask_margin?: number | undefined;
|
|
3159
3237
|
port_hints?: string[] | undefined;
|
|
3160
3238
|
pcb_port_id?: string | undefined;
|
|
3161
3239
|
rect_border_radius?: number | undefined;
|
|
@@ -3177,6 +3255,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3177
3255
|
pcb_component_id?: string | undefined;
|
|
3178
3256
|
subcircuit_id?: string | undefined;
|
|
3179
3257
|
pcb_group_id?: string | undefined;
|
|
3258
|
+
soldermask_margin?: number | undefined;
|
|
3180
3259
|
port_hints?: string[] | undefined;
|
|
3181
3260
|
pcb_port_id?: string | undefined;
|
|
3182
3261
|
rect_border_radius?: number | undefined;
|
|
@@ -3200,6 +3279,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3200
3279
|
pcb_component_id?: string | undefined;
|
|
3201
3280
|
subcircuit_id?: string | undefined;
|
|
3202
3281
|
pcb_group_id?: string | undefined;
|
|
3282
|
+
soldermask_margin?: number | undefined;
|
|
3203
3283
|
port_hints?: string[] | undefined;
|
|
3204
3284
|
pcb_port_id?: string | undefined;
|
|
3205
3285
|
rect_border_radius?: number | undefined;
|
|
@@ -3221,6 +3301,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3221
3301
|
subcircuit_id?: string | undefined;
|
|
3222
3302
|
pcb_group_id?: string | undefined;
|
|
3223
3303
|
hole_diameter?: number | undefined;
|
|
3304
|
+
soldermask_margin?: number | undefined;
|
|
3224
3305
|
hole_width?: number | undefined;
|
|
3225
3306
|
hole_height?: number | undefined;
|
|
3226
3307
|
port_hints?: string[] | undefined;
|
|
@@ -3339,6 +3420,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3339
3420
|
pcb_component_id?: string | undefined;
|
|
3340
3421
|
subcircuit_id?: string | undefined;
|
|
3341
3422
|
pcb_group_id?: string | undefined;
|
|
3423
|
+
soldermask_margin?: number | undefined;
|
|
3342
3424
|
port_hints?: string[] | undefined;
|
|
3343
3425
|
pcb_port_id?: string | undefined;
|
|
3344
3426
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3354,6 +3436,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3354
3436
|
pcb_component_id?: string | undefined;
|
|
3355
3437
|
subcircuit_id?: string | undefined;
|
|
3356
3438
|
pcb_group_id?: string | undefined;
|
|
3439
|
+
soldermask_margin?: number | undefined;
|
|
3357
3440
|
port_hints?: string[] | undefined;
|
|
3358
3441
|
pcb_port_id?: string | undefined;
|
|
3359
3442
|
rect_border_radius?: number | undefined;
|
|
@@ -3372,6 +3455,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3372
3455
|
pcb_component_id?: string | undefined;
|
|
3373
3456
|
subcircuit_id?: string | undefined;
|
|
3374
3457
|
pcb_group_id?: string | undefined;
|
|
3458
|
+
soldermask_margin?: number | undefined;
|
|
3375
3459
|
port_hints?: string[] | undefined;
|
|
3376
3460
|
pcb_port_id?: string | undefined;
|
|
3377
3461
|
rect_border_radius?: number | undefined;
|
|
@@ -3391,6 +3475,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3391
3475
|
pcb_component_id?: string | undefined;
|
|
3392
3476
|
subcircuit_id?: string | undefined;
|
|
3393
3477
|
pcb_group_id?: string | undefined;
|
|
3478
|
+
soldermask_margin?: number | undefined;
|
|
3394
3479
|
port_hints?: string[] | undefined;
|
|
3395
3480
|
pcb_port_id?: string | undefined;
|
|
3396
3481
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3407,6 +3492,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3407
3492
|
pcb_component_id?: string | undefined;
|
|
3408
3493
|
subcircuit_id?: string | undefined;
|
|
3409
3494
|
pcb_group_id?: string | undefined;
|
|
3495
|
+
soldermask_margin?: number | undefined;
|
|
3410
3496
|
port_hints?: string[] | undefined;
|
|
3411
3497
|
pcb_port_id?: string | undefined;
|
|
3412
3498
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3422,6 +3508,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3422
3508
|
pcb_component_id?: string | undefined;
|
|
3423
3509
|
subcircuit_id?: string | undefined;
|
|
3424
3510
|
pcb_group_id?: string | undefined;
|
|
3511
|
+
soldermask_margin?: number | undefined;
|
|
3425
3512
|
port_hints?: string[] | undefined;
|
|
3426
3513
|
pcb_port_id?: string | undefined;
|
|
3427
3514
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3944,6 +4031,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3944
4031
|
rotation?: number | undefined;
|
|
3945
4032
|
subcircuit_id?: string | undefined;
|
|
3946
4033
|
pcb_group_id?: string | undefined;
|
|
4034
|
+
pcb_board_id?: string | undefined;
|
|
4035
|
+
pcb_panel_id?: string | undefined;
|
|
3947
4036
|
} | {
|
|
3948
4037
|
type: "pcb_cutout";
|
|
3949
4038
|
center: {
|
|
@@ -3955,6 +4044,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3955
4044
|
pcb_cutout_id: string;
|
|
3956
4045
|
subcircuit_id?: string | undefined;
|
|
3957
4046
|
pcb_group_id?: string | undefined;
|
|
4047
|
+
pcb_board_id?: string | undefined;
|
|
4048
|
+
pcb_panel_id?: string | undefined;
|
|
3958
4049
|
} | {
|
|
3959
4050
|
type: "pcb_cutout";
|
|
3960
4051
|
shape: "polygon";
|
|
@@ -3965,6 +4056,24 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3965
4056
|
pcb_cutout_id: string;
|
|
3966
4057
|
subcircuit_id?: string | undefined;
|
|
3967
4058
|
pcb_group_id?: string | undefined;
|
|
4059
|
+
pcb_board_id?: string | undefined;
|
|
4060
|
+
pcb_panel_id?: string | undefined;
|
|
4061
|
+
} | {
|
|
4062
|
+
type: "pcb_cutout";
|
|
4063
|
+
shape: "path";
|
|
4064
|
+
route: {
|
|
4065
|
+
x: number;
|
|
4066
|
+
y: number;
|
|
4067
|
+
}[];
|
|
4068
|
+
pcb_cutout_id: string;
|
|
4069
|
+
slot_width: number;
|
|
4070
|
+
subcircuit_id?: string | undefined;
|
|
4071
|
+
pcb_group_id?: string | undefined;
|
|
4072
|
+
pcb_board_id?: string | undefined;
|
|
4073
|
+
pcb_panel_id?: string | undefined;
|
|
4074
|
+
slot_length?: number | undefined;
|
|
4075
|
+
space_between_slots?: number | undefined;
|
|
4076
|
+
slot_corner_radius?: number | undefined;
|
|
3968
4077
|
} | {
|
|
3969
4078
|
type: "pcb_ground_plane";
|
|
3970
4079
|
source_net_id: string;
|
|
@@ -4379,7 +4488,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4379
4488
|
y: number;
|
|
4380
4489
|
};
|
|
4381
4490
|
schematic_voltage_probe_id: string;
|
|
4491
|
+
name?: string | undefined;
|
|
4492
|
+
source_component_id?: string | undefined;
|
|
4382
4493
|
subcircuit_id?: string | undefined;
|
|
4494
|
+
color?: string | undefined;
|
|
4383
4495
|
voltage?: number | undefined;
|
|
4384
4496
|
} | {
|
|
4385
4497
|
message: string;
|
|
@@ -4516,10 +4628,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4516
4628
|
simulation_transient_voltage_graph_id: string;
|
|
4517
4629
|
voltage_levels: number[];
|
|
4518
4630
|
name?: string | undefined;
|
|
4631
|
+
source_component_id?: string | undefined;
|
|
4519
4632
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4520
|
-
|
|
4633
|
+
color?: string | undefined;
|
|
4521
4634
|
timestamps_ms?: number[] | undefined;
|
|
4522
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
4523
4635
|
} | {
|
|
4524
4636
|
type: "simulation_switch";
|
|
4525
4637
|
simulation_switch_id: string;
|
|
@@ -4532,9 +4644,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4532
4644
|
type: "simulation_voltage_probe";
|
|
4533
4645
|
simulation_voltage_probe_id: string;
|
|
4534
4646
|
name?: string | undefined;
|
|
4647
|
+
source_component_id?: string | undefined;
|
|
4535
4648
|
subcircuit_id?: string | undefined;
|
|
4536
4649
|
source_port_id?: string | undefined;
|
|
4537
4650
|
source_net_id?: string | undefined;
|
|
4651
|
+
color?: string | undefined;
|
|
4538
4652
|
} | {
|
|
4539
4653
|
message: string;
|
|
4540
4654
|
type: "simulation_unknown_experiment_error";
|