@tscircuit/eval 0.0.487 → 0.0.488
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 +4 -8
- package/dist/lib/index.d.ts +4 -8
- package/dist/webworker/entrypoint.js +186 -186
- package/package.json +4 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -2392,11 +2392,9 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2392
2392
|
name?: string | undefined;
|
|
2393
2393
|
source_component_id?: string | undefined;
|
|
2394
2394
|
subcircuit_id?: string | undefined;
|
|
2395
|
+
source_port_id?: string | undefined;
|
|
2396
|
+
source_net_id?: string | undefined;
|
|
2395
2397
|
color?: string | undefined;
|
|
2396
|
-
signal_input_source_port_id?: string | undefined;
|
|
2397
|
-
signal_input_source_net_id?: string | undefined;
|
|
2398
|
-
reference_input_source_port_id?: string | undefined;
|
|
2399
|
-
reference_input_source_net_id?: string | undefined;
|
|
2400
2398
|
} | {
|
|
2401
2399
|
message: string;
|
|
2402
2400
|
type: "simulation_unknown_experiment_error";
|
|
@@ -4676,11 +4674,9 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4676
4674
|
name?: string | undefined;
|
|
4677
4675
|
source_component_id?: string | undefined;
|
|
4678
4676
|
subcircuit_id?: string | undefined;
|
|
4677
|
+
source_port_id?: string | undefined;
|
|
4678
|
+
source_net_id?: string | undefined;
|
|
4679
4679
|
color?: string | undefined;
|
|
4680
|
-
signal_input_source_port_id?: string | undefined;
|
|
4681
|
-
signal_input_source_net_id?: string | undefined;
|
|
4682
|
-
reference_input_source_port_id?: string | undefined;
|
|
4683
|
-
reference_input_source_net_id?: string | undefined;
|
|
4684
4680
|
} | {
|
|
4685
4681
|
message: string;
|
|
4686
4682
|
type: "simulation_unknown_experiment_error";
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -2408,11 +2408,9 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2408
2408
|
name?: string | undefined;
|
|
2409
2409
|
source_component_id?: string | undefined;
|
|
2410
2410
|
subcircuit_id?: string | undefined;
|
|
2411
|
+
source_port_id?: string | undefined;
|
|
2412
|
+
source_net_id?: string | undefined;
|
|
2411
2413
|
color?: string | undefined;
|
|
2412
|
-
signal_input_source_port_id?: string | undefined;
|
|
2413
|
-
signal_input_source_net_id?: string | undefined;
|
|
2414
|
-
reference_input_source_port_id?: string | undefined;
|
|
2415
|
-
reference_input_source_net_id?: string | undefined;
|
|
2416
2414
|
} | {
|
|
2417
2415
|
message: string;
|
|
2418
2416
|
type: "simulation_unknown_experiment_error";
|
|
@@ -4692,11 +4690,9 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4692
4690
|
name?: string | undefined;
|
|
4693
4691
|
source_component_id?: string | undefined;
|
|
4694
4692
|
subcircuit_id?: string | undefined;
|
|
4693
|
+
source_port_id?: string | undefined;
|
|
4694
|
+
source_net_id?: string | undefined;
|
|
4695
4695
|
color?: string | undefined;
|
|
4696
|
-
signal_input_source_port_id?: string | undefined;
|
|
4697
|
-
signal_input_source_net_id?: string | undefined;
|
|
4698
|
-
reference_input_source_port_id?: string | undefined;
|
|
4699
|
-
reference_input_source_net_id?: string | undefined;
|
|
4700
4696
|
} | {
|
|
4701
4697
|
message: string;
|
|
4702
4698
|
type: "simulation_unknown_experiment_error";
|