@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/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,8 @@ 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
|
+
pcb_board_id?: string | undefined;
|
|
1759
|
+
pcb_panel_id?: string | undefined;
|
|
1728
1760
|
} | {
|
|
1729
1761
|
type: "pcb_cutout";
|
|
1730
1762
|
center: {
|
|
@@ -1736,6 +1768,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1736
1768
|
pcb_cutout_id: string;
|
|
1737
1769
|
subcircuit_id?: string | undefined;
|
|
1738
1770
|
pcb_group_id?: string | undefined;
|
|
1771
|
+
pcb_board_id?: string | undefined;
|
|
1772
|
+
pcb_panel_id?: string | undefined;
|
|
1739
1773
|
} | {
|
|
1740
1774
|
type: "pcb_cutout";
|
|
1741
1775
|
shape: "polygon";
|
|
@@ -1746,6 +1780,24 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1746
1780
|
pcb_cutout_id: string;
|
|
1747
1781
|
subcircuit_id?: string | undefined;
|
|
1748
1782
|
pcb_group_id?: string | undefined;
|
|
1783
|
+
pcb_board_id?: string | undefined;
|
|
1784
|
+
pcb_panel_id?: string | undefined;
|
|
1785
|
+
} | {
|
|
1786
|
+
type: "pcb_cutout";
|
|
1787
|
+
shape: "path";
|
|
1788
|
+
route: {
|
|
1789
|
+
x: number;
|
|
1790
|
+
y: number;
|
|
1791
|
+
}[];
|
|
1792
|
+
pcb_cutout_id: string;
|
|
1793
|
+
slot_width: number;
|
|
1794
|
+
subcircuit_id?: string | undefined;
|
|
1795
|
+
pcb_group_id?: string | undefined;
|
|
1796
|
+
pcb_board_id?: string | undefined;
|
|
1797
|
+
pcb_panel_id?: string | undefined;
|
|
1798
|
+
slot_length?: number | undefined;
|
|
1799
|
+
space_between_slots?: number | undefined;
|
|
1800
|
+
slot_corner_radius?: number | undefined;
|
|
1749
1801
|
} | {
|
|
1750
1802
|
type: "pcb_ground_plane";
|
|
1751
1803
|
source_net_id: string;
|
|
@@ -2160,7 +2212,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2160
2212
|
y: number;
|
|
2161
2213
|
};
|
|
2162
2214
|
schematic_voltage_probe_id: string;
|
|
2215
|
+
name?: string | undefined;
|
|
2216
|
+
source_component_id?: string | undefined;
|
|
2163
2217
|
subcircuit_id?: string | undefined;
|
|
2218
|
+
color?: string | undefined;
|
|
2164
2219
|
voltage?: number | undefined;
|
|
2165
2220
|
} | {
|
|
2166
2221
|
message: string;
|
|
@@ -2297,10 +2352,10 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2297
2352
|
simulation_transient_voltage_graph_id: string;
|
|
2298
2353
|
voltage_levels: number[];
|
|
2299
2354
|
name?: string | undefined;
|
|
2355
|
+
source_component_id?: string | undefined;
|
|
2300
2356
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
2301
|
-
|
|
2357
|
+
color?: string | undefined;
|
|
2302
2358
|
timestamps_ms?: number[] | undefined;
|
|
2303
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
2304
2359
|
} | {
|
|
2305
2360
|
type: "simulation_switch";
|
|
2306
2361
|
simulation_switch_id: string;
|
|
@@ -2313,9 +2368,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2313
2368
|
type: "simulation_voltage_probe";
|
|
2314
2369
|
simulation_voltage_probe_id: string;
|
|
2315
2370
|
name?: string | undefined;
|
|
2371
|
+
source_component_id?: string | undefined;
|
|
2316
2372
|
subcircuit_id?: string | undefined;
|
|
2317
2373
|
source_port_id?: string | undefined;
|
|
2318
2374
|
source_net_id?: string | undefined;
|
|
2375
|
+
color?: string | undefined;
|
|
2319
2376
|
} | {
|
|
2320
2377
|
message: string;
|
|
2321
2378
|
type: "simulation_unknown_experiment_error";
|
|
@@ -2619,6 +2676,18 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2619
2676
|
display_value?: string | undefined;
|
|
2620
2677
|
are_pins_interchangeable?: boolean | undefined;
|
|
2621
2678
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2679
|
+
} | {
|
|
2680
|
+
type: "source_component";
|
|
2681
|
+
name: string;
|
|
2682
|
+
source_component_id: string;
|
|
2683
|
+
ftype: "simple_voltage_probe";
|
|
2684
|
+
subcircuit_id?: string | undefined;
|
|
2685
|
+
source_group_id?: string | undefined;
|
|
2686
|
+
manufacturer_part_number?: string | undefined;
|
|
2687
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
2688
|
+
display_value?: string | undefined;
|
|
2689
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
2690
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2622
2691
|
} | {
|
|
2623
2692
|
type: "source_project_metadata";
|
|
2624
2693
|
name?: string | undefined;
|
|
@@ -3005,6 +3074,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3005
3074
|
hole_diameter: number;
|
|
3006
3075
|
subcircuit_id?: string | undefined;
|
|
3007
3076
|
pcb_group_id?: string | undefined;
|
|
3077
|
+
soldermask_margin?: number | undefined;
|
|
3008
3078
|
} | {
|
|
3009
3079
|
x: number;
|
|
3010
3080
|
y: number;
|
|
@@ -3015,6 +3085,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3015
3085
|
hole_height: number;
|
|
3016
3086
|
subcircuit_id?: string | undefined;
|
|
3017
3087
|
pcb_group_id?: string | undefined;
|
|
3088
|
+
soldermask_margin?: number | undefined;
|
|
3018
3089
|
} | {
|
|
3019
3090
|
x: number;
|
|
3020
3091
|
y: number;
|
|
@@ -3025,6 +3096,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3025
3096
|
hole_height: number;
|
|
3026
3097
|
subcircuit_id?: string | undefined;
|
|
3027
3098
|
pcb_group_id?: string | undefined;
|
|
3099
|
+
soldermask_margin?: number | undefined;
|
|
3028
3100
|
} | {
|
|
3029
3101
|
x: number;
|
|
3030
3102
|
y: number;
|
|
@@ -3036,6 +3108,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3036
3108
|
ccw_rotation: number;
|
|
3037
3109
|
subcircuit_id?: string | undefined;
|
|
3038
3110
|
pcb_group_id?: string | undefined;
|
|
3111
|
+
soldermask_margin?: number | undefined;
|
|
3039
3112
|
} | {
|
|
3040
3113
|
x: number;
|
|
3041
3114
|
y: number;
|
|
@@ -3045,6 +3118,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3045
3118
|
hole_diameter: number;
|
|
3046
3119
|
subcircuit_id?: string | undefined;
|
|
3047
3120
|
pcb_group_id?: string | undefined;
|
|
3121
|
+
soldermask_margin?: number | undefined;
|
|
3048
3122
|
} | {
|
|
3049
3123
|
x: number;
|
|
3050
3124
|
y: number;
|
|
@@ -3055,6 +3129,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3055
3129
|
hole_height: number;
|
|
3056
3130
|
subcircuit_id?: string | undefined;
|
|
3057
3131
|
pcb_group_id?: string | undefined;
|
|
3132
|
+
soldermask_margin?: number | undefined;
|
|
3058
3133
|
} | {
|
|
3059
3134
|
message: string;
|
|
3060
3135
|
type: "pcb_missing_footprint_error";
|
|
@@ -3104,6 +3179,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3104
3179
|
pcb_component_id?: string | undefined;
|
|
3105
3180
|
subcircuit_id?: string | undefined;
|
|
3106
3181
|
pcb_group_id?: string | undefined;
|
|
3182
|
+
soldermask_margin?: number | undefined;
|
|
3107
3183
|
port_hints?: string[] | undefined;
|
|
3108
3184
|
pcb_port_id?: string | undefined;
|
|
3109
3185
|
} | {
|
|
@@ -3121,6 +3197,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3121
3197
|
pcb_component_id?: string | undefined;
|
|
3122
3198
|
subcircuit_id?: string | undefined;
|
|
3123
3199
|
pcb_group_id?: string | undefined;
|
|
3200
|
+
soldermask_margin?: number | undefined;
|
|
3124
3201
|
port_hints?: string[] | undefined;
|
|
3125
3202
|
pcb_port_id?: string | undefined;
|
|
3126
3203
|
} | {
|
|
@@ -3140,6 +3217,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3140
3217
|
pcb_component_id?: string | undefined;
|
|
3141
3218
|
subcircuit_id?: string | undefined;
|
|
3142
3219
|
pcb_group_id?: string | undefined;
|
|
3220
|
+
soldermask_margin?: number | undefined;
|
|
3143
3221
|
port_hints?: string[] | undefined;
|
|
3144
3222
|
pcb_port_id?: string | undefined;
|
|
3145
3223
|
rect_border_radius?: number | undefined;
|
|
@@ -3161,6 +3239,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3161
3239
|
pcb_component_id?: string | undefined;
|
|
3162
3240
|
subcircuit_id?: string | undefined;
|
|
3163
3241
|
pcb_group_id?: string | undefined;
|
|
3242
|
+
soldermask_margin?: number | undefined;
|
|
3164
3243
|
port_hints?: string[] | undefined;
|
|
3165
3244
|
pcb_port_id?: string | undefined;
|
|
3166
3245
|
rect_border_radius?: number | undefined;
|
|
@@ -3184,6 +3263,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3184
3263
|
pcb_component_id?: string | undefined;
|
|
3185
3264
|
subcircuit_id?: string | undefined;
|
|
3186
3265
|
pcb_group_id?: string | undefined;
|
|
3266
|
+
soldermask_margin?: number | undefined;
|
|
3187
3267
|
port_hints?: string[] | undefined;
|
|
3188
3268
|
pcb_port_id?: string | undefined;
|
|
3189
3269
|
rect_border_radius?: number | undefined;
|
|
@@ -3205,6 +3285,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3205
3285
|
subcircuit_id?: string | undefined;
|
|
3206
3286
|
pcb_group_id?: string | undefined;
|
|
3207
3287
|
hole_diameter?: number | undefined;
|
|
3288
|
+
soldermask_margin?: number | undefined;
|
|
3208
3289
|
hole_width?: number | undefined;
|
|
3209
3290
|
hole_height?: number | undefined;
|
|
3210
3291
|
port_hints?: string[] | undefined;
|
|
@@ -3323,6 +3404,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3323
3404
|
pcb_component_id?: string | undefined;
|
|
3324
3405
|
subcircuit_id?: string | undefined;
|
|
3325
3406
|
pcb_group_id?: string | undefined;
|
|
3407
|
+
soldermask_margin?: number | undefined;
|
|
3326
3408
|
port_hints?: string[] | undefined;
|
|
3327
3409
|
pcb_port_id?: string | undefined;
|
|
3328
3410
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3338,6 +3420,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3338
3420
|
pcb_component_id?: string | undefined;
|
|
3339
3421
|
subcircuit_id?: string | undefined;
|
|
3340
3422
|
pcb_group_id?: string | undefined;
|
|
3423
|
+
soldermask_margin?: number | undefined;
|
|
3341
3424
|
port_hints?: string[] | undefined;
|
|
3342
3425
|
pcb_port_id?: string | undefined;
|
|
3343
3426
|
rect_border_radius?: number | undefined;
|
|
@@ -3356,6 +3439,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3356
3439
|
pcb_component_id?: string | undefined;
|
|
3357
3440
|
subcircuit_id?: string | undefined;
|
|
3358
3441
|
pcb_group_id?: string | undefined;
|
|
3442
|
+
soldermask_margin?: number | undefined;
|
|
3359
3443
|
port_hints?: string[] | undefined;
|
|
3360
3444
|
pcb_port_id?: string | undefined;
|
|
3361
3445
|
rect_border_radius?: number | undefined;
|
|
@@ -3375,6 +3459,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3375
3459
|
pcb_component_id?: string | undefined;
|
|
3376
3460
|
subcircuit_id?: string | undefined;
|
|
3377
3461
|
pcb_group_id?: string | undefined;
|
|
3462
|
+
soldermask_margin?: number | undefined;
|
|
3378
3463
|
port_hints?: string[] | undefined;
|
|
3379
3464
|
pcb_port_id?: string | undefined;
|
|
3380
3465
|
is_covered_with_solder_mask?: boolean | 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;
|
|
@@ -3406,6 +3492,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3406
3492
|
pcb_component_id?: string | undefined;
|
|
3407
3493
|
subcircuit_id?: string | undefined;
|
|
3408
3494
|
pcb_group_id?: string | undefined;
|
|
3495
|
+
soldermask_margin?: number | undefined;
|
|
3409
3496
|
port_hints?: string[] | undefined;
|
|
3410
3497
|
pcb_port_id?: string | undefined;
|
|
3411
3498
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3928,6 +4015,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3928
4015
|
rotation?: number | undefined;
|
|
3929
4016
|
subcircuit_id?: string | undefined;
|
|
3930
4017
|
pcb_group_id?: string | undefined;
|
|
4018
|
+
pcb_board_id?: string | undefined;
|
|
4019
|
+
pcb_panel_id?: string | undefined;
|
|
3931
4020
|
} | {
|
|
3932
4021
|
type: "pcb_cutout";
|
|
3933
4022
|
center: {
|
|
@@ -3939,6 +4028,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3939
4028
|
pcb_cutout_id: string;
|
|
3940
4029
|
subcircuit_id?: string | undefined;
|
|
3941
4030
|
pcb_group_id?: string | undefined;
|
|
4031
|
+
pcb_board_id?: string | undefined;
|
|
4032
|
+
pcb_panel_id?: string | undefined;
|
|
3942
4033
|
} | {
|
|
3943
4034
|
type: "pcb_cutout";
|
|
3944
4035
|
shape: "polygon";
|
|
@@ -3949,6 +4040,24 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3949
4040
|
pcb_cutout_id: string;
|
|
3950
4041
|
subcircuit_id?: string | undefined;
|
|
3951
4042
|
pcb_group_id?: string | undefined;
|
|
4043
|
+
pcb_board_id?: string | undefined;
|
|
4044
|
+
pcb_panel_id?: string | undefined;
|
|
4045
|
+
} | {
|
|
4046
|
+
type: "pcb_cutout";
|
|
4047
|
+
shape: "path";
|
|
4048
|
+
route: {
|
|
4049
|
+
x: number;
|
|
4050
|
+
y: number;
|
|
4051
|
+
}[];
|
|
4052
|
+
pcb_cutout_id: string;
|
|
4053
|
+
slot_width: number;
|
|
4054
|
+
subcircuit_id?: string | undefined;
|
|
4055
|
+
pcb_group_id?: string | undefined;
|
|
4056
|
+
pcb_board_id?: string | undefined;
|
|
4057
|
+
pcb_panel_id?: string | undefined;
|
|
4058
|
+
slot_length?: number | undefined;
|
|
4059
|
+
space_between_slots?: number | undefined;
|
|
4060
|
+
slot_corner_radius?: number | undefined;
|
|
3952
4061
|
} | {
|
|
3953
4062
|
type: "pcb_ground_plane";
|
|
3954
4063
|
source_net_id: string;
|
|
@@ -4363,7 +4472,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4363
4472
|
y: number;
|
|
4364
4473
|
};
|
|
4365
4474
|
schematic_voltage_probe_id: string;
|
|
4475
|
+
name?: string | undefined;
|
|
4476
|
+
source_component_id?: string | undefined;
|
|
4366
4477
|
subcircuit_id?: string | undefined;
|
|
4478
|
+
color?: string | undefined;
|
|
4367
4479
|
voltage?: number | undefined;
|
|
4368
4480
|
} | {
|
|
4369
4481
|
message: string;
|
|
@@ -4500,10 +4612,10 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4500
4612
|
simulation_transient_voltage_graph_id: string;
|
|
4501
4613
|
voltage_levels: number[];
|
|
4502
4614
|
name?: string | undefined;
|
|
4615
|
+
source_component_id?: string | undefined;
|
|
4503
4616
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4504
|
-
|
|
4617
|
+
color?: string | undefined;
|
|
4505
4618
|
timestamps_ms?: number[] | undefined;
|
|
4506
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
4507
4619
|
} | {
|
|
4508
4620
|
type: "simulation_switch";
|
|
4509
4621
|
simulation_switch_id: string;
|
|
@@ -4516,9 +4628,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4516
4628
|
type: "simulation_voltage_probe";
|
|
4517
4629
|
simulation_voltage_probe_id: string;
|
|
4518
4630
|
name?: string | undefined;
|
|
4631
|
+
source_component_id?: string | undefined;
|
|
4519
4632
|
subcircuit_id?: string | undefined;
|
|
4520
4633
|
source_port_id?: string | undefined;
|
|
4521
4634
|
source_net_id?: string | undefined;
|
|
4635
|
+
color?: string | undefined;
|
|
4522
4636
|
} | {
|
|
4523
4637
|
message: string;
|
|
4524
4638
|
type: "simulation_unknown_experiment_error";
|