@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/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,9 @@ 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
|
+
corner_radius?: number | undefined;
|
|
1775
|
+
pcb_board_id?: string | undefined;
|
|
1776
|
+
pcb_panel_id?: string | undefined;
|
|
1744
1777
|
} | {
|
|
1745
1778
|
type: "pcb_cutout";
|
|
1746
1779
|
center: {
|
|
@@ -1752,6 +1785,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1752
1785
|
pcb_cutout_id: string;
|
|
1753
1786
|
subcircuit_id?: string | undefined;
|
|
1754
1787
|
pcb_group_id?: string | undefined;
|
|
1788
|
+
pcb_board_id?: string | undefined;
|
|
1789
|
+
pcb_panel_id?: string | undefined;
|
|
1755
1790
|
} | {
|
|
1756
1791
|
type: "pcb_cutout";
|
|
1757
1792
|
shape: "polygon";
|
|
@@ -1762,6 +1797,24 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1762
1797
|
pcb_cutout_id: string;
|
|
1763
1798
|
subcircuit_id?: string | undefined;
|
|
1764
1799
|
pcb_group_id?: string | undefined;
|
|
1800
|
+
pcb_board_id?: string | undefined;
|
|
1801
|
+
pcb_panel_id?: string | undefined;
|
|
1802
|
+
} | {
|
|
1803
|
+
type: "pcb_cutout";
|
|
1804
|
+
shape: "path";
|
|
1805
|
+
route: {
|
|
1806
|
+
x: number;
|
|
1807
|
+
y: number;
|
|
1808
|
+
}[];
|
|
1809
|
+
pcb_cutout_id: string;
|
|
1810
|
+
slot_width: number;
|
|
1811
|
+
subcircuit_id?: string | undefined;
|
|
1812
|
+
pcb_group_id?: string | undefined;
|
|
1813
|
+
pcb_board_id?: string | undefined;
|
|
1814
|
+
pcb_panel_id?: string | undefined;
|
|
1815
|
+
slot_length?: number | undefined;
|
|
1816
|
+
space_between_slots?: number | undefined;
|
|
1817
|
+
slot_corner_radius?: number | undefined;
|
|
1765
1818
|
} | {
|
|
1766
1819
|
type: "pcb_ground_plane";
|
|
1767
1820
|
source_net_id: string;
|
|
@@ -2176,7 +2229,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2176
2229
|
y: number;
|
|
2177
2230
|
};
|
|
2178
2231
|
schematic_voltage_probe_id: string;
|
|
2232
|
+
name?: string | undefined;
|
|
2233
|
+
source_component_id?: string | undefined;
|
|
2179
2234
|
subcircuit_id?: string | undefined;
|
|
2235
|
+
color?: string | undefined;
|
|
2180
2236
|
voltage?: number | undefined;
|
|
2181
2237
|
} | {
|
|
2182
2238
|
message: string;
|
|
@@ -2313,10 +2369,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2313
2369
|
simulation_transient_voltage_graph_id: string;
|
|
2314
2370
|
voltage_levels: number[];
|
|
2315
2371
|
name?: string | undefined;
|
|
2372
|
+
source_component_id?: string | undefined;
|
|
2316
2373
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
2317
|
-
|
|
2374
|
+
color?: string | undefined;
|
|
2318
2375
|
timestamps_ms?: number[] | undefined;
|
|
2319
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
2320
2376
|
} | {
|
|
2321
2377
|
type: "simulation_switch";
|
|
2322
2378
|
simulation_switch_id: string;
|
|
@@ -2329,9 +2385,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2329
2385
|
type: "simulation_voltage_probe";
|
|
2330
2386
|
simulation_voltage_probe_id: string;
|
|
2331
2387
|
name?: string | undefined;
|
|
2388
|
+
source_component_id?: string | undefined;
|
|
2332
2389
|
subcircuit_id?: string | undefined;
|
|
2333
2390
|
source_port_id?: string | undefined;
|
|
2334
2391
|
source_net_id?: string | undefined;
|
|
2392
|
+
color?: string | undefined;
|
|
2335
2393
|
} | {
|
|
2336
2394
|
message: string;
|
|
2337
2395
|
type: "simulation_unknown_experiment_error";
|
|
@@ -2635,6 +2693,18 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2635
2693
|
display_value?: string | undefined;
|
|
2636
2694
|
are_pins_interchangeable?: boolean | undefined;
|
|
2637
2695
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2696
|
+
} | {
|
|
2697
|
+
type: "source_component";
|
|
2698
|
+
name: string;
|
|
2699
|
+
source_component_id: string;
|
|
2700
|
+
ftype: "simple_voltage_probe";
|
|
2701
|
+
subcircuit_id?: string | undefined;
|
|
2702
|
+
source_group_id?: string | undefined;
|
|
2703
|
+
manufacturer_part_number?: string | undefined;
|
|
2704
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2705
|
+
display_value?: string | undefined;
|
|
2706
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
2707
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2638
2708
|
} | {
|
|
2639
2709
|
type: "source_project_metadata";
|
|
2640
2710
|
name?: string | undefined;
|
|
@@ -3021,6 +3091,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3021
3091
|
hole_diameter: number;
|
|
3022
3092
|
subcircuit_id?: string | undefined;
|
|
3023
3093
|
pcb_group_id?: string | undefined;
|
|
3094
|
+
soldermask_margin?: number | undefined;
|
|
3024
3095
|
} | {
|
|
3025
3096
|
x: number;
|
|
3026
3097
|
y: number;
|
|
@@ -3031,6 +3102,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3031
3102
|
hole_height: number;
|
|
3032
3103
|
subcircuit_id?: string | undefined;
|
|
3033
3104
|
pcb_group_id?: string | undefined;
|
|
3105
|
+
soldermask_margin?: number | undefined;
|
|
3034
3106
|
} | {
|
|
3035
3107
|
x: number;
|
|
3036
3108
|
y: number;
|
|
@@ -3041,6 +3113,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3041
3113
|
hole_height: number;
|
|
3042
3114
|
subcircuit_id?: string | undefined;
|
|
3043
3115
|
pcb_group_id?: string | undefined;
|
|
3116
|
+
soldermask_margin?: number | undefined;
|
|
3044
3117
|
} | {
|
|
3045
3118
|
x: number;
|
|
3046
3119
|
y: number;
|
|
@@ -3052,6 +3125,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3052
3125
|
ccw_rotation: number;
|
|
3053
3126
|
subcircuit_id?: string | undefined;
|
|
3054
3127
|
pcb_group_id?: string | undefined;
|
|
3128
|
+
soldermask_margin?: number | undefined;
|
|
3055
3129
|
} | {
|
|
3056
3130
|
x: number;
|
|
3057
3131
|
y: number;
|
|
@@ -3061,6 +3135,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3061
3135
|
hole_diameter: number;
|
|
3062
3136
|
subcircuit_id?: string | undefined;
|
|
3063
3137
|
pcb_group_id?: string | undefined;
|
|
3138
|
+
soldermask_margin?: number | undefined;
|
|
3064
3139
|
} | {
|
|
3065
3140
|
x: number;
|
|
3066
3141
|
y: number;
|
|
@@ -3071,6 +3146,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3071
3146
|
hole_height: number;
|
|
3072
3147
|
subcircuit_id?: string | undefined;
|
|
3073
3148
|
pcb_group_id?: string | undefined;
|
|
3149
|
+
soldermask_margin?: number | undefined;
|
|
3074
3150
|
} | {
|
|
3075
3151
|
message: string;
|
|
3076
3152
|
type: "pcb_missing_footprint_error";
|
|
@@ -3120,6 +3196,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3120
3196
|
pcb_component_id?: string | undefined;
|
|
3121
3197
|
subcircuit_id?: string | undefined;
|
|
3122
3198
|
pcb_group_id?: string | undefined;
|
|
3199
|
+
soldermask_margin?: number | undefined;
|
|
3123
3200
|
port_hints?: string[] | undefined;
|
|
3124
3201
|
pcb_port_id?: string | undefined;
|
|
3125
3202
|
} | {
|
|
@@ -3137,6 +3214,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3137
3214
|
pcb_component_id?: string | undefined;
|
|
3138
3215
|
subcircuit_id?: string | undefined;
|
|
3139
3216
|
pcb_group_id?: string | undefined;
|
|
3217
|
+
soldermask_margin?: number | undefined;
|
|
3140
3218
|
port_hints?: string[] | undefined;
|
|
3141
3219
|
pcb_port_id?: string | undefined;
|
|
3142
3220
|
} | {
|
|
@@ -3156,6 +3234,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3156
3234
|
pcb_component_id?: string | undefined;
|
|
3157
3235
|
subcircuit_id?: string | undefined;
|
|
3158
3236
|
pcb_group_id?: string | undefined;
|
|
3237
|
+
soldermask_margin?: number | undefined;
|
|
3159
3238
|
port_hints?: string[] | undefined;
|
|
3160
3239
|
pcb_port_id?: string | undefined;
|
|
3161
3240
|
rect_border_radius?: number | undefined;
|
|
@@ -3177,6 +3256,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3177
3256
|
pcb_component_id?: string | undefined;
|
|
3178
3257
|
subcircuit_id?: string | undefined;
|
|
3179
3258
|
pcb_group_id?: string | undefined;
|
|
3259
|
+
soldermask_margin?: number | undefined;
|
|
3180
3260
|
port_hints?: string[] | undefined;
|
|
3181
3261
|
pcb_port_id?: string | undefined;
|
|
3182
3262
|
rect_border_radius?: number | undefined;
|
|
@@ -3200,6 +3280,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3200
3280
|
pcb_component_id?: string | undefined;
|
|
3201
3281
|
subcircuit_id?: string | undefined;
|
|
3202
3282
|
pcb_group_id?: string | undefined;
|
|
3283
|
+
soldermask_margin?: number | undefined;
|
|
3203
3284
|
port_hints?: string[] | undefined;
|
|
3204
3285
|
pcb_port_id?: string | undefined;
|
|
3205
3286
|
rect_border_radius?: number | undefined;
|
|
@@ -3221,6 +3302,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3221
3302
|
subcircuit_id?: string | undefined;
|
|
3222
3303
|
pcb_group_id?: string | undefined;
|
|
3223
3304
|
hole_diameter?: number | undefined;
|
|
3305
|
+
soldermask_margin?: number | undefined;
|
|
3224
3306
|
hole_width?: number | undefined;
|
|
3225
3307
|
hole_height?: number | undefined;
|
|
3226
3308
|
port_hints?: string[] | undefined;
|
|
@@ -3339,6 +3421,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3339
3421
|
pcb_component_id?: string | undefined;
|
|
3340
3422
|
subcircuit_id?: string | undefined;
|
|
3341
3423
|
pcb_group_id?: string | undefined;
|
|
3424
|
+
soldermask_margin?: number | undefined;
|
|
3342
3425
|
port_hints?: string[] | undefined;
|
|
3343
3426
|
pcb_port_id?: string | undefined;
|
|
3344
3427
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3354,6 +3437,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3354
3437
|
pcb_component_id?: string | undefined;
|
|
3355
3438
|
subcircuit_id?: string | undefined;
|
|
3356
3439
|
pcb_group_id?: string | undefined;
|
|
3440
|
+
soldermask_margin?: number | undefined;
|
|
3357
3441
|
port_hints?: string[] | undefined;
|
|
3358
3442
|
pcb_port_id?: string | undefined;
|
|
3359
3443
|
rect_border_radius?: number | undefined;
|
|
@@ -3372,6 +3456,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3372
3456
|
pcb_component_id?: string | undefined;
|
|
3373
3457
|
subcircuit_id?: string | undefined;
|
|
3374
3458
|
pcb_group_id?: string | undefined;
|
|
3459
|
+
soldermask_margin?: number | undefined;
|
|
3375
3460
|
port_hints?: string[] | undefined;
|
|
3376
3461
|
pcb_port_id?: string | undefined;
|
|
3377
3462
|
rect_border_radius?: number | undefined;
|
|
@@ -3391,6 +3476,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3391
3476
|
pcb_component_id?: string | undefined;
|
|
3392
3477
|
subcircuit_id?: string | undefined;
|
|
3393
3478
|
pcb_group_id?: string | undefined;
|
|
3479
|
+
soldermask_margin?: number | undefined;
|
|
3394
3480
|
port_hints?: string[] | undefined;
|
|
3395
3481
|
pcb_port_id?: string | undefined;
|
|
3396
3482
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3407,6 +3493,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3407
3493
|
pcb_component_id?: string | undefined;
|
|
3408
3494
|
subcircuit_id?: string | undefined;
|
|
3409
3495
|
pcb_group_id?: string | undefined;
|
|
3496
|
+
soldermask_margin?: number | undefined;
|
|
3410
3497
|
port_hints?: string[] | undefined;
|
|
3411
3498
|
pcb_port_id?: string | undefined;
|
|
3412
3499
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3422,6 +3509,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3422
3509
|
pcb_component_id?: string | undefined;
|
|
3423
3510
|
subcircuit_id?: string | undefined;
|
|
3424
3511
|
pcb_group_id?: string | undefined;
|
|
3512
|
+
soldermask_margin?: number | undefined;
|
|
3425
3513
|
port_hints?: string[] | undefined;
|
|
3426
3514
|
pcb_port_id?: string | undefined;
|
|
3427
3515
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3944,6 +4032,9 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3944
4032
|
rotation?: number | undefined;
|
|
3945
4033
|
subcircuit_id?: string | undefined;
|
|
3946
4034
|
pcb_group_id?: string | undefined;
|
|
4035
|
+
corner_radius?: number | undefined;
|
|
4036
|
+
pcb_board_id?: string | undefined;
|
|
4037
|
+
pcb_panel_id?: string | undefined;
|
|
3947
4038
|
} | {
|
|
3948
4039
|
type: "pcb_cutout";
|
|
3949
4040
|
center: {
|
|
@@ -3955,6 +4046,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3955
4046
|
pcb_cutout_id: string;
|
|
3956
4047
|
subcircuit_id?: string | undefined;
|
|
3957
4048
|
pcb_group_id?: string | undefined;
|
|
4049
|
+
pcb_board_id?: string | undefined;
|
|
4050
|
+
pcb_panel_id?: string | undefined;
|
|
3958
4051
|
} | {
|
|
3959
4052
|
type: "pcb_cutout";
|
|
3960
4053
|
shape: "polygon";
|
|
@@ -3965,6 +4058,24 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3965
4058
|
pcb_cutout_id: string;
|
|
3966
4059
|
subcircuit_id?: string | undefined;
|
|
3967
4060
|
pcb_group_id?: string | undefined;
|
|
4061
|
+
pcb_board_id?: string | undefined;
|
|
4062
|
+
pcb_panel_id?: string | undefined;
|
|
4063
|
+
} | {
|
|
4064
|
+
type: "pcb_cutout";
|
|
4065
|
+
shape: "path";
|
|
4066
|
+
route: {
|
|
4067
|
+
x: number;
|
|
4068
|
+
y: number;
|
|
4069
|
+
}[];
|
|
4070
|
+
pcb_cutout_id: string;
|
|
4071
|
+
slot_width: number;
|
|
4072
|
+
subcircuit_id?: string | undefined;
|
|
4073
|
+
pcb_group_id?: string | undefined;
|
|
4074
|
+
pcb_board_id?: string | undefined;
|
|
4075
|
+
pcb_panel_id?: string | undefined;
|
|
4076
|
+
slot_length?: number | undefined;
|
|
4077
|
+
space_between_slots?: number | undefined;
|
|
4078
|
+
slot_corner_radius?: number | undefined;
|
|
3968
4079
|
} | {
|
|
3969
4080
|
type: "pcb_ground_plane";
|
|
3970
4081
|
source_net_id: string;
|
|
@@ -4379,7 +4490,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4379
4490
|
y: number;
|
|
4380
4491
|
};
|
|
4381
4492
|
schematic_voltage_probe_id: string;
|
|
4493
|
+
name?: string | undefined;
|
|
4494
|
+
source_component_id?: string | undefined;
|
|
4382
4495
|
subcircuit_id?: string | undefined;
|
|
4496
|
+
color?: string | undefined;
|
|
4383
4497
|
voltage?: number | undefined;
|
|
4384
4498
|
} | {
|
|
4385
4499
|
message: string;
|
|
@@ -4516,10 +4630,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4516
4630
|
simulation_transient_voltage_graph_id: string;
|
|
4517
4631
|
voltage_levels: number[];
|
|
4518
4632
|
name?: string | undefined;
|
|
4633
|
+
source_component_id?: string | undefined;
|
|
4519
4634
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4520
|
-
|
|
4635
|
+
color?: string | undefined;
|
|
4521
4636
|
timestamps_ms?: number[] | undefined;
|
|
4522
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
4523
4637
|
} | {
|
|
4524
4638
|
type: "simulation_switch";
|
|
4525
4639
|
simulation_switch_id: string;
|
|
@@ -4532,9 +4646,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4532
4646
|
type: "simulation_voltage_probe";
|
|
4533
4647
|
simulation_voltage_probe_id: string;
|
|
4534
4648
|
name?: string | undefined;
|
|
4649
|
+
source_component_id?: string | undefined;
|
|
4535
4650
|
subcircuit_id?: string | undefined;
|
|
4536
4651
|
source_port_id?: string | undefined;
|
|
4537
4652
|
source_net_id?: string | undefined;
|
|
4653
|
+
color?: string | undefined;
|
|
4538
4654
|
} | {
|
|
4539
4655
|
message: string;
|
|
4540
4656
|
type: "simulation_unknown_experiment_error";
|