@tscircuit/eval 0.0.366 → 0.0.368
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 +74 -12
- package/dist/lib/index.d.ts +74 -12
- package/dist/webworker/entrypoint.js +125 -125
- package/package.json +4 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -406,12 +406,12 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
406
406
|
error_type: "source_failed_to_create_component_error";
|
|
407
407
|
source_failed_to_create_component_error_id: string;
|
|
408
408
|
subcircuit_id?: string | undefined;
|
|
409
|
-
component_name?: string | undefined;
|
|
410
|
-
parent_source_component_id?: string | undefined;
|
|
411
409
|
pcb_center?: {
|
|
412
410
|
x?: number | undefined;
|
|
413
411
|
y?: number | undefined;
|
|
414
412
|
} | undefined;
|
|
413
|
+
component_name?: string | undefined;
|
|
414
|
+
parent_source_component_id?: string | undefined;
|
|
415
415
|
schematic_center?: {
|
|
416
416
|
x?: number | undefined;
|
|
417
417
|
y?: number | undefined;
|
|
@@ -464,6 +464,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
464
464
|
show_as_schematic_box?: boolean | undefined;
|
|
465
465
|
parent_subcircuit_id?: string | undefined;
|
|
466
466
|
parent_source_group_id?: string | undefined;
|
|
467
|
+
was_automatically_named?: boolean | undefined;
|
|
467
468
|
} | {
|
|
468
469
|
type: "source_component";
|
|
469
470
|
name: string;
|
|
@@ -1350,6 +1351,19 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1350
1351
|
pcb_port_ids: string[];
|
|
1351
1352
|
pcb_port_not_connected_error_id: string;
|
|
1352
1353
|
subcircuit_id?: string | undefined;
|
|
1354
|
+
} | {
|
|
1355
|
+
message: string;
|
|
1356
|
+
type: "pcb_via_clearance_error";
|
|
1357
|
+
error_type: "pcb_via_clearance_error";
|
|
1358
|
+
pcb_error_id: string;
|
|
1359
|
+
pcb_via_ids: string[];
|
|
1360
|
+
subcircuit_id?: string | undefined;
|
|
1361
|
+
minimum_clearance?: number | undefined;
|
|
1362
|
+
actual_clearance?: number | undefined;
|
|
1363
|
+
pcb_center?: {
|
|
1364
|
+
x?: number | undefined;
|
|
1365
|
+
y?: number | undefined;
|
|
1366
|
+
} | undefined;
|
|
1353
1367
|
} | {
|
|
1354
1368
|
type: "pcb_fabrication_note_path";
|
|
1355
1369
|
pcb_component_id: string;
|
|
@@ -1546,8 +1560,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1546
1560
|
subcircuit_id?: string | undefined;
|
|
1547
1561
|
schematic_component_id?: string | undefined;
|
|
1548
1562
|
} | {
|
|
1549
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
1550
1563
|
type: "schematic_text";
|
|
1564
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
1551
1565
|
rotation: number;
|
|
1552
1566
|
text: string;
|
|
1553
1567
|
font_size: number;
|
|
@@ -1918,18 +1932,35 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1918
1932
|
name: string;
|
|
1919
1933
|
simulation_experiment_id: string;
|
|
1920
1934
|
experiment_type: "spice_dc_sweep" | "spice_dc_operating_point" | "spice_transient_analysis" | "spice_ac_analysis";
|
|
1935
|
+
time_per_step?: number | undefined;
|
|
1936
|
+
start_time_ms?: number | undefined;
|
|
1937
|
+
end_time_ms?: number | undefined;
|
|
1921
1938
|
} | {
|
|
1922
1939
|
type: "simulation_transient_voltage_graph";
|
|
1923
1940
|
simulation_experiment_id: string;
|
|
1924
|
-
simulation_transient_voltage_graph_id: string;
|
|
1925
|
-
voltage_levels: number[];
|
|
1926
1941
|
time_per_step: number;
|
|
1927
1942
|
start_time_ms: number;
|
|
1928
1943
|
end_time_ms: number;
|
|
1944
|
+
simulation_transient_voltage_graph_id: string;
|
|
1945
|
+
voltage_levels: number[];
|
|
1929
1946
|
name?: string | undefined;
|
|
1947
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
1930
1948
|
schematic_voltage_probe_id?: string | undefined;
|
|
1931
1949
|
timestamps_ms?: number[] | undefined;
|
|
1932
|
-
|
|
1950
|
+
} | {
|
|
1951
|
+
type: "simulation_switch";
|
|
1952
|
+
simulation_switch_id: string;
|
|
1953
|
+
closes_at?: number | undefined;
|
|
1954
|
+
opens_at?: number | undefined;
|
|
1955
|
+
starts_closed?: boolean | undefined;
|
|
1956
|
+
switching_frequency?: number | undefined;
|
|
1957
|
+
} | {
|
|
1958
|
+
type: "simulation_voltage_probe";
|
|
1959
|
+
simulation_voltage_probe_id: string;
|
|
1960
|
+
name?: string | undefined;
|
|
1961
|
+
subcircuit_id?: string | undefined;
|
|
1962
|
+
source_port_id?: string | undefined;
|
|
1963
|
+
source_net_id?: string | undefined;
|
|
1933
1964
|
})[]>;
|
|
1934
1965
|
|
|
1935
1966
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -2245,12 +2276,12 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2245
2276
|
error_type: "source_failed_to_create_component_error";
|
|
2246
2277
|
source_failed_to_create_component_error_id: string;
|
|
2247
2278
|
subcircuit_id?: string | undefined;
|
|
2248
|
-
component_name?: string | undefined;
|
|
2249
|
-
parent_source_component_id?: string | undefined;
|
|
2250
2279
|
pcb_center?: {
|
|
2251
2280
|
x?: number | undefined;
|
|
2252
2281
|
y?: number | undefined;
|
|
2253
2282
|
} | undefined;
|
|
2283
|
+
component_name?: string | undefined;
|
|
2284
|
+
parent_source_component_id?: string | undefined;
|
|
2254
2285
|
schematic_center?: {
|
|
2255
2286
|
x?: number | undefined;
|
|
2256
2287
|
y?: number | undefined;
|
|
@@ -2303,6 +2334,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2303
2334
|
show_as_schematic_box?: boolean | undefined;
|
|
2304
2335
|
parent_subcircuit_id?: string | undefined;
|
|
2305
2336
|
parent_source_group_id?: string | undefined;
|
|
2337
|
+
was_automatically_named?: boolean | undefined;
|
|
2306
2338
|
} | {
|
|
2307
2339
|
type: "source_component";
|
|
2308
2340
|
name: string;
|
|
@@ -3189,6 +3221,19 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3189
3221
|
pcb_port_ids: string[];
|
|
3190
3222
|
pcb_port_not_connected_error_id: string;
|
|
3191
3223
|
subcircuit_id?: string | undefined;
|
|
3224
|
+
} | {
|
|
3225
|
+
message: string;
|
|
3226
|
+
type: "pcb_via_clearance_error";
|
|
3227
|
+
error_type: "pcb_via_clearance_error";
|
|
3228
|
+
pcb_error_id: string;
|
|
3229
|
+
pcb_via_ids: string[];
|
|
3230
|
+
subcircuit_id?: string | undefined;
|
|
3231
|
+
minimum_clearance?: number | undefined;
|
|
3232
|
+
actual_clearance?: number | undefined;
|
|
3233
|
+
pcb_center?: {
|
|
3234
|
+
x?: number | undefined;
|
|
3235
|
+
y?: number | undefined;
|
|
3236
|
+
} | undefined;
|
|
3192
3237
|
} | {
|
|
3193
3238
|
type: "pcb_fabrication_note_path";
|
|
3194
3239
|
pcb_component_id: string;
|
|
@@ -3385,8 +3430,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3385
3430
|
subcircuit_id?: string | undefined;
|
|
3386
3431
|
schematic_component_id?: string | undefined;
|
|
3387
3432
|
} | {
|
|
3388
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
3389
3433
|
type: "schematic_text";
|
|
3434
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
3390
3435
|
rotation: number;
|
|
3391
3436
|
text: string;
|
|
3392
3437
|
font_size: number;
|
|
@@ -3757,18 +3802,35 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3757
3802
|
name: string;
|
|
3758
3803
|
simulation_experiment_id: string;
|
|
3759
3804
|
experiment_type: "spice_dc_sweep" | "spice_dc_operating_point" | "spice_transient_analysis" | "spice_ac_analysis";
|
|
3805
|
+
time_per_step?: number | undefined;
|
|
3806
|
+
start_time_ms?: number | undefined;
|
|
3807
|
+
end_time_ms?: number | undefined;
|
|
3760
3808
|
} | {
|
|
3761
3809
|
type: "simulation_transient_voltage_graph";
|
|
3762
3810
|
simulation_experiment_id: string;
|
|
3763
|
-
simulation_transient_voltage_graph_id: string;
|
|
3764
|
-
voltage_levels: number[];
|
|
3765
3811
|
time_per_step: number;
|
|
3766
3812
|
start_time_ms: number;
|
|
3767
3813
|
end_time_ms: number;
|
|
3814
|
+
simulation_transient_voltage_graph_id: string;
|
|
3815
|
+
voltage_levels: number[];
|
|
3768
3816
|
name?: string | undefined;
|
|
3817
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
3769
3818
|
schematic_voltage_probe_id?: string | undefined;
|
|
3770
3819
|
timestamps_ms?: number[] | undefined;
|
|
3771
|
-
|
|
3820
|
+
} | {
|
|
3821
|
+
type: "simulation_switch";
|
|
3822
|
+
simulation_switch_id: string;
|
|
3823
|
+
closes_at?: number | undefined;
|
|
3824
|
+
opens_at?: number | undefined;
|
|
3825
|
+
starts_closed?: boolean | undefined;
|
|
3826
|
+
switching_frequency?: number | undefined;
|
|
3827
|
+
} | {
|
|
3828
|
+
type: "simulation_voltage_probe";
|
|
3829
|
+
simulation_voltage_probe_id: string;
|
|
3830
|
+
name?: string | undefined;
|
|
3831
|
+
subcircuit_id?: string | undefined;
|
|
3832
|
+
source_port_id?: string | undefined;
|
|
3833
|
+
source_net_id?: string | undefined;
|
|
3772
3834
|
})[]>;
|
|
3773
3835
|
|
|
3774
3836
|
declare const STATIC_ASSET_EXTENSIONS: string[];
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -422,12 +422,12 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
422
422
|
error_type: "source_failed_to_create_component_error";
|
|
423
423
|
source_failed_to_create_component_error_id: string;
|
|
424
424
|
subcircuit_id?: string | undefined;
|
|
425
|
-
component_name?: string | undefined;
|
|
426
|
-
parent_source_component_id?: string | undefined;
|
|
427
425
|
pcb_center?: {
|
|
428
426
|
x?: number | undefined;
|
|
429
427
|
y?: number | undefined;
|
|
430
428
|
} | undefined;
|
|
429
|
+
component_name?: string | undefined;
|
|
430
|
+
parent_source_component_id?: string | undefined;
|
|
431
431
|
schematic_center?: {
|
|
432
432
|
x?: number | undefined;
|
|
433
433
|
y?: number | undefined;
|
|
@@ -480,6 +480,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
480
480
|
show_as_schematic_box?: boolean | undefined;
|
|
481
481
|
parent_subcircuit_id?: string | undefined;
|
|
482
482
|
parent_source_group_id?: string | undefined;
|
|
483
|
+
was_automatically_named?: boolean | undefined;
|
|
483
484
|
} | {
|
|
484
485
|
type: "source_component";
|
|
485
486
|
name: string;
|
|
@@ -1366,6 +1367,19 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1366
1367
|
pcb_port_ids: string[];
|
|
1367
1368
|
pcb_port_not_connected_error_id: string;
|
|
1368
1369
|
subcircuit_id?: string | undefined;
|
|
1370
|
+
} | {
|
|
1371
|
+
message: string;
|
|
1372
|
+
type: "pcb_via_clearance_error";
|
|
1373
|
+
error_type: "pcb_via_clearance_error";
|
|
1374
|
+
pcb_error_id: string;
|
|
1375
|
+
pcb_via_ids: string[];
|
|
1376
|
+
subcircuit_id?: string | undefined;
|
|
1377
|
+
minimum_clearance?: number | undefined;
|
|
1378
|
+
actual_clearance?: number | undefined;
|
|
1379
|
+
pcb_center?: {
|
|
1380
|
+
x?: number | undefined;
|
|
1381
|
+
y?: number | undefined;
|
|
1382
|
+
} | undefined;
|
|
1369
1383
|
} | {
|
|
1370
1384
|
type: "pcb_fabrication_note_path";
|
|
1371
1385
|
pcb_component_id: string;
|
|
@@ -1562,8 +1576,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1562
1576
|
subcircuit_id?: string | undefined;
|
|
1563
1577
|
schematic_component_id?: string | undefined;
|
|
1564
1578
|
} | {
|
|
1565
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
1566
1579
|
type: "schematic_text";
|
|
1580
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
1567
1581
|
rotation: number;
|
|
1568
1582
|
text: string;
|
|
1569
1583
|
font_size: number;
|
|
@@ -1934,18 +1948,35 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1934
1948
|
name: string;
|
|
1935
1949
|
simulation_experiment_id: string;
|
|
1936
1950
|
experiment_type: "spice_dc_sweep" | "spice_dc_operating_point" | "spice_transient_analysis" | "spice_ac_analysis";
|
|
1951
|
+
time_per_step?: number | undefined;
|
|
1952
|
+
start_time_ms?: number | undefined;
|
|
1953
|
+
end_time_ms?: number | undefined;
|
|
1937
1954
|
} | {
|
|
1938
1955
|
type: "simulation_transient_voltage_graph";
|
|
1939
1956
|
simulation_experiment_id: string;
|
|
1940
|
-
simulation_transient_voltage_graph_id: string;
|
|
1941
|
-
voltage_levels: number[];
|
|
1942
1957
|
time_per_step: number;
|
|
1943
1958
|
start_time_ms: number;
|
|
1944
1959
|
end_time_ms: number;
|
|
1960
|
+
simulation_transient_voltage_graph_id: string;
|
|
1961
|
+
voltage_levels: number[];
|
|
1945
1962
|
name?: string | undefined;
|
|
1963
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
1946
1964
|
schematic_voltage_probe_id?: string | undefined;
|
|
1947
1965
|
timestamps_ms?: number[] | undefined;
|
|
1948
|
-
|
|
1966
|
+
} | {
|
|
1967
|
+
type: "simulation_switch";
|
|
1968
|
+
simulation_switch_id: string;
|
|
1969
|
+
closes_at?: number | undefined;
|
|
1970
|
+
opens_at?: number | undefined;
|
|
1971
|
+
starts_closed?: boolean | undefined;
|
|
1972
|
+
switching_frequency?: number | undefined;
|
|
1973
|
+
} | {
|
|
1974
|
+
type: "simulation_voltage_probe";
|
|
1975
|
+
simulation_voltage_probe_id: string;
|
|
1976
|
+
name?: string | undefined;
|
|
1977
|
+
subcircuit_id?: string | undefined;
|
|
1978
|
+
source_port_id?: string | undefined;
|
|
1979
|
+
source_net_id?: string | undefined;
|
|
1949
1980
|
})[]>;
|
|
1950
1981
|
|
|
1951
1982
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -2261,12 +2292,12 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2261
2292
|
error_type: "source_failed_to_create_component_error";
|
|
2262
2293
|
source_failed_to_create_component_error_id: string;
|
|
2263
2294
|
subcircuit_id?: string | undefined;
|
|
2264
|
-
component_name?: string | undefined;
|
|
2265
|
-
parent_source_component_id?: string | undefined;
|
|
2266
2295
|
pcb_center?: {
|
|
2267
2296
|
x?: number | undefined;
|
|
2268
2297
|
y?: number | undefined;
|
|
2269
2298
|
} | undefined;
|
|
2299
|
+
component_name?: string | undefined;
|
|
2300
|
+
parent_source_component_id?: string | undefined;
|
|
2270
2301
|
schematic_center?: {
|
|
2271
2302
|
x?: number | undefined;
|
|
2272
2303
|
y?: number | undefined;
|
|
@@ -2319,6 +2350,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2319
2350
|
show_as_schematic_box?: boolean | undefined;
|
|
2320
2351
|
parent_subcircuit_id?: string | undefined;
|
|
2321
2352
|
parent_source_group_id?: string | undefined;
|
|
2353
|
+
was_automatically_named?: boolean | undefined;
|
|
2322
2354
|
} | {
|
|
2323
2355
|
type: "source_component";
|
|
2324
2356
|
name: string;
|
|
@@ -3205,6 +3237,19 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3205
3237
|
pcb_port_ids: string[];
|
|
3206
3238
|
pcb_port_not_connected_error_id: string;
|
|
3207
3239
|
subcircuit_id?: string | undefined;
|
|
3240
|
+
} | {
|
|
3241
|
+
message: string;
|
|
3242
|
+
type: "pcb_via_clearance_error";
|
|
3243
|
+
error_type: "pcb_via_clearance_error";
|
|
3244
|
+
pcb_error_id: string;
|
|
3245
|
+
pcb_via_ids: string[];
|
|
3246
|
+
subcircuit_id?: string | undefined;
|
|
3247
|
+
minimum_clearance?: number | undefined;
|
|
3248
|
+
actual_clearance?: number | undefined;
|
|
3249
|
+
pcb_center?: {
|
|
3250
|
+
x?: number | undefined;
|
|
3251
|
+
y?: number | undefined;
|
|
3252
|
+
} | undefined;
|
|
3208
3253
|
} | {
|
|
3209
3254
|
type: "pcb_fabrication_note_path";
|
|
3210
3255
|
pcb_component_id: string;
|
|
@@ -3401,8 +3446,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3401
3446
|
subcircuit_id?: string | undefined;
|
|
3402
3447
|
schematic_component_id?: string | undefined;
|
|
3403
3448
|
} | {
|
|
3404
|
-
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
3405
3449
|
type: "schematic_text";
|
|
3450
|
+
anchor: "top" | "bottom" | "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | "left" | "right";
|
|
3406
3451
|
rotation: number;
|
|
3407
3452
|
text: string;
|
|
3408
3453
|
font_size: number;
|
|
@@ -3773,18 +3818,35 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3773
3818
|
name: string;
|
|
3774
3819
|
simulation_experiment_id: string;
|
|
3775
3820
|
experiment_type: "spice_dc_sweep" | "spice_dc_operating_point" | "spice_transient_analysis" | "spice_ac_analysis";
|
|
3821
|
+
time_per_step?: number | undefined;
|
|
3822
|
+
start_time_ms?: number | undefined;
|
|
3823
|
+
end_time_ms?: number | undefined;
|
|
3776
3824
|
} | {
|
|
3777
3825
|
type: "simulation_transient_voltage_graph";
|
|
3778
3826
|
simulation_experiment_id: string;
|
|
3779
|
-
simulation_transient_voltage_graph_id: string;
|
|
3780
|
-
voltage_levels: number[];
|
|
3781
3827
|
time_per_step: number;
|
|
3782
3828
|
start_time_ms: number;
|
|
3783
3829
|
end_time_ms: number;
|
|
3830
|
+
simulation_transient_voltage_graph_id: string;
|
|
3831
|
+
voltage_levels: number[];
|
|
3784
3832
|
name?: string | undefined;
|
|
3833
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
3785
3834
|
schematic_voltage_probe_id?: string | undefined;
|
|
3786
3835
|
timestamps_ms?: number[] | undefined;
|
|
3787
|
-
|
|
3836
|
+
} | {
|
|
3837
|
+
type: "simulation_switch";
|
|
3838
|
+
simulation_switch_id: string;
|
|
3839
|
+
closes_at?: number | undefined;
|
|
3840
|
+
opens_at?: number | undefined;
|
|
3841
|
+
starts_closed?: boolean | undefined;
|
|
3842
|
+
switching_frequency?: number | undefined;
|
|
3843
|
+
} | {
|
|
3844
|
+
type: "simulation_voltage_probe";
|
|
3845
|
+
simulation_voltage_probe_id: string;
|
|
3846
|
+
name?: string | undefined;
|
|
3847
|
+
subcircuit_id?: string | undefined;
|
|
3848
|
+
source_port_id?: string | undefined;
|
|
3849
|
+
source_net_id?: string | undefined;
|
|
3788
3850
|
})[]>;
|
|
3789
3851
|
|
|
3790
3852
|
declare const STATIC_ASSET_EXTENSIONS: string[];
|