@tscircuit/eval 0.0.544 → 0.0.545

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.
@@ -863,6 +863,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
863
863
  pcb_hole_id: string;
864
864
  hole_shape: "circle" | "square";
865
865
  hole_diameter: number;
866
+ pcb_component_id?: string | undefined;
866
867
  subcircuit_id?: string | undefined;
867
868
  pcb_group_id?: string | undefined;
868
869
  is_covered_with_solder_mask?: boolean | undefined;
@@ -875,6 +876,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
875
876
  hole_shape: "oval";
876
877
  hole_width: number;
877
878
  hole_height: number;
879
+ pcb_component_id?: string | undefined;
878
880
  subcircuit_id?: string | undefined;
879
881
  pcb_group_id?: string | undefined;
880
882
  is_covered_with_solder_mask?: boolean | undefined;
@@ -887,6 +889,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
887
889
  hole_shape: "pill";
888
890
  hole_width: number;
889
891
  hole_height: number;
892
+ pcb_component_id?: string | undefined;
890
893
  subcircuit_id?: string | undefined;
891
894
  pcb_group_id?: string | undefined;
892
895
  is_covered_with_solder_mask?: boolean | undefined;
@@ -900,6 +903,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
900
903
  hole_width: number;
901
904
  hole_height: number;
902
905
  ccw_rotation: number;
906
+ pcb_component_id?: string | undefined;
903
907
  subcircuit_id?: string | undefined;
904
908
  pcb_group_id?: string | undefined;
905
909
  is_covered_with_solder_mask?: boolean | undefined;
@@ -911,6 +915,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
911
915
  pcb_hole_id: string;
912
916
  hole_shape: "circle";
913
917
  hole_diameter: number;
918
+ pcb_component_id?: string | undefined;
914
919
  subcircuit_id?: string | undefined;
915
920
  pcb_group_id?: string | undefined;
916
921
  is_covered_with_solder_mask?: boolean | undefined;
@@ -923,6 +928,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
923
928
  hole_shape: "rect";
924
929
  hole_width: number;
925
930
  hole_height: number;
931
+ pcb_component_id?: string | undefined;
926
932
  subcircuit_id?: string | undefined;
927
933
  pcb_group_id?: string | undefined;
928
934
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3188,6 +3194,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3188
3194
  pcb_hole_id: string;
3189
3195
  hole_shape: "circle" | "square";
3190
3196
  hole_diameter: number;
3197
+ pcb_component_id?: string | undefined;
3191
3198
  subcircuit_id?: string | undefined;
3192
3199
  pcb_group_id?: string | undefined;
3193
3200
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3200,6 +3207,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3200
3207
  hole_shape: "oval";
3201
3208
  hole_width: number;
3202
3209
  hole_height: number;
3210
+ pcb_component_id?: string | undefined;
3203
3211
  subcircuit_id?: string | undefined;
3204
3212
  pcb_group_id?: string | undefined;
3205
3213
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3212,6 +3220,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3212
3220
  hole_shape: "pill";
3213
3221
  hole_width: number;
3214
3222
  hole_height: number;
3223
+ pcb_component_id?: string | undefined;
3215
3224
  subcircuit_id?: string | undefined;
3216
3225
  pcb_group_id?: string | undefined;
3217
3226
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3225,6 +3234,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3225
3234
  hole_width: number;
3226
3235
  hole_height: number;
3227
3236
  ccw_rotation: number;
3237
+ pcb_component_id?: string | undefined;
3228
3238
  subcircuit_id?: string | undefined;
3229
3239
  pcb_group_id?: string | undefined;
3230
3240
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3236,6 +3246,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3236
3246
  pcb_hole_id: string;
3237
3247
  hole_shape: "circle";
3238
3248
  hole_diameter: number;
3249
+ pcb_component_id?: string | undefined;
3239
3250
  subcircuit_id?: string | undefined;
3240
3251
  pcb_group_id?: string | undefined;
3241
3252
  is_covered_with_solder_mask?: boolean | undefined;
@@ -3248,6 +3259,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3248
3259
  hole_shape: "rect";
3249
3260
  hole_width: number;
3250
3261
  hole_height: number;
3262
+ pcb_component_id?: string | undefined;
3251
3263
  subcircuit_id?: string | undefined;
3252
3264
  pcb_group_id?: string | undefined;
3253
3265
  is_covered_with_solder_mask?: boolean | undefined;
@@ -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;