@tscircuit/eval 0.0.874 → 0.0.875
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 +14 -2
- package/dist/lib/index.d.ts +14 -2
- package/dist/webworker/entrypoint.js +94 -76
- package/package.json +7 -6
package/dist/eval/index.d.ts
CHANGED
|
@@ -4416,8 +4416,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4416
4416
|
model_step_url?: string | undefined;
|
|
4417
4417
|
model_wrl_url?: string | undefined;
|
|
4418
4418
|
model_asset?: {
|
|
4419
|
-
project_relative_path: string;
|
|
4420
4419
|
url: string;
|
|
4420
|
+
project_relative_path: string;
|
|
4421
4421
|
mimetype: string;
|
|
4422
4422
|
} | undefined;
|
|
4423
4423
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -4534,6 +4534,12 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4534
4534
|
positive_supply_source_port_id: string;
|
|
4535
4535
|
negative_supply_source_port_id: string;
|
|
4536
4536
|
source_component_id?: string | undefined;
|
|
4537
|
+
} | {
|
|
4538
|
+
type: "simulation_spice_subcircuit";
|
|
4539
|
+
source_component_id: string;
|
|
4540
|
+
simulation_spice_subcircuit_id: string;
|
|
4541
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
4542
|
+
subcircuit_source: string;
|
|
4537
4543
|
})[]>;
|
|
4538
4544
|
|
|
4539
4545
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -8801,8 +8807,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8801
8807
|
model_step_url?: string | undefined;
|
|
8802
8808
|
model_wrl_url?: string | undefined;
|
|
8803
8809
|
model_asset?: {
|
|
8804
|
-
project_relative_path: string;
|
|
8805
8810
|
url: string;
|
|
8811
|
+
project_relative_path: string;
|
|
8806
8812
|
mimetype: string;
|
|
8807
8813
|
} | undefined;
|
|
8808
8814
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -8919,6 +8925,12 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8919
8925
|
positive_supply_source_port_id: string;
|
|
8920
8926
|
negative_supply_source_port_id: string;
|
|
8921
8927
|
source_component_id?: string | undefined;
|
|
8928
|
+
} | {
|
|
8929
|
+
type: "simulation_spice_subcircuit";
|
|
8930
|
+
source_component_id: string;
|
|
8931
|
+
simulation_spice_subcircuit_id: string;
|
|
8932
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
8933
|
+
subcircuit_source: string;
|
|
8922
8934
|
})[]>;
|
|
8923
8935
|
|
|
8924
8936
|
declare const STATIC_ASSET_EXTENSIONS: string[];
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -4432,8 +4432,8 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4432
4432
|
model_step_url?: string | undefined;
|
|
4433
4433
|
model_wrl_url?: string | undefined;
|
|
4434
4434
|
model_asset?: {
|
|
4435
|
-
project_relative_path: string;
|
|
4436
4435
|
url: string;
|
|
4436
|
+
project_relative_path: string;
|
|
4437
4437
|
mimetype: string;
|
|
4438
4438
|
} | undefined;
|
|
4439
4439
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -4550,6 +4550,12 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
4550
4550
|
positive_supply_source_port_id: string;
|
|
4551
4551
|
negative_supply_source_port_id: string;
|
|
4552
4552
|
source_component_id?: string | undefined;
|
|
4553
|
+
} | {
|
|
4554
|
+
type: "simulation_spice_subcircuit";
|
|
4555
|
+
source_component_id: string;
|
|
4556
|
+
simulation_spice_subcircuit_id: string;
|
|
4557
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
4558
|
+
subcircuit_source: string;
|
|
4553
4559
|
})[]>;
|
|
4554
4560
|
|
|
4555
4561
|
declare const runTscircuitModule: (module: string, opts?: {
|
|
@@ -8817,8 +8823,8 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8817
8823
|
model_step_url?: string | undefined;
|
|
8818
8824
|
model_wrl_url?: string | undefined;
|
|
8819
8825
|
model_asset?: {
|
|
8820
|
-
project_relative_path: string;
|
|
8821
8826
|
url: string;
|
|
8827
|
+
project_relative_path: string;
|
|
8822
8828
|
mimetype: string;
|
|
8823
8829
|
} | undefined;
|
|
8824
8830
|
model_unit_to_mm_scale_factor?: number | undefined;
|
|
@@ -8935,6 +8941,12 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
8935
8941
|
positive_supply_source_port_id: string;
|
|
8936
8942
|
negative_supply_source_port_id: string;
|
|
8937
8943
|
source_component_id?: string | undefined;
|
|
8944
|
+
} | {
|
|
8945
|
+
type: "simulation_spice_subcircuit";
|
|
8946
|
+
source_component_id: string;
|
|
8947
|
+
simulation_spice_subcircuit_id: string;
|
|
8948
|
+
spice_pin_to_source_port_map: Record<string, string>;
|
|
8949
|
+
subcircuit_source: string;
|
|
8938
8950
|
})[]>;
|
|
8939
8951
|
|
|
8940
8952
|
declare const STATIC_ASSET_EXTENSIONS: string[];
|