@tscircuit/eval 0.0.544 → 0.0.546
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 +12 -0
- package/dist/eval/index.js +2 -2
- package/dist/lib/index.d.ts +12 -0
- package/dist/lib/index.js +2 -2
- package/dist/webworker/entrypoint.js +4 -4
- package/package.json +3 -3
package/dist/lib/index.d.ts
CHANGED
|
@@ -879,6 +879,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
879
879
|
pcb_hole_id: string;
|
|
880
880
|
hole_shape: "circle" | "square";
|
|
881
881
|
hole_diameter: number;
|
|
882
|
+
pcb_component_id?: string | undefined;
|
|
882
883
|
subcircuit_id?: string | undefined;
|
|
883
884
|
pcb_group_id?: string | undefined;
|
|
884
885
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -891,6 +892,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
891
892
|
hole_shape: "oval";
|
|
892
893
|
hole_width: number;
|
|
893
894
|
hole_height: number;
|
|
895
|
+
pcb_component_id?: string | undefined;
|
|
894
896
|
subcircuit_id?: string | undefined;
|
|
895
897
|
pcb_group_id?: string | undefined;
|
|
896
898
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -903,6 +905,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
903
905
|
hole_shape: "pill";
|
|
904
906
|
hole_width: number;
|
|
905
907
|
hole_height: number;
|
|
908
|
+
pcb_component_id?: string | undefined;
|
|
906
909
|
subcircuit_id?: string | undefined;
|
|
907
910
|
pcb_group_id?: string | undefined;
|
|
908
911
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -916,6 +919,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
916
919
|
hole_width: number;
|
|
917
920
|
hole_height: number;
|
|
918
921
|
ccw_rotation: number;
|
|
922
|
+
pcb_component_id?: string | undefined;
|
|
919
923
|
subcircuit_id?: string | undefined;
|
|
920
924
|
pcb_group_id?: string | undefined;
|
|
921
925
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -927,6 +931,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
927
931
|
pcb_hole_id: string;
|
|
928
932
|
hole_shape: "circle";
|
|
929
933
|
hole_diameter: number;
|
|
934
|
+
pcb_component_id?: string | undefined;
|
|
930
935
|
subcircuit_id?: string | undefined;
|
|
931
936
|
pcb_group_id?: string | undefined;
|
|
932
937
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -939,6 +944,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
|
|
|
939
944
|
hole_shape: "rect";
|
|
940
945
|
hole_width: number;
|
|
941
946
|
hole_height: number;
|
|
947
|
+
pcb_component_id?: string | undefined;
|
|
942
948
|
subcircuit_id?: string | undefined;
|
|
943
949
|
pcb_group_id?: string | undefined;
|
|
944
950
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3204,6 +3210,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3204
3210
|
pcb_hole_id: string;
|
|
3205
3211
|
hole_shape: "circle" | "square";
|
|
3206
3212
|
hole_diameter: number;
|
|
3213
|
+
pcb_component_id?: string | undefined;
|
|
3207
3214
|
subcircuit_id?: string | undefined;
|
|
3208
3215
|
pcb_group_id?: string | undefined;
|
|
3209
3216
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3216,6 +3223,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3216
3223
|
hole_shape: "oval";
|
|
3217
3224
|
hole_width: number;
|
|
3218
3225
|
hole_height: number;
|
|
3226
|
+
pcb_component_id?: string | undefined;
|
|
3219
3227
|
subcircuit_id?: string | undefined;
|
|
3220
3228
|
pcb_group_id?: string | undefined;
|
|
3221
3229
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3228,6 +3236,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3228
3236
|
hole_shape: "pill";
|
|
3229
3237
|
hole_width: number;
|
|
3230
3238
|
hole_height: number;
|
|
3239
|
+
pcb_component_id?: string | undefined;
|
|
3231
3240
|
subcircuit_id?: string | undefined;
|
|
3232
3241
|
pcb_group_id?: string | undefined;
|
|
3233
3242
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3241,6 +3250,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3241
3250
|
hole_width: number;
|
|
3242
3251
|
hole_height: number;
|
|
3243
3252
|
ccw_rotation: number;
|
|
3253
|
+
pcb_component_id?: string | undefined;
|
|
3244
3254
|
subcircuit_id?: string | undefined;
|
|
3245
3255
|
pcb_group_id?: string | undefined;
|
|
3246
3256
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3252,6 +3262,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3252
3262
|
pcb_hole_id: string;
|
|
3253
3263
|
hole_shape: "circle";
|
|
3254
3264
|
hole_diameter: number;
|
|
3265
|
+
pcb_component_id?: string | undefined;
|
|
3255
3266
|
subcircuit_id?: string | undefined;
|
|
3256
3267
|
pcb_group_id?: string | undefined;
|
|
3257
3268
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
@@ -3264,6 +3275,7 @@ declare const runTscircuitModule: (module: string, opts?: {
|
|
|
3264
3275
|
hole_shape: "rect";
|
|
3265
3276
|
hole_width: number;
|
|
3266
3277
|
hole_height: number;
|
|
3278
|
+
pcb_component_id?: string | undefined;
|
|
3267
3279
|
subcircuit_id?: string | undefined;
|
|
3268
3280
|
pcb_group_id?: string | undefined;
|
|
3269
3281
|
is_covered_with_solder_mask?: boolean | undefined;
|