@tscircuit/eval 0.0.308 → 0.0.310

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.
@@ -1753,6 +1753,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1753
1753
  model_gltf_url?: string | undefined;
1754
1754
  model_glb_url?: string | undefined;
1755
1755
  model_step_url?: string | undefined;
1756
+ model_wrl_url?: string | undefined;
1756
1757
  model_jscad?: any;
1757
1758
  } | {
1758
1759
  type: "simulation_voltage_source";
@@ -3443,6 +3444,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3443
3444
  model_gltf_url?: string | undefined;
3444
3445
  model_glb_url?: string | undefined;
3445
3446
  model_step_url?: string | undefined;
3447
+ model_wrl_url?: string | undefined;
3446
3448
  model_jscad?: any;
3447
3449
  } | {
3448
3450
  type: "simulation_voltage_source";
@@ -1769,6 +1769,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1769
1769
  model_gltf_url?: string | undefined;
1770
1770
  model_glb_url?: string | undefined;
1771
1771
  model_step_url?: string | undefined;
1772
+ model_wrl_url?: string | undefined;
1772
1773
  model_jscad?: any;
1773
1774
  } | {
1774
1775
  type: "simulation_voltage_source";
@@ -3459,6 +3460,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3459
3460
  model_gltf_url?: string | undefined;
3460
3461
  model_glb_url?: string | undefined;
3461
3462
  model_step_url?: string | undefined;
3463
+ model_wrl_url?: string | undefined;
3462
3464
  model_jscad?: any;
3463
3465
  } | {
3464
3466
  type: "simulation_voltage_source";
@@ -3497,4 +3499,6 @@ declare const createCircuitWebWorker: (configuration: Partial<WebWorkerConfigura
3497
3499
 
3498
3500
  declare const getPossibleEntrypointComponentPaths: (fsMap: Record<string, string>) => string[];
3499
3501
 
3500
- export { CircuitRunner, type CircuitWebWorker, type WebWorkerConfiguration, createCircuitWebWorker, getImportsFromCode, getPossibleEntrypointComponentPaths, runTscircuitCode, runTscircuitModule };
3502
+ declare const getPlatformConfig: () => PlatformConfig;
3503
+
3504
+ export { CircuitRunner, type CircuitWebWorker, type WebWorkerConfiguration, createCircuitWebWorker, getImportsFromCode, getPlatformConfig, getPossibleEntrypointComponentPaths, runTscircuitCode, runTscircuitModule };
package/dist/lib/index.js CHANGED
@@ -1155,6 +1155,7 @@ export {
1155
1155
  CircuitRunner,
1156
1156
  createCircuitWebWorker,
1157
1157
  getImportsFromCode,
1158
+ getPlatformConfig,
1158
1159
  getPossibleEntrypointComponentPaths,
1159
1160
  runTscircuitCode,
1160
1161
  runTscircuitModule