@tscircuit/eval 0.0.494 → 0.0.495
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 +12 -6
- package/dist/lib/index.d.ts +12 -6
- package/dist/webworker/entrypoint.js +2 -2
- package/package.json +3 -3
package/dist/eval/index.d.ts
CHANGED
|
@@ -934,7 +934,6 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
934
934
|
pcb_component_id?: string | undefined;
|
|
935
935
|
subcircuit_id?: string | undefined;
|
|
936
936
|
pcb_group_id?: string | undefined;
|
|
937
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
938
937
|
soldermask_margin?: number | undefined;
|
|
939
938
|
port_hints?: string[] | undefined;
|
|
940
939
|
pcb_port_id?: string | undefined;
|
|
@@ -1154,6 +1153,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1154
1153
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
1155
1154
|
net_is_assignable?: boolean | undefined;
|
|
1156
1155
|
net_assigned?: boolean | undefined;
|
|
1156
|
+
is_tented?: boolean | undefined;
|
|
1157
1157
|
} | {
|
|
1158
1158
|
x: number;
|
|
1159
1159
|
y: number;
|
|
@@ -2334,6 +2334,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2334
2334
|
model_wrl_url?: string | undefined;
|
|
2335
2335
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
2336
2336
|
model_jscad?: any;
|
|
2337
|
+
show_as_translucent_model?: boolean | undefined;
|
|
2337
2338
|
} | {
|
|
2338
2339
|
type: "simulation_voltage_source";
|
|
2339
2340
|
voltage: number;
|
|
@@ -2392,9 +2393,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2392
2393
|
name?: string | undefined;
|
|
2393
2394
|
source_component_id?: string | undefined;
|
|
2394
2395
|
subcircuit_id?: string | undefined;
|
|
2395
|
-
source_port_id?: string | undefined;
|
|
2396
|
-
source_net_id?: string | undefined;
|
|
2397
2396
|
color?: string | undefined;
|
|
2397
|
+
signal_input_source_port_id?: string | undefined;
|
|
2398
|
+
signal_input_source_net_id?: string | undefined;
|
|
2399
|
+
reference_input_source_port_id?: string | undefined;
|
|
2400
|
+
reference_input_source_net_id?: string | undefined;
|
|
2398
2401
|
} | {
|
|
2399
2402
|
message: string;
|
|
2400
2403
|
type: "simulation_unknown_experiment_error";
|
|
@@ -3216,7 +3219,6 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3216
3219
|
pcb_component_id?: string | undefined;
|
|
3217
3220
|
subcircuit_id?: string | undefined;
|
|
3218
3221
|
pcb_group_id?: string | undefined;
|
|
3219
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
3220
3222
|
soldermask_margin?: number | undefined;
|
|
3221
3223
|
port_hints?: string[] | undefined;
|
|
3222
3224
|
pcb_port_id?: string | undefined;
|
|
@@ -3436,6 +3438,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3436
3438
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
3437
3439
|
net_is_assignable?: boolean | undefined;
|
|
3438
3440
|
net_assigned?: boolean | undefined;
|
|
3441
|
+
is_tented?: boolean | undefined;
|
|
3439
3442
|
} | {
|
|
3440
3443
|
x: number;
|
|
3441
3444
|
y: number;
|
|
@@ -4616,6 +4619,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4616
4619
|
model_wrl_url?: string | undefined;
|
|
4617
4620
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
4618
4621
|
model_jscad?: any;
|
|
4622
|
+
show_as_translucent_model?: boolean | undefined;
|
|
4619
4623
|
} | {
|
|
4620
4624
|
type: "simulation_voltage_source";
|
|
4621
4625
|
voltage: number;
|
|
@@ -4674,9 +4678,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4674
4678
|
name?: string | undefined;
|
|
4675
4679
|
source_component_id?: string | undefined;
|
|
4676
4680
|
subcircuit_id?: string | undefined;
|
|
4677
|
-
source_port_id?: string | undefined;
|
|
4678
|
-
source_net_id?: string | undefined;
|
|
4679
4681
|
color?: string | undefined;
|
|
4682
|
+
signal_input_source_port_id?: string | undefined;
|
|
4683
|
+
signal_input_source_net_id?: string | undefined;
|
|
4684
|
+
reference_input_source_port_id?: string | undefined;
|
|
4685
|
+
reference_input_source_net_id?: string | undefined;
|
|
4680
4686
|
} | {
|
|
4681
4687
|
message: string;
|
|
4682
4688
|
type: "simulation_unknown_experiment_error";
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -950,7 +950,6 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
950
950
|
pcb_component_id?: string | undefined;
|
|
951
951
|
subcircuit_id?: string | undefined;
|
|
952
952
|
pcb_group_id?: string | undefined;
|
|
953
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
954
953
|
soldermask_margin?: number | undefined;
|
|
955
954
|
port_hints?: string[] | undefined;
|
|
956
955
|
pcb_port_id?: string | undefined;
|
|
@@ -1170,6 +1169,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
1170
1169
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
1171
1170
|
net_is_assignable?: boolean | undefined;
|
|
1172
1171
|
net_assigned?: boolean | undefined;
|
|
1172
|
+
is_tented?: boolean | undefined;
|
|
1173
1173
|
} | {
|
|
1174
1174
|
x: number;
|
|
1175
1175
|
y: number;
|
|
@@ -2350,6 +2350,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2350
2350
|
model_wrl_url?: string | undefined;
|
|
2351
2351
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
2352
2352
|
model_jscad?: any;
|
|
2353
|
+
show_as_translucent_model?: boolean | undefined;
|
|
2353
2354
|
} | {
|
|
2354
2355
|
type: "simulation_voltage_source";
|
|
2355
2356
|
voltage: number;
|
|
@@ -2408,9 +2409,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2408
2409
|
name?: string | undefined;
|
|
2409
2410
|
source_component_id?: string | undefined;
|
|
2410
2411
|
subcircuit_id?: string | undefined;
|
|
2411
|
-
source_port_id?: string | undefined;
|
|
2412
|
-
source_net_id?: string | undefined;
|
|
2413
2412
|
color?: string | undefined;
|
|
2413
|
+
signal_input_source_port_id?: string | undefined;
|
|
2414
|
+
signal_input_source_net_id?: string | undefined;
|
|
2415
|
+
reference_input_source_port_id?: string | undefined;
|
|
2416
|
+
reference_input_source_net_id?: string | undefined;
|
|
2414
2417
|
} | {
|
|
2415
2418
|
message: string;
|
|
2416
2419
|
type: "simulation_unknown_experiment_error";
|
|
@@ -3232,7 +3235,6 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3232
3235
|
pcb_component_id?: string | undefined;
|
|
3233
3236
|
subcircuit_id?: string | undefined;
|
|
3234
3237
|
pcb_group_id?: string | undefined;
|
|
3235
|
-
is_covered_with_solder_mask?: boolean | undefined;
|
|
3236
3238
|
soldermask_margin?: number | undefined;
|
|
3237
3239
|
port_hints?: string[] | undefined;
|
|
3238
3240
|
pcb_port_id?: string | undefined;
|
|
@@ -3452,6 +3454,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3452
3454
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
3453
3455
|
net_is_assignable?: boolean | undefined;
|
|
3454
3456
|
net_assigned?: boolean | undefined;
|
|
3457
|
+
is_tented?: boolean | undefined;
|
|
3455
3458
|
} | {
|
|
3456
3459
|
x: number;
|
|
3457
3460
|
y: number;
|
|
@@ -4632,6 +4635,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4632
4635
|
model_wrl_url?: string | undefined;
|
|
4633
4636
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
4634
4637
|
model_jscad?: any;
|
|
4638
|
+
show_as_translucent_model?: boolean | undefined;
|
|
4635
4639
|
} | {
|
|
4636
4640
|
type: "simulation_voltage_source";
|
|
4637
4641
|
voltage: number;
|
|
@@ -4690,9 +4694,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4690
4694
|
name?: string | undefined;
|
|
4691
4695
|
source_component_id?: string | undefined;
|
|
4692
4696
|
subcircuit_id?: string | undefined;
|
|
4693
|
-
source_port_id?: string | undefined;
|
|
4694
|
-
source_net_id?: string | undefined;
|
|
4695
4697
|
color?: string | undefined;
|
|
4698
|
+
signal_input_source_port_id?: string | undefined;
|
|
4699
|
+
signal_input_source_net_id?: string | undefined;
|
|
4700
|
+
reference_input_source_port_id?: string | undefined;
|
|
4701
|
+
reference_input_source_net_id?: string | undefined;
|
|
4696
4702
|
} | {
|
|
4697
4703
|
message: string;
|
|
4698
4704
|
type: "simulation_unknown_experiment_error";
|