circuit-json 0.0.295 → 0.0.297
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/README.md +20 -0
- package/dist/index.d.mts +88 -1
- package/dist/index.mjs +783 -766
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,6 +151,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
151
151
|
- [SchematicPath](#schematicpath)
|
|
152
152
|
- [SchematicPort](#schematicport)
|
|
153
153
|
- [SchematicRect](#schematicrect)
|
|
154
|
+
- [SchematicSheet](#schematicsheet)
|
|
154
155
|
- [SchematicTable](#schematictable)
|
|
155
156
|
- [SchematicTableCell](#schematictablecell)
|
|
156
157
|
- [SchematicText](#schematictext)
|
|
@@ -1179,6 +1180,7 @@ interface PcbFabricationNoteRect {
|
|
|
1179
1180
|
height: Length
|
|
1180
1181
|
layer: VisibleLayer
|
|
1181
1182
|
stroke_width: Length
|
|
1183
|
+
corner_radius?: Length
|
|
1182
1184
|
is_filled?: boolean
|
|
1183
1185
|
has_stroke?: boolean
|
|
1184
1186
|
is_stroke_dashed?: boolean
|
|
@@ -1482,6 +1484,7 @@ interface PcbNoteRect {
|
|
|
1482
1484
|
width: Length
|
|
1483
1485
|
height: Length
|
|
1484
1486
|
stroke_width: Length
|
|
1487
|
+
corner_radius?: Length
|
|
1485
1488
|
is_filled?: boolean
|
|
1486
1489
|
has_stroke?: boolean
|
|
1487
1490
|
is_stroke_dashed?: boolean
|
|
@@ -1846,6 +1849,7 @@ interface PcbSilkscreenRect {
|
|
|
1846
1849
|
height: Length
|
|
1847
1850
|
layer: LayerRef
|
|
1848
1851
|
stroke_width: Length
|
|
1852
|
+
corner_radius?: Length
|
|
1849
1853
|
is_filled?: boolean
|
|
1850
1854
|
has_stroke?: boolean
|
|
1851
1855
|
is_stroke_dashed?: boolean
|
|
@@ -2425,6 +2429,22 @@ interface SchematicRect {
|
|
|
2425
2429
|
}
|
|
2426
2430
|
```
|
|
2427
2431
|
|
|
2432
|
+
### SchematicSheet
|
|
2433
|
+
|
|
2434
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_sheet.ts)
|
|
2435
|
+
|
|
2436
|
+
Defines a schematic sheet or page that components can be placed on.
|
|
2437
|
+
|
|
2438
|
+
```typescript
|
|
2439
|
+
/** Defines a schematic sheet or page that components can be placed on. */
|
|
2440
|
+
interface SchematicSheet {
|
|
2441
|
+
type: "schematic_sheet"
|
|
2442
|
+
schematic_sheet_id: string
|
|
2443
|
+
name?: string
|
|
2444
|
+
subcircuit_id?: string
|
|
2445
|
+
}
|
|
2446
|
+
```
|
|
2447
|
+
|
|
2428
2448
|
### SchematicTable
|
|
2429
2449
|
|
|
2430
2450
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/schematic/schematic_table.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -3687,6 +3687,7 @@ declare const pcb_silkscreen_rect: z.ZodObject<{
|
|
|
3687
3687
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3688
3688
|
}>;
|
|
3689
3689
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3690
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3690
3691
|
is_filled: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3691
3692
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
3692
3693
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3704,6 +3705,7 @@ declare const pcb_silkscreen_rect: z.ZodObject<{
|
|
|
3704
3705
|
pcb_silkscreen_rect_id: string;
|
|
3705
3706
|
subcircuit_id?: string | undefined;
|
|
3706
3707
|
pcb_group_id?: string | undefined;
|
|
3708
|
+
corner_radius?: number | undefined;
|
|
3707
3709
|
is_filled?: boolean | undefined;
|
|
3708
3710
|
has_stroke?: boolean | undefined;
|
|
3709
3711
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -3721,6 +3723,7 @@ declare const pcb_silkscreen_rect: z.ZodObject<{
|
|
|
3721
3723
|
};
|
|
3722
3724
|
subcircuit_id?: string | undefined;
|
|
3723
3725
|
pcb_group_id?: string | undefined;
|
|
3726
|
+
corner_radius?: string | number | undefined;
|
|
3724
3727
|
stroke_width?: string | number | undefined;
|
|
3725
3728
|
pcb_silkscreen_rect_id?: string | undefined;
|
|
3726
3729
|
is_filled?: boolean | undefined;
|
|
@@ -3742,6 +3745,7 @@ interface PcbSilkscreenRect {
|
|
|
3742
3745
|
height: Length;
|
|
3743
3746
|
layer: LayerRef;
|
|
3744
3747
|
stroke_width: Length;
|
|
3748
|
+
corner_radius?: Length;
|
|
3745
3749
|
is_filled?: boolean;
|
|
3746
3750
|
has_stroke?: boolean;
|
|
3747
3751
|
is_stroke_dashed?: boolean;
|
|
@@ -4049,6 +4053,7 @@ declare const pcb_fabrication_note_rect: z.ZodObject<{
|
|
|
4049
4053
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4050
4054
|
layer: z.ZodEnum<["top", "bottom"]>;
|
|
4051
4055
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4056
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4052
4057
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
4053
4058
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
4054
4059
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4067,6 +4072,7 @@ declare const pcb_fabrication_note_rect: z.ZodObject<{
|
|
|
4067
4072
|
pcb_fabrication_note_rect_id: string;
|
|
4068
4073
|
subcircuit_id?: string | undefined;
|
|
4069
4074
|
pcb_group_id?: string | undefined;
|
|
4075
|
+
corner_radius?: number | undefined;
|
|
4070
4076
|
is_filled?: boolean | undefined;
|
|
4071
4077
|
has_stroke?: boolean | undefined;
|
|
4072
4078
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -4083,6 +4089,7 @@ declare const pcb_fabrication_note_rect: z.ZodObject<{
|
|
|
4083
4089
|
layer: "top" | "bottom";
|
|
4084
4090
|
subcircuit_id?: string | undefined;
|
|
4085
4091
|
pcb_group_id?: string | undefined;
|
|
4092
|
+
corner_radius?: string | number | undefined;
|
|
4086
4093
|
stroke_width?: string | number | undefined;
|
|
4087
4094
|
is_filled?: boolean | undefined;
|
|
4088
4095
|
has_stroke?: boolean | undefined;
|
|
@@ -4105,6 +4112,7 @@ interface PcbFabricationNoteRect {
|
|
|
4105
4112
|
height: Length;
|
|
4106
4113
|
layer: VisibleLayer;
|
|
4107
4114
|
stroke_width: Length;
|
|
4115
|
+
corner_radius?: Length;
|
|
4108
4116
|
is_filled?: boolean;
|
|
4109
4117
|
has_stroke?: boolean;
|
|
4110
4118
|
is_stroke_dashed?: boolean;
|
|
@@ -4341,6 +4349,7 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4341
4349
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4342
4350
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4343
4351
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4352
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4344
4353
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
4345
4354
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
4346
4355
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4359,6 +4368,7 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4359
4368
|
pcb_component_id?: string | undefined;
|
|
4360
4369
|
subcircuit_id?: string | undefined;
|
|
4361
4370
|
pcb_group_id?: string | undefined;
|
|
4371
|
+
corner_radius?: number | undefined;
|
|
4362
4372
|
text?: string | undefined;
|
|
4363
4373
|
is_filled?: boolean | undefined;
|
|
4364
4374
|
has_stroke?: boolean | undefined;
|
|
@@ -4376,6 +4386,7 @@ declare const pcb_note_rect: z.ZodObject<{
|
|
|
4376
4386
|
pcb_component_id?: string | undefined;
|
|
4377
4387
|
subcircuit_id?: string | undefined;
|
|
4378
4388
|
pcb_group_id?: string | undefined;
|
|
4389
|
+
corner_radius?: string | number | undefined;
|
|
4379
4390
|
text?: string | undefined;
|
|
4380
4391
|
stroke_width?: string | number | undefined;
|
|
4381
4392
|
is_filled?: boolean | undefined;
|
|
@@ -4400,6 +4411,7 @@ interface PcbNoteRect {
|
|
|
4400
4411
|
width: Length;
|
|
4401
4412
|
height: Length;
|
|
4402
4413
|
stroke_width: Length;
|
|
4414
|
+
corner_radius?: Length;
|
|
4403
4415
|
is_filled?: boolean;
|
|
4404
4416
|
has_stroke?: boolean;
|
|
4405
4417
|
is_stroke_dashed?: boolean;
|
|
@@ -8589,6 +8601,33 @@ interface SchematicTableCell {
|
|
|
8589
8601
|
subcircuit_id?: string;
|
|
8590
8602
|
}
|
|
8591
8603
|
|
|
8604
|
+
declare const schematic_sheet: z.ZodObject<{
|
|
8605
|
+
type: z.ZodLiteral<"schematic_sheet">;
|
|
8606
|
+
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8607
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8608
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8609
|
+
}, "strip", z.ZodTypeAny, {
|
|
8610
|
+
type: "schematic_sheet";
|
|
8611
|
+
schematic_sheet_id: string;
|
|
8612
|
+
name?: string | undefined;
|
|
8613
|
+
subcircuit_id?: string | undefined;
|
|
8614
|
+
}, {
|
|
8615
|
+
type: "schematic_sheet";
|
|
8616
|
+
name?: string | undefined;
|
|
8617
|
+
subcircuit_id?: string | undefined;
|
|
8618
|
+
schematic_sheet_id?: string | undefined;
|
|
8619
|
+
}>;
|
|
8620
|
+
type SchematicSheetInput = z.input<typeof schematic_sheet>;
|
|
8621
|
+
/**
|
|
8622
|
+
* Defines a schematic sheet or page that components can be placed on.
|
|
8623
|
+
*/
|
|
8624
|
+
interface SchematicSheet {
|
|
8625
|
+
type: "schematic_sheet";
|
|
8626
|
+
schematic_sheet_id: string;
|
|
8627
|
+
name?: string;
|
|
8628
|
+
subcircuit_id?: string;
|
|
8629
|
+
}
|
|
8630
|
+
|
|
8592
8631
|
interface SourceComponentBase {
|
|
8593
8632
|
type: "source_component";
|
|
8594
8633
|
ftype?: string;
|
|
@@ -15973,6 +16012,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15973
16012
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
15974
16013
|
}>;
|
|
15975
16014
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16015
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15976
16016
|
is_filled: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
15977
16017
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
15978
16018
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15990,6 +16030,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15990
16030
|
pcb_silkscreen_rect_id: string;
|
|
15991
16031
|
subcircuit_id?: string | undefined;
|
|
15992
16032
|
pcb_group_id?: string | undefined;
|
|
16033
|
+
corner_radius?: number | undefined;
|
|
15993
16034
|
is_filled?: boolean | undefined;
|
|
15994
16035
|
has_stroke?: boolean | undefined;
|
|
15995
16036
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -16007,6 +16048,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16007
16048
|
};
|
|
16008
16049
|
subcircuit_id?: string | undefined;
|
|
16009
16050
|
pcb_group_id?: string | undefined;
|
|
16051
|
+
corner_radius?: string | number | undefined;
|
|
16010
16052
|
stroke_width?: string | number | undefined;
|
|
16011
16053
|
pcb_silkscreen_rect_id?: string | undefined;
|
|
16012
16054
|
is_filled?: boolean | undefined;
|
|
@@ -16429,6 +16471,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16429
16471
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16430
16472
|
layer: z.ZodEnum<["top", "bottom"]>;
|
|
16431
16473
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16474
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16432
16475
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
16433
16476
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
16434
16477
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16447,6 +16490,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16447
16490
|
pcb_fabrication_note_rect_id: string;
|
|
16448
16491
|
subcircuit_id?: string | undefined;
|
|
16449
16492
|
pcb_group_id?: string | undefined;
|
|
16493
|
+
corner_radius?: number | undefined;
|
|
16450
16494
|
is_filled?: boolean | undefined;
|
|
16451
16495
|
has_stroke?: boolean | undefined;
|
|
16452
16496
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -16463,6 +16507,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16463
16507
|
layer: "top" | "bottom";
|
|
16464
16508
|
subcircuit_id?: string | undefined;
|
|
16465
16509
|
pcb_group_id?: string | undefined;
|
|
16510
|
+
corner_radius?: string | number | undefined;
|
|
16466
16511
|
stroke_width?: string | number | undefined;
|
|
16467
16512
|
is_filled?: boolean | undefined;
|
|
16468
16513
|
has_stroke?: boolean | undefined;
|
|
@@ -16643,6 +16688,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16643
16688
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16644
16689
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
16645
16690
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16691
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16646
16692
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
16647
16693
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
16648
16694
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16661,6 +16707,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16661
16707
|
pcb_component_id?: string | undefined;
|
|
16662
16708
|
subcircuit_id?: string | undefined;
|
|
16663
16709
|
pcb_group_id?: string | undefined;
|
|
16710
|
+
corner_radius?: number | undefined;
|
|
16664
16711
|
text?: string | undefined;
|
|
16665
16712
|
is_filled?: boolean | undefined;
|
|
16666
16713
|
has_stroke?: boolean | undefined;
|
|
@@ -16678,6 +16725,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16678
16725
|
pcb_component_id?: string | undefined;
|
|
16679
16726
|
subcircuit_id?: string | undefined;
|
|
16680
16727
|
pcb_group_id?: string | undefined;
|
|
16728
|
+
corner_radius?: string | number | undefined;
|
|
16681
16729
|
text?: string | undefined;
|
|
16682
16730
|
stroke_width?: string | number | undefined;
|
|
16683
16731
|
is_filled?: boolean | undefined;
|
|
@@ -18786,6 +18834,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18786
18834
|
is_subcircuit?: boolean | undefined;
|
|
18787
18835
|
schematic_group_id?: string | undefined;
|
|
18788
18836
|
show_as_schematic_box?: boolean | undefined;
|
|
18837
|
+
}>, z.ZodObject<{
|
|
18838
|
+
type: z.ZodLiteral<"schematic_sheet">;
|
|
18839
|
+
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
18840
|
+
name: z.ZodOptional<z.ZodString>;
|
|
18841
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18842
|
+
}, "strip", z.ZodTypeAny, {
|
|
18843
|
+
type: "schematic_sheet";
|
|
18844
|
+
schematic_sheet_id: string;
|
|
18845
|
+
name?: string | undefined;
|
|
18846
|
+
subcircuit_id?: string | undefined;
|
|
18847
|
+
}, {
|
|
18848
|
+
type: "schematic_sheet";
|
|
18849
|
+
name?: string | undefined;
|
|
18850
|
+
subcircuit_id?: string | undefined;
|
|
18851
|
+
schematic_sheet_id?: string | undefined;
|
|
18789
18852
|
}>, z.ZodObject<{
|
|
18790
18853
|
type: z.ZodLiteral<"schematic_table">;
|
|
18791
18854
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -23429,6 +23492,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23429
23492
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
23430
23493
|
}>;
|
|
23431
23494
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23495
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23432
23496
|
is_filled: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
23433
23497
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
23434
23498
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23446,6 +23510,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23446
23510
|
pcb_silkscreen_rect_id: string;
|
|
23447
23511
|
subcircuit_id?: string | undefined;
|
|
23448
23512
|
pcb_group_id?: string | undefined;
|
|
23513
|
+
corner_radius?: number | undefined;
|
|
23449
23514
|
is_filled?: boolean | undefined;
|
|
23450
23515
|
has_stroke?: boolean | undefined;
|
|
23451
23516
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -23463,6 +23528,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23463
23528
|
};
|
|
23464
23529
|
subcircuit_id?: string | undefined;
|
|
23465
23530
|
pcb_group_id?: string | undefined;
|
|
23531
|
+
corner_radius?: string | number | undefined;
|
|
23466
23532
|
stroke_width?: string | number | undefined;
|
|
23467
23533
|
pcb_silkscreen_rect_id?: string | undefined;
|
|
23468
23534
|
is_filled?: boolean | undefined;
|
|
@@ -23885,6 +23951,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23885
23951
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23886
23952
|
layer: z.ZodEnum<["top", "bottom"]>;
|
|
23887
23953
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23954
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
23888
23955
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
23889
23956
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
23890
23957
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23903,6 +23970,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23903
23970
|
pcb_fabrication_note_rect_id: string;
|
|
23904
23971
|
subcircuit_id?: string | undefined;
|
|
23905
23972
|
pcb_group_id?: string | undefined;
|
|
23973
|
+
corner_radius?: number | undefined;
|
|
23906
23974
|
is_filled?: boolean | undefined;
|
|
23907
23975
|
has_stroke?: boolean | undefined;
|
|
23908
23976
|
is_stroke_dashed?: boolean | undefined;
|
|
@@ -23919,6 +23987,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23919
23987
|
layer: "top" | "bottom";
|
|
23920
23988
|
subcircuit_id?: string | undefined;
|
|
23921
23989
|
pcb_group_id?: string | undefined;
|
|
23990
|
+
corner_radius?: string | number | undefined;
|
|
23922
23991
|
stroke_width?: string | number | undefined;
|
|
23923
23992
|
is_filled?: boolean | undefined;
|
|
23924
23993
|
has_stroke?: boolean | undefined;
|
|
@@ -24099,6 +24168,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24099
24168
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
24100
24169
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
24101
24170
|
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24171
|
+
corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24102
24172
|
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
24103
24173
|
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
24104
24174
|
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24117,6 +24187,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24117
24187
|
pcb_component_id?: string | undefined;
|
|
24118
24188
|
subcircuit_id?: string | undefined;
|
|
24119
24189
|
pcb_group_id?: string | undefined;
|
|
24190
|
+
corner_radius?: number | undefined;
|
|
24120
24191
|
text?: string | undefined;
|
|
24121
24192
|
is_filled?: boolean | undefined;
|
|
24122
24193
|
has_stroke?: boolean | undefined;
|
|
@@ -24134,6 +24205,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24134
24205
|
pcb_component_id?: string | undefined;
|
|
24135
24206
|
subcircuit_id?: string | undefined;
|
|
24136
24207
|
pcb_group_id?: string | undefined;
|
|
24208
|
+
corner_radius?: string | number | undefined;
|
|
24137
24209
|
text?: string | undefined;
|
|
24138
24210
|
stroke_width?: string | number | undefined;
|
|
24139
24211
|
is_filled?: boolean | undefined;
|
|
@@ -26242,6 +26314,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
26242
26314
|
is_subcircuit?: boolean | undefined;
|
|
26243
26315
|
schematic_group_id?: string | undefined;
|
|
26244
26316
|
show_as_schematic_box?: boolean | undefined;
|
|
26317
|
+
}>, z.ZodObject<{
|
|
26318
|
+
type: z.ZodLiteral<"schematic_sheet">;
|
|
26319
|
+
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
26320
|
+
name: z.ZodOptional<z.ZodString>;
|
|
26321
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
26322
|
+
}, "strip", z.ZodTypeAny, {
|
|
26323
|
+
type: "schematic_sheet";
|
|
26324
|
+
schematic_sheet_id: string;
|
|
26325
|
+
name?: string | undefined;
|
|
26326
|
+
subcircuit_id?: string | undefined;
|
|
26327
|
+
}, {
|
|
26328
|
+
type: "schematic_sheet";
|
|
26329
|
+
name?: string | undefined;
|
|
26330
|
+
subcircuit_id?: string | undefined;
|
|
26331
|
+
schematic_sheet_id?: string | undefined;
|
|
26245
26332
|
}>, z.ZodObject<{
|
|
26246
26333
|
type: z.ZodLiteral<"schematic_table">;
|
|
26247
26334
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -26691,4 +26778,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
26691
26778
|
*/
|
|
26692
26779
|
type CircuitJson = AnyCircuitElement[];
|
|
26693
26780
|
|
|
26694
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
26781
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|