@tscircuit/eval 0.0.952 → 0.0.953
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 +2 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/webworker/entrypoint.js +4 -4
- package/package.json +3 -3
package/dist/eval/index.d.ts
CHANGED
|
@@ -161,6 +161,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
161
161
|
source_trace_id: string;
|
|
162
162
|
connected_source_port_ids: string[];
|
|
163
163
|
connected_source_net_ids: string[];
|
|
164
|
+
name?: string | undefined;
|
|
164
165
|
subcircuit_id?: string | undefined;
|
|
165
166
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
166
167
|
display_name?: string | undefined;
|
|
@@ -4663,6 +4664,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4663
4664
|
source_trace_id: string;
|
|
4664
4665
|
connected_source_port_ids: string[];
|
|
4665
4666
|
connected_source_net_ids: string[];
|
|
4667
|
+
name?: string | undefined;
|
|
4666
4668
|
subcircuit_id?: string | undefined;
|
|
4667
4669
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4668
4670
|
display_name?: string | undefined;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
177
177
|
source_trace_id: string;
|
|
178
178
|
connected_source_port_ids: string[];
|
|
179
179
|
connected_source_net_ids: string[];
|
|
180
|
+
name?: string | undefined;
|
|
180
181
|
subcircuit_id?: string | undefined;
|
|
181
182
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
182
183
|
display_name?: string | undefined;
|
|
@@ -4679,6 +4680,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4679
4680
|
source_trace_id: string;
|
|
4680
4681
|
connected_source_port_ids: string[];
|
|
4681
4682
|
connected_source_net_ids: string[];
|
|
4683
|
+
name?: string | undefined;
|
|
4682
4684
|
subcircuit_id?: string | undefined;
|
|
4683
4685
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
4684
4686
|
display_name?: string | undefined;
|