@tscircuit/eval 0.0.620 → 0.0.621
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 +30 -0
- package/dist/lib/index.d.ts +30 -0
- package/dist/webworker/entrypoint.js +33 -33
- package/package.json +4 -4
package/dist/eval/index.d.ts
CHANGED
|
@@ -359,6 +359,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
359
359
|
display_name?: string | undefined;
|
|
360
360
|
are_pins_interchangeable?: boolean | undefined;
|
|
361
361
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
362
|
+
display_max_resistance?: string | undefined;
|
|
362
363
|
} | {
|
|
363
364
|
type: "source_component";
|
|
364
365
|
name: string;
|
|
@@ -883,6 +884,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
883
884
|
display_name?: string | undefined;
|
|
884
885
|
are_pins_interchangeable?: boolean | undefined;
|
|
885
886
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
887
|
+
display_max_resistance?: string | undefined;
|
|
886
888
|
} | {
|
|
887
889
|
type: "source_component";
|
|
888
890
|
name: string;
|
|
@@ -2202,6 +2204,19 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2202
2204
|
subcircuit_id?: string | undefined;
|
|
2203
2205
|
pcb_group_id?: string | undefined;
|
|
2204
2206
|
color?: string | undefined;
|
|
2207
|
+
} | {
|
|
2208
|
+
type: "pcb_courtyard_circle";
|
|
2209
|
+
pcb_component_id: string;
|
|
2210
|
+
center: {
|
|
2211
|
+
x: number;
|
|
2212
|
+
y: number;
|
|
2213
|
+
};
|
|
2214
|
+
layer: "top" | "bottom";
|
|
2215
|
+
radius: number;
|
|
2216
|
+
pcb_courtyard_circle_id: string;
|
|
2217
|
+
subcircuit_id?: string | undefined;
|
|
2218
|
+
pcb_group_id?: string | undefined;
|
|
2219
|
+
color?: string | undefined;
|
|
2205
2220
|
} | {
|
|
2206
2221
|
x: number;
|
|
2207
2222
|
y: number;
|
|
@@ -2910,6 +2925,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2910
2925
|
display_name?: string | undefined;
|
|
2911
2926
|
are_pins_interchangeable?: boolean | undefined;
|
|
2912
2927
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2928
|
+
display_max_resistance?: string | undefined;
|
|
2913
2929
|
} | {
|
|
2914
2930
|
type: "source_component";
|
|
2915
2931
|
name: string;
|
|
@@ -3434,6 +3450,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3434
3450
|
display_name?: string | undefined;
|
|
3435
3451
|
are_pins_interchangeable?: boolean | undefined;
|
|
3436
3452
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
3453
|
+
display_max_resistance?: string | undefined;
|
|
3437
3454
|
} | {
|
|
3438
3455
|
type: "source_component";
|
|
3439
3456
|
name: string;
|
|
@@ -4753,6 +4770,19 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4753
4770
|
subcircuit_id?: string | undefined;
|
|
4754
4771
|
pcb_group_id?: string | undefined;
|
|
4755
4772
|
color?: string | undefined;
|
|
4773
|
+
} | {
|
|
4774
|
+
type: "pcb_courtyard_circle";
|
|
4775
|
+
pcb_component_id: string;
|
|
4776
|
+
center: {
|
|
4777
|
+
x: number;
|
|
4778
|
+
y: number;
|
|
4779
|
+
};
|
|
4780
|
+
layer: "top" | "bottom";
|
|
4781
|
+
radius: number;
|
|
4782
|
+
pcb_courtyard_circle_id: string;
|
|
4783
|
+
subcircuit_id?: string | undefined;
|
|
4784
|
+
pcb_group_id?: string | undefined;
|
|
4785
|
+
color?: string | undefined;
|
|
4756
4786
|
} | {
|
|
4757
4787
|
x: number;
|
|
4758
4788
|
y: number;
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -375,6 +375,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
375
375
|
display_name?: string | undefined;
|
|
376
376
|
are_pins_interchangeable?: boolean | undefined;
|
|
377
377
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
378
|
+
display_max_resistance?: string | undefined;
|
|
378
379
|
} | {
|
|
379
380
|
type: "source_component";
|
|
380
381
|
name: string;
|
|
@@ -899,6 +900,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
899
900
|
display_name?: string | undefined;
|
|
900
901
|
are_pins_interchangeable?: boolean | undefined;
|
|
901
902
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
903
|
+
display_max_resistance?: string | undefined;
|
|
902
904
|
} | {
|
|
903
905
|
type: "source_component";
|
|
904
906
|
name: string;
|
|
@@ -2218,6 +2220,19 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
2218
2220
|
subcircuit_id?: string | undefined;
|
|
2219
2221
|
pcb_group_id?: string | undefined;
|
|
2220
2222
|
color?: string | undefined;
|
|
2223
|
+
} | {
|
|
2224
|
+
type: "pcb_courtyard_circle";
|
|
2225
|
+
pcb_component_id: string;
|
|
2226
|
+
center: {
|
|
2227
|
+
x: number;
|
|
2228
|
+
y: number;
|
|
2229
|
+
};
|
|
2230
|
+
layer: "top" | "bottom";
|
|
2231
|
+
radius: number;
|
|
2232
|
+
pcb_courtyard_circle_id: string;
|
|
2233
|
+
subcircuit_id?: string | undefined;
|
|
2234
|
+
pcb_group_id?: string | undefined;
|
|
2235
|
+
color?: string | undefined;
|
|
2221
2236
|
} | {
|
|
2222
2237
|
x: number;
|
|
2223
2238
|
y: number;
|
|
@@ -2926,6 +2941,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
2926
2941
|
display_name?: string | undefined;
|
|
2927
2942
|
are_pins_interchangeable?: boolean | undefined;
|
|
2928
2943
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
2944
|
+
display_max_resistance?: string | undefined;
|
|
2929
2945
|
} | {
|
|
2930
2946
|
type: "source_component";
|
|
2931
2947
|
name: string;
|
|
@@ -3450,6 +3466,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3450
3466
|
display_name?: string | undefined;
|
|
3451
3467
|
are_pins_interchangeable?: boolean | undefined;
|
|
3452
3468
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
3469
|
+
display_max_resistance?: string | undefined;
|
|
3453
3470
|
} | {
|
|
3454
3471
|
type: "source_component";
|
|
3455
3472
|
name: string;
|
|
@@ -4769,6 +4786,19 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
4769
4786
|
subcircuit_id?: string | undefined;
|
|
4770
4787
|
pcb_group_id?: string | undefined;
|
|
4771
4788
|
color?: string | undefined;
|
|
4789
|
+
} | {
|
|
4790
|
+
type: "pcb_courtyard_circle";
|
|
4791
|
+
pcb_component_id: string;
|
|
4792
|
+
center: {
|
|
4793
|
+
x: number;
|
|
4794
|
+
y: number;
|
|
4795
|
+
};
|
|
4796
|
+
layer: "top" | "bottom";
|
|
4797
|
+
radius: number;
|
|
4798
|
+
pcb_courtyard_circle_id: string;
|
|
4799
|
+
subcircuit_id?: string | undefined;
|
|
4800
|
+
pcb_group_id?: string | undefined;
|
|
4801
|
+
color?: string | undefined;
|
|
4772
4802
|
} | {
|
|
4773
4803
|
x: number;
|
|
4774
4804
|
y: number;
|