@tscircuit/eval 0.0.442 → 0.0.444

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.
@@ -1379,6 +1379,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1379
1379
  pcb_silkscreen_rect_id: string;
1380
1380
  subcircuit_id?: string | undefined;
1381
1381
  pcb_group_id?: string | undefined;
1382
+ corner_radius?: number | undefined;
1382
1383
  is_filled?: boolean | undefined;
1383
1384
  has_stroke?: boolean | undefined;
1384
1385
  is_stroke_dashed?: boolean | undefined;
@@ -1511,6 +1512,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1511
1512
  pcb_fabrication_note_rect_id: string;
1512
1513
  subcircuit_id?: string | undefined;
1513
1514
  pcb_group_id?: string | undefined;
1515
+ corner_radius?: number | undefined;
1514
1516
  is_filled?: boolean | undefined;
1515
1517
  has_stroke?: boolean | undefined;
1516
1518
  is_stroke_dashed?: boolean | undefined;
@@ -1572,6 +1574,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1572
1574
  pcb_component_id?: string | undefined;
1573
1575
  subcircuit_id?: string | undefined;
1574
1576
  pcb_group_id?: string | undefined;
1577
+ corner_radius?: number | undefined;
1575
1578
  text?: string | undefined;
1576
1579
  is_filled?: boolean | undefined;
1577
1580
  has_stroke?: boolean | undefined;
@@ -2129,6 +2132,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
2129
2132
  subcircuit_id?: string | undefined;
2130
2133
  is_subcircuit?: boolean | undefined;
2131
2134
  show_as_schematic_box?: boolean | undefined;
2135
+ } | {
2136
+ type: "schematic_sheet";
2137
+ schematic_sheet_id: string;
2138
+ name?: string | undefined;
2139
+ subcircuit_id?: string | undefined;
2132
2140
  } | {
2133
2141
  type: "schematic_table";
2134
2142
  anchor_position: {
@@ -3512,6 +3520,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3512
3520
  pcb_silkscreen_rect_id: string;
3513
3521
  subcircuit_id?: string | undefined;
3514
3522
  pcb_group_id?: string | undefined;
3523
+ corner_radius?: number | undefined;
3515
3524
  is_filled?: boolean | undefined;
3516
3525
  has_stroke?: boolean | undefined;
3517
3526
  is_stroke_dashed?: boolean | undefined;
@@ -3644,6 +3653,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3644
3653
  pcb_fabrication_note_rect_id: string;
3645
3654
  subcircuit_id?: string | undefined;
3646
3655
  pcb_group_id?: string | undefined;
3656
+ corner_radius?: number | undefined;
3647
3657
  is_filled?: boolean | undefined;
3648
3658
  has_stroke?: boolean | undefined;
3649
3659
  is_stroke_dashed?: boolean | undefined;
@@ -3705,6 +3715,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3705
3715
  pcb_component_id?: string | undefined;
3706
3716
  subcircuit_id?: string | undefined;
3707
3717
  pcb_group_id?: string | undefined;
3718
+ corner_radius?: number | undefined;
3708
3719
  text?: string | undefined;
3709
3720
  is_filled?: boolean | undefined;
3710
3721
  has_stroke?: boolean | undefined;
@@ -4262,6 +4273,11 @@ declare const runTscircuitModule: (module: string, opts?: {
4262
4273
  subcircuit_id?: string | undefined;
4263
4274
  is_subcircuit?: boolean | undefined;
4264
4275
  show_as_schematic_box?: boolean | undefined;
4276
+ } | {
4277
+ type: "schematic_sheet";
4278
+ schematic_sheet_id: string;
4279
+ name?: string | undefined;
4280
+ subcircuit_id?: string | undefined;
4265
4281
  } | {
4266
4282
  type: "schematic_table";
4267
4283
  anchor_position: {
@@ -1395,6 +1395,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1395
1395
  pcb_silkscreen_rect_id: string;
1396
1396
  subcircuit_id?: string | undefined;
1397
1397
  pcb_group_id?: string | undefined;
1398
+ corner_radius?: number | undefined;
1398
1399
  is_filled?: boolean | undefined;
1399
1400
  has_stroke?: boolean | undefined;
1400
1401
  is_stroke_dashed?: boolean | undefined;
@@ -1527,6 +1528,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1527
1528
  pcb_fabrication_note_rect_id: string;
1528
1529
  subcircuit_id?: string | undefined;
1529
1530
  pcb_group_id?: string | undefined;
1531
+ corner_radius?: number | undefined;
1530
1532
  is_filled?: boolean | undefined;
1531
1533
  has_stroke?: boolean | undefined;
1532
1534
  is_stroke_dashed?: boolean | undefined;
@@ -1588,6 +1590,7 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
1588
1590
  pcb_component_id?: string | undefined;
1589
1591
  subcircuit_id?: string | undefined;
1590
1592
  pcb_group_id?: string | undefined;
1593
+ corner_radius?: number | undefined;
1591
1594
  text?: string | undefined;
1592
1595
  is_filled?: boolean | undefined;
1593
1596
  has_stroke?: boolean | undefined;
@@ -2145,6 +2148,11 @@ declare function runTscircuitCode(filesystemOrCodeString: Record<string, string>
2145
2148
  subcircuit_id?: string | undefined;
2146
2149
  is_subcircuit?: boolean | undefined;
2147
2150
  show_as_schematic_box?: boolean | undefined;
2151
+ } | {
2152
+ type: "schematic_sheet";
2153
+ schematic_sheet_id: string;
2154
+ name?: string | undefined;
2155
+ subcircuit_id?: string | undefined;
2148
2156
  } | {
2149
2157
  type: "schematic_table";
2150
2158
  anchor_position: {
@@ -3528,6 +3536,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3528
3536
  pcb_silkscreen_rect_id: string;
3529
3537
  subcircuit_id?: string | undefined;
3530
3538
  pcb_group_id?: string | undefined;
3539
+ corner_radius?: number | undefined;
3531
3540
  is_filled?: boolean | undefined;
3532
3541
  has_stroke?: boolean | undefined;
3533
3542
  is_stroke_dashed?: boolean | undefined;
@@ -3660,6 +3669,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3660
3669
  pcb_fabrication_note_rect_id: string;
3661
3670
  subcircuit_id?: string | undefined;
3662
3671
  pcb_group_id?: string | undefined;
3672
+ corner_radius?: number | undefined;
3663
3673
  is_filled?: boolean | undefined;
3664
3674
  has_stroke?: boolean | undefined;
3665
3675
  is_stroke_dashed?: boolean | undefined;
@@ -3721,6 +3731,7 @@ declare const runTscircuitModule: (module: string, opts?: {
3721
3731
  pcb_component_id?: string | undefined;
3722
3732
  subcircuit_id?: string | undefined;
3723
3733
  pcb_group_id?: string | undefined;
3734
+ corner_radius?: number | undefined;
3724
3735
  text?: string | undefined;
3725
3736
  is_filled?: boolean | undefined;
3726
3737
  has_stroke?: boolean | undefined;
@@ -4278,6 +4289,11 @@ declare const runTscircuitModule: (module: string, opts?: {
4278
4289
  subcircuit_id?: string | undefined;
4279
4290
  is_subcircuit?: boolean | undefined;
4280
4291
  show_as_schematic_box?: boolean | undefined;
4292
+ } | {
4293
+ type: "schematic_sheet";
4294
+ schematic_sheet_id: string;
4295
+ name?: string | undefined;
4296
+ subcircuit_id?: string | undefined;
4281
4297
  } | {
4282
4298
  type: "schematic_table";
4283
4299
  anchor_position: {