@tscircuit/eval 0.0.485 → 0.0.486
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 +8 -4
- package/dist/lib/index.d.ts +8 -4
- package/dist/webworker/entrypoint.js +2 -2
- package/package.json +2 -2
package/dist/eval/index.d.ts
CHANGED
|
@@ -2392,9 +2392,11 @@ 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;
|
|
2397
2395
|
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;
|
|
2398
2400
|
} | {
|
|
2399
2401
|
message: string;
|
|
2400
2402
|
type: "simulation_unknown_experiment_error";
|
|
@@ -4674,9 +4676,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4674
4676
|
name?: string | undefined;
|
|
4675
4677
|
source_component_id?: string | undefined;
|
|
4676
4678
|
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;
|
|
4680
4684
|
} | {
|
|
4681
4685
|
message: string;
|
|
4682
4686
|
type: "simulation_unknown_experiment_error";
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -2408,9 +2408,11 @@ 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;
|
|
2413
2411
|
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;
|
|
2414
2416
|
} | {
|
|
2415
2417
|
message: string;
|
|
2416
2418
|
type: "simulation_unknown_experiment_error";
|
|
@@ -4690,9 +4692,11 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4690
4692
|
name?: string | undefined;
|
|
4691
4693
|
source_component_id?: string | undefined;
|
|
4692
4694
|
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;
|
|
4696
4700
|
} | {
|
|
4697
4701
|
message: string;
|
|
4698
4702
|
type: "simulation_unknown_experiment_error";
|