@tscircuit/eval 0.0.367 → 0.0.369
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 +122 -122
- package/package.json +6 -5
package/dist/eval/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -2333,6 +2334,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2333
2334
|
show_as_schematic_box?: boolean | undefined;
|
|
2334
2335
|
parent_subcircuit_id?: string | undefined;
|
|
2335
2336
|
parent_source_group_id?: string | undefined;
|
|
2337
|
+
was_automatically_named?: boolean | undefined;
|
|
2336
2338
|
} | {
|
|
2337
2339
|
type: "source_component";
|
|
2338
2340
|
name: string;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -2349,6 +2350,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2349
2350
|
show_as_schematic_box?: boolean | undefined;
|
|
2350
2351
|
parent_subcircuit_id?: string | undefined;
|
|
2351
2352
|
parent_source_group_id?: string | undefined;
|
|
2353
|
+
was_automatically_named?: boolean | undefined;
|
|
2352
2354
|
} | {
|
|
2353
2355
|
type: "source_component";
|
|
2354
2356
|
name: string;
|