circuit-json 0.0.440 → 0.0.441
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 +16 -0
- package/dist/index.d.mts +150 -0
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12848,6 +12848,7 @@ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbS
|
|
|
12848
12848
|
|
|
12849
12849
|
interface SchematicBox {
|
|
12850
12850
|
type: "schematic_box";
|
|
12851
|
+
schematic_sheet_id?: string;
|
|
12851
12852
|
schematic_component_id?: string;
|
|
12852
12853
|
schematic_symbol_id?: string;
|
|
12853
12854
|
width: number;
|
|
@@ -12859,6 +12860,7 @@ interface SchematicBox {
|
|
|
12859
12860
|
}
|
|
12860
12861
|
declare const schematic_box: z.ZodObject<{
|
|
12861
12862
|
type: z.ZodLiteral<"schematic_box">;
|
|
12863
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
12862
12864
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
12863
12865
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
12864
12866
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12875,6 +12877,7 @@ declare const schematic_box: z.ZodObject<{
|
|
|
12875
12877
|
height: number;
|
|
12876
12878
|
is_dashed: boolean;
|
|
12877
12879
|
subcircuit_id?: string | undefined;
|
|
12880
|
+
schematic_sheet_id?: string | undefined;
|
|
12878
12881
|
schematic_component_id?: string | undefined;
|
|
12879
12882
|
schematic_symbol_id?: string | undefined;
|
|
12880
12883
|
}, {
|
|
@@ -12885,6 +12888,7 @@ declare const schematic_box: z.ZodObject<{
|
|
|
12885
12888
|
height: string | number;
|
|
12886
12889
|
subcircuit_id?: string | undefined;
|
|
12887
12890
|
is_dashed?: boolean | undefined;
|
|
12891
|
+
schematic_sheet_id?: string | undefined;
|
|
12888
12892
|
schematic_component_id?: string | undefined;
|
|
12889
12893
|
schematic_symbol_id?: string | undefined;
|
|
12890
12894
|
}>;
|
|
@@ -12893,6 +12897,7 @@ type SchematicBoxInput = z.input<typeof schematic_box>;
|
|
|
12893
12897
|
interface SchematicPath {
|
|
12894
12898
|
type: "schematic_path";
|
|
12895
12899
|
schematic_path_id: string;
|
|
12900
|
+
schematic_sheet_id?: string;
|
|
12896
12901
|
schematic_component_id?: string;
|
|
12897
12902
|
schematic_symbol_id?: string;
|
|
12898
12903
|
fill_color?: string;
|
|
@@ -12908,6 +12913,7 @@ interface SchematicPath {
|
|
|
12908
12913
|
declare const schematic_path: z.ZodObject<{
|
|
12909
12914
|
type: z.ZodLiteral<"schematic_path">;
|
|
12910
12915
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12916
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
12911
12917
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
12912
12918
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
12913
12919
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -12939,6 +12945,7 @@ declare const schematic_path: z.ZodObject<{
|
|
|
12939
12945
|
subcircuit_id?: string | undefined;
|
|
12940
12946
|
stroke_width?: number | null | undefined;
|
|
12941
12947
|
is_filled?: boolean | undefined;
|
|
12948
|
+
schematic_sheet_id?: string | undefined;
|
|
12942
12949
|
schematic_component_id?: string | undefined;
|
|
12943
12950
|
schematic_symbol_id?: string | undefined;
|
|
12944
12951
|
fill_color?: string | undefined;
|
|
@@ -12955,6 +12962,7 @@ declare const schematic_path: z.ZodObject<{
|
|
|
12955
12962
|
stroke_width?: string | number | null | undefined;
|
|
12956
12963
|
is_filled?: boolean | undefined;
|
|
12957
12964
|
is_dashed?: boolean | undefined;
|
|
12965
|
+
schematic_sheet_id?: string | undefined;
|
|
12958
12966
|
schematic_component_id?: string | undefined;
|
|
12959
12967
|
schematic_symbol_id?: string | undefined;
|
|
12960
12968
|
schematic_path_id?: string | undefined;
|
|
@@ -13012,6 +13020,7 @@ interface SchematicComponent {
|
|
|
13012
13020
|
center: Point;
|
|
13013
13021
|
source_component_id?: string;
|
|
13014
13022
|
schematic_component_id: string;
|
|
13023
|
+
schematic_sheet_id?: string;
|
|
13015
13024
|
schematic_symbol_id?: string;
|
|
13016
13025
|
pin_spacing?: number;
|
|
13017
13026
|
pin_styles?: Record<string, {
|
|
@@ -13238,6 +13247,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
13238
13247
|
}>;
|
|
13239
13248
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
13240
13249
|
schematic_component_id: z.ZodString;
|
|
13250
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
13241
13251
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
13242
13252
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13243
13253
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -13371,6 +13381,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
13371
13381
|
source_component_id?: string | undefined;
|
|
13372
13382
|
subcircuit_id?: string | undefined;
|
|
13373
13383
|
source_group_id?: string | undefined;
|
|
13384
|
+
schematic_sheet_id?: string | undefined;
|
|
13374
13385
|
schematic_symbol_id?: string | undefined;
|
|
13375
13386
|
pin_spacing?: number | undefined;
|
|
13376
13387
|
pin_styles?: Record<string, {
|
|
@@ -13422,6 +13433,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
13422
13433
|
source_component_id?: string | undefined;
|
|
13423
13434
|
subcircuit_id?: string | undefined;
|
|
13424
13435
|
source_group_id?: string | undefined;
|
|
13436
|
+
schematic_sheet_id?: string | undefined;
|
|
13425
13437
|
schematic_symbol_id?: string | undefined;
|
|
13426
13438
|
pin_spacing?: string | number | undefined;
|
|
13427
13439
|
pin_styles?: Record<string, {
|
|
@@ -24349,6 +24361,7 @@ type SchematicSymbolInput = z.input<typeof schematic_symbol>;
|
|
|
24349
24361
|
interface SchematicLine {
|
|
24350
24362
|
type: "schematic_line";
|
|
24351
24363
|
schematic_line_id: string;
|
|
24364
|
+
schematic_sheet_id?: string;
|
|
24352
24365
|
schematic_component_id?: string;
|
|
24353
24366
|
schematic_symbol_id?: string;
|
|
24354
24367
|
x1: number;
|
|
@@ -24365,6 +24378,7 @@ interface SchematicLine {
|
|
|
24365
24378
|
declare const schematic_line: z.ZodObject<{
|
|
24366
24379
|
type: z.ZodLiteral<"schematic_line">;
|
|
24367
24380
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24381
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24368
24382
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24369
24383
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
24370
24384
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -24388,6 +24402,7 @@ declare const schematic_line: z.ZodObject<{
|
|
|
24388
24402
|
schematic_line_id: string;
|
|
24389
24403
|
subcircuit_id?: string | undefined;
|
|
24390
24404
|
stroke_width?: number | null | undefined;
|
|
24405
|
+
schematic_sheet_id?: string | undefined;
|
|
24391
24406
|
schematic_component_id?: string | undefined;
|
|
24392
24407
|
schematic_symbol_id?: string | undefined;
|
|
24393
24408
|
dash_length?: number | undefined;
|
|
@@ -24402,6 +24417,7 @@ declare const schematic_line: z.ZodObject<{
|
|
|
24402
24417
|
stroke_width?: string | number | null | undefined;
|
|
24403
24418
|
color?: string | undefined;
|
|
24404
24419
|
is_dashed?: boolean | undefined;
|
|
24420
|
+
schematic_sheet_id?: string | undefined;
|
|
24405
24421
|
schematic_component_id?: string | undefined;
|
|
24406
24422
|
schematic_symbol_id?: string | undefined;
|
|
24407
24423
|
dash_length?: string | number | undefined;
|
|
@@ -24414,6 +24430,7 @@ type SchematicLineInput = z.input<typeof schematic_line>;
|
|
|
24414
24430
|
interface SchematicRect {
|
|
24415
24431
|
type: "schematic_rect";
|
|
24416
24432
|
schematic_rect_id: string;
|
|
24433
|
+
schematic_sheet_id?: string;
|
|
24417
24434
|
schematic_component_id?: string;
|
|
24418
24435
|
schematic_symbol_id?: string;
|
|
24419
24436
|
center: Point;
|
|
@@ -24430,6 +24447,7 @@ interface SchematicRect {
|
|
|
24430
24447
|
declare const schematic_rect: z.ZodObject<{
|
|
24431
24448
|
type: z.ZodLiteral<"schematic_rect">;
|
|
24432
24449
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24450
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24433
24451
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24434
24452
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
24435
24453
|
center: z.ZodObject<{
|
|
@@ -24466,6 +24484,7 @@ declare const schematic_rect: z.ZodObject<{
|
|
|
24466
24484
|
schematic_rect_id: string;
|
|
24467
24485
|
subcircuit_id?: string | undefined;
|
|
24468
24486
|
stroke_width?: number | null | undefined;
|
|
24487
|
+
schematic_sheet_id?: string | undefined;
|
|
24469
24488
|
schematic_component_id?: string | undefined;
|
|
24470
24489
|
schematic_symbol_id?: string | undefined;
|
|
24471
24490
|
fill_color?: string | undefined;
|
|
@@ -24483,6 +24502,7 @@ declare const schematic_rect: z.ZodObject<{
|
|
|
24483
24502
|
is_filled?: boolean | undefined;
|
|
24484
24503
|
color?: string | undefined;
|
|
24485
24504
|
is_dashed?: boolean | undefined;
|
|
24505
|
+
schematic_sheet_id?: string | undefined;
|
|
24486
24506
|
schematic_component_id?: string | undefined;
|
|
24487
24507
|
schematic_symbol_id?: string | undefined;
|
|
24488
24508
|
fill_color?: string | undefined;
|
|
@@ -24494,6 +24514,7 @@ type SchematicRectInput = z.input<typeof schematic_rect>;
|
|
|
24494
24514
|
interface SchematicCircle {
|
|
24495
24515
|
type: "schematic_circle";
|
|
24496
24516
|
schematic_circle_id: string;
|
|
24517
|
+
schematic_sheet_id?: string;
|
|
24497
24518
|
schematic_component_id?: string;
|
|
24498
24519
|
schematic_symbol_id?: string;
|
|
24499
24520
|
center: Point;
|
|
@@ -24508,6 +24529,7 @@ interface SchematicCircle {
|
|
|
24508
24529
|
declare const schematic_circle: z.ZodObject<{
|
|
24509
24530
|
type: z.ZodLiteral<"schematic_circle">;
|
|
24510
24531
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24532
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24511
24533
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24512
24534
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
24513
24535
|
center: z.ZodObject<{
|
|
@@ -24540,6 +24562,7 @@ declare const schematic_circle: z.ZodObject<{
|
|
|
24540
24562
|
schematic_circle_id: string;
|
|
24541
24563
|
subcircuit_id?: string | undefined;
|
|
24542
24564
|
stroke_width?: number | null | undefined;
|
|
24565
|
+
schematic_sheet_id?: string | undefined;
|
|
24543
24566
|
schematic_component_id?: string | undefined;
|
|
24544
24567
|
schematic_symbol_id?: string | undefined;
|
|
24545
24568
|
fill_color?: string | undefined;
|
|
@@ -24555,6 +24578,7 @@ declare const schematic_circle: z.ZodObject<{
|
|
|
24555
24578
|
is_filled?: boolean | undefined;
|
|
24556
24579
|
color?: string | undefined;
|
|
24557
24580
|
is_dashed?: boolean | undefined;
|
|
24581
|
+
schematic_sheet_id?: string | undefined;
|
|
24558
24582
|
schematic_component_id?: string | undefined;
|
|
24559
24583
|
schematic_symbol_id?: string | undefined;
|
|
24560
24584
|
fill_color?: string | undefined;
|
|
@@ -24566,6 +24590,7 @@ type SchematicCircleInput = z.input<typeof schematic_circle>;
|
|
|
24566
24590
|
interface SchematicArc {
|
|
24567
24591
|
type: "schematic_arc";
|
|
24568
24592
|
schematic_arc_id: string;
|
|
24593
|
+
schematic_sheet_id?: string;
|
|
24569
24594
|
schematic_component_id?: string;
|
|
24570
24595
|
schematic_symbol_id?: string;
|
|
24571
24596
|
center: Point;
|
|
@@ -24581,6 +24606,7 @@ interface SchematicArc {
|
|
|
24581
24606
|
declare const schematic_arc: z.ZodObject<{
|
|
24582
24607
|
type: z.ZodLiteral<"schematic_arc">;
|
|
24583
24608
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24609
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24584
24610
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24585
24611
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
24586
24612
|
center: z.ZodObject<{
|
|
@@ -24616,6 +24642,7 @@ declare const schematic_arc: z.ZodObject<{
|
|
|
24616
24642
|
end_angle_degrees: number;
|
|
24617
24643
|
subcircuit_id?: string | undefined;
|
|
24618
24644
|
stroke_width?: number | null | undefined;
|
|
24645
|
+
schematic_sheet_id?: string | undefined;
|
|
24619
24646
|
schematic_component_id?: string | undefined;
|
|
24620
24647
|
schematic_symbol_id?: string | undefined;
|
|
24621
24648
|
}, {
|
|
@@ -24631,6 +24658,7 @@ declare const schematic_arc: z.ZodObject<{
|
|
|
24631
24658
|
stroke_width?: string | number | null | undefined;
|
|
24632
24659
|
color?: string | undefined;
|
|
24633
24660
|
is_dashed?: boolean | undefined;
|
|
24661
|
+
schematic_sheet_id?: string | undefined;
|
|
24634
24662
|
schematic_component_id?: string | undefined;
|
|
24635
24663
|
schematic_symbol_id?: string | undefined;
|
|
24636
24664
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -24654,6 +24682,7 @@ interface SchematicTraceEdge {
|
|
|
24654
24682
|
interface SchematicTrace {
|
|
24655
24683
|
type: "schematic_trace";
|
|
24656
24684
|
schematic_trace_id: string;
|
|
24685
|
+
schematic_sheet_id?: string;
|
|
24657
24686
|
source_trace_id?: string;
|
|
24658
24687
|
junctions: {
|
|
24659
24688
|
x: number;
|
|
@@ -24667,6 +24696,7 @@ interface SchematicTrace {
|
|
|
24667
24696
|
declare const schematic_trace: z.ZodObject<{
|
|
24668
24697
|
type: z.ZodLiteral<"schematic_trace">;
|
|
24669
24698
|
schematic_trace_id: z.ZodString;
|
|
24699
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24670
24700
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
24671
24701
|
junctions: z.ZodArray<z.ZodObject<{
|
|
24672
24702
|
x: z.ZodNumber;
|
|
@@ -24752,6 +24782,7 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
24752
24782
|
subcircuit_id?: string | undefined;
|
|
24753
24783
|
source_trace_id?: string | undefined;
|
|
24754
24784
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
24785
|
+
schematic_sheet_id?: string | undefined;
|
|
24755
24786
|
}, {
|
|
24756
24787
|
type: "schematic_trace";
|
|
24757
24788
|
schematic_trace_id: string;
|
|
@@ -24775,6 +24806,7 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
24775
24806
|
subcircuit_id?: string | undefined;
|
|
24776
24807
|
source_trace_id?: string | undefined;
|
|
24777
24808
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
24809
|
+
schematic_sheet_id?: string | undefined;
|
|
24778
24810
|
}>;
|
|
24779
24811
|
type SchematicTraceInput = z.input<typeof schematic_trace>;
|
|
24780
24812
|
|
|
@@ -24782,6 +24814,7 @@ type FivePointAnchor = "center" | "left" | "right" | "top" | "bottom";
|
|
|
24782
24814
|
|
|
24783
24815
|
interface SchematicText {
|
|
24784
24816
|
type: "schematic_text";
|
|
24817
|
+
schematic_sheet_id?: string;
|
|
24785
24818
|
schematic_component_id?: string;
|
|
24786
24819
|
schematic_symbol_id?: string;
|
|
24787
24820
|
schematic_text_id: string;
|
|
@@ -24798,6 +24831,7 @@ interface SchematicText {
|
|
|
24798
24831
|
}
|
|
24799
24832
|
declare const schematic_text: z.ZodObject<{
|
|
24800
24833
|
type: z.ZodLiteral<"schematic_text">;
|
|
24834
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24801
24835
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24802
24836
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
24803
24837
|
schematic_text_id: z.ZodString;
|
|
@@ -24830,6 +24864,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
24830
24864
|
y: number;
|
|
24831
24865
|
};
|
|
24832
24866
|
subcircuit_id?: string | undefined;
|
|
24867
|
+
schematic_sheet_id?: string | undefined;
|
|
24833
24868
|
schematic_component_id?: string | undefined;
|
|
24834
24869
|
schematic_symbol_id?: string | undefined;
|
|
24835
24870
|
}, {
|
|
@@ -24845,6 +24880,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
24845
24880
|
subcircuit_id?: string | undefined;
|
|
24846
24881
|
font_size?: number | undefined;
|
|
24847
24882
|
color?: string | undefined;
|
|
24883
|
+
schematic_sheet_id?: string | undefined;
|
|
24848
24884
|
schematic_component_id?: string | undefined;
|
|
24849
24885
|
schematic_symbol_id?: string | undefined;
|
|
24850
24886
|
}>;
|
|
@@ -24854,6 +24890,7 @@ interface SchematicPort {
|
|
|
24854
24890
|
type: "schematic_port";
|
|
24855
24891
|
schematic_port_id: string;
|
|
24856
24892
|
source_port_id: string;
|
|
24893
|
+
schematic_sheet_id?: string;
|
|
24857
24894
|
schematic_component_id?: string;
|
|
24858
24895
|
center: Point;
|
|
24859
24896
|
facing_direction?: "up" | "down" | "left" | "right";
|
|
@@ -24872,6 +24909,7 @@ declare const schematic_port: z.ZodObject<{
|
|
|
24872
24909
|
type: z.ZodLiteral<"schematic_port">;
|
|
24873
24910
|
schematic_port_id: z.ZodString;
|
|
24874
24911
|
source_port_id: z.ZodString;
|
|
24912
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24875
24913
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
24876
24914
|
center: z.ZodObject<{
|
|
24877
24915
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -24904,6 +24942,7 @@ declare const schematic_port: z.ZodObject<{
|
|
|
24904
24942
|
schematic_port_id: string;
|
|
24905
24943
|
subcircuit_id?: string | undefined;
|
|
24906
24944
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
24945
|
+
schematic_sheet_id?: string | undefined;
|
|
24907
24946
|
schematic_component_id?: string | undefined;
|
|
24908
24947
|
distance_from_component_edge?: number | undefined;
|
|
24909
24948
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -24924,6 +24963,7 @@ declare const schematic_port: z.ZodObject<{
|
|
|
24924
24963
|
schematic_port_id: string;
|
|
24925
24964
|
subcircuit_id?: string | undefined;
|
|
24926
24965
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
24966
|
+
schematic_sheet_id?: string | undefined;
|
|
24927
24967
|
schematic_component_id?: string | undefined;
|
|
24928
24968
|
distance_from_component_edge?: number | undefined;
|
|
24929
24969
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -24940,6 +24980,7 @@ type SchematicPortInput = z.input<typeof schematic_port>;
|
|
|
24940
24980
|
interface SchematicNetLabel {
|
|
24941
24981
|
type: "schematic_net_label";
|
|
24942
24982
|
schematic_net_label_id: string;
|
|
24983
|
+
schematic_sheet_id?: string;
|
|
24943
24984
|
schematic_trace_id?: string;
|
|
24944
24985
|
source_trace_id?: string;
|
|
24945
24986
|
source_net_id: string;
|
|
@@ -24958,6 +24999,7 @@ interface SchematicNetLabel {
|
|
|
24958
24999
|
declare const schematic_net_label: z.ZodObject<{
|
|
24959
25000
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
24960
25001
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25002
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
24961
25003
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
24962
25004
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
24963
25005
|
source_net_id: z.ZodString;
|
|
@@ -25002,6 +25044,7 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
25002
25044
|
y: number;
|
|
25003
25045
|
} | undefined;
|
|
25004
25046
|
source_trace_id?: string | undefined;
|
|
25047
|
+
schematic_sheet_id?: string | undefined;
|
|
25005
25048
|
symbol_name?: string | undefined;
|
|
25006
25049
|
schematic_trace_id?: string | undefined;
|
|
25007
25050
|
is_movable?: boolean | undefined;
|
|
@@ -25020,6 +25063,7 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
25020
25063
|
y: string | number;
|
|
25021
25064
|
} | undefined;
|
|
25022
25065
|
source_trace_id?: string | undefined;
|
|
25066
|
+
schematic_sheet_id?: string | undefined;
|
|
25023
25067
|
symbol_name?: string | undefined;
|
|
25024
25068
|
schematic_trace_id?: string | undefined;
|
|
25025
25069
|
schematic_net_label_id?: string | undefined;
|
|
@@ -25420,6 +25464,7 @@ type SchematicDebugObjectInput = z.input<typeof schematic_debug_object>;
|
|
|
25420
25464
|
interface SchematicVoltageProbe {
|
|
25421
25465
|
type: "schematic_voltage_probe";
|
|
25422
25466
|
schematic_voltage_probe_id: string;
|
|
25467
|
+
schematic_sheet_id?: string;
|
|
25423
25468
|
source_component_id?: string;
|
|
25424
25469
|
name?: string;
|
|
25425
25470
|
position: Point;
|
|
@@ -25432,6 +25477,7 @@ interface SchematicVoltageProbe {
|
|
|
25432
25477
|
declare const schematic_voltage_probe: z.ZodObject<{
|
|
25433
25478
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
25434
25479
|
schematic_voltage_probe_id: z.ZodString;
|
|
25480
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
25435
25481
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
25436
25482
|
name: z.ZodOptional<z.ZodString>;
|
|
25437
25483
|
position: z.ZodObject<{
|
|
@@ -25461,6 +25507,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
25461
25507
|
source_component_id?: string | undefined;
|
|
25462
25508
|
subcircuit_id?: string | undefined;
|
|
25463
25509
|
color?: string | undefined;
|
|
25510
|
+
schematic_sheet_id?: string | undefined;
|
|
25464
25511
|
voltage?: number | undefined;
|
|
25465
25512
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25466
25513
|
}, {
|
|
@@ -25475,6 +25522,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
25475
25522
|
source_component_id?: string | undefined;
|
|
25476
25523
|
subcircuit_id?: string | undefined;
|
|
25477
25524
|
color?: string | undefined;
|
|
25525
|
+
schematic_sheet_id?: string | undefined;
|
|
25478
25526
|
voltage?: string | number | undefined;
|
|
25479
25527
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25480
25528
|
}>;
|
|
@@ -25526,6 +25574,7 @@ interface SchematicManualEditConflictWarning {
|
|
|
25526
25574
|
declare const schematic_group: z.ZodObject<{
|
|
25527
25575
|
type: z.ZodLiteral<"schematic_group">;
|
|
25528
25576
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25577
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
25529
25578
|
source_group_id: z.ZodString;
|
|
25530
25579
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
25531
25580
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -25560,6 +25609,7 @@ declare const schematic_group: z.ZodObject<{
|
|
|
25560
25609
|
name?: string | undefined;
|
|
25561
25610
|
subcircuit_id?: string | undefined;
|
|
25562
25611
|
is_subcircuit?: boolean | undefined;
|
|
25612
|
+
schematic_sheet_id?: string | undefined;
|
|
25563
25613
|
show_as_schematic_box?: boolean | undefined;
|
|
25564
25614
|
}, {
|
|
25565
25615
|
type: "schematic_group";
|
|
@@ -25575,6 +25625,7 @@ declare const schematic_group: z.ZodObject<{
|
|
|
25575
25625
|
name?: string | undefined;
|
|
25576
25626
|
subcircuit_id?: string | undefined;
|
|
25577
25627
|
is_subcircuit?: boolean | undefined;
|
|
25628
|
+
schematic_sheet_id?: string | undefined;
|
|
25578
25629
|
schematic_group_id?: string | undefined;
|
|
25579
25630
|
show_as_schematic_box?: boolean | undefined;
|
|
25580
25631
|
}>;
|
|
@@ -25585,6 +25636,7 @@ type SchematicGroupInput = z.input<typeof schematic_group>;
|
|
|
25585
25636
|
interface SchematicGroup {
|
|
25586
25637
|
type: "schematic_group";
|
|
25587
25638
|
schematic_group_id: string;
|
|
25639
|
+
schematic_sheet_id?: string;
|
|
25588
25640
|
source_group_id: string;
|
|
25589
25641
|
is_subcircuit?: boolean;
|
|
25590
25642
|
subcircuit_id?: string;
|
|
@@ -25600,6 +25652,7 @@ interface SchematicGroup {
|
|
|
25600
25652
|
declare const schematic_table: z.ZodObject<{
|
|
25601
25653
|
type: z.ZodLiteral<"schematic_table">;
|
|
25602
25654
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25655
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
25603
25656
|
anchor_position: z.ZodObject<{
|
|
25604
25657
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
25605
25658
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -25628,6 +25681,7 @@ declare const schematic_table: z.ZodObject<{
|
|
|
25628
25681
|
row_heights: number[];
|
|
25629
25682
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25630
25683
|
subcircuit_id?: string | undefined;
|
|
25684
|
+
schematic_sheet_id?: string | undefined;
|
|
25631
25685
|
schematic_component_id?: string | undefined;
|
|
25632
25686
|
cell_padding?: number | undefined;
|
|
25633
25687
|
border_width?: number | undefined;
|
|
@@ -25641,6 +25695,7 @@ declare const schematic_table: z.ZodObject<{
|
|
|
25641
25695
|
row_heights: (string | number)[];
|
|
25642
25696
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25643
25697
|
subcircuit_id?: string | undefined;
|
|
25698
|
+
schematic_sheet_id?: string | undefined;
|
|
25644
25699
|
schematic_component_id?: string | undefined;
|
|
25645
25700
|
schematic_table_id?: string | undefined;
|
|
25646
25701
|
cell_padding?: string | number | undefined;
|
|
@@ -25653,6 +25708,7 @@ type SchematicTableInput = z.input<typeof schematic_table>;
|
|
|
25653
25708
|
interface SchematicTable {
|
|
25654
25709
|
type: "schematic_table";
|
|
25655
25710
|
schematic_table_id: string;
|
|
25711
|
+
schematic_sheet_id?: string;
|
|
25656
25712
|
anchor_position: Point;
|
|
25657
25713
|
column_widths: Length[];
|
|
25658
25714
|
row_heights: Length[];
|
|
@@ -25666,6 +25722,7 @@ interface SchematicTable {
|
|
|
25666
25722
|
declare const schematic_table_cell: z.ZodObject<{
|
|
25667
25723
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
25668
25724
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25725
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
25669
25726
|
schematic_table_id: z.ZodString;
|
|
25670
25727
|
start_row_index: z.ZodNumber;
|
|
25671
25728
|
end_row_index: z.ZodNumber;
|
|
@@ -25705,6 +25762,7 @@ declare const schematic_table_cell: z.ZodObject<{
|
|
|
25705
25762
|
subcircuit_id?: string | undefined;
|
|
25706
25763
|
text?: string | undefined;
|
|
25707
25764
|
font_size?: number | undefined;
|
|
25765
|
+
schematic_sheet_id?: string | undefined;
|
|
25708
25766
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
25709
25767
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
25710
25768
|
}, {
|
|
@@ -25723,6 +25781,7 @@ declare const schematic_table_cell: z.ZodObject<{
|
|
|
25723
25781
|
subcircuit_id?: string | undefined;
|
|
25724
25782
|
text?: string | undefined;
|
|
25725
25783
|
font_size?: string | number | undefined;
|
|
25784
|
+
schematic_sheet_id?: string | undefined;
|
|
25726
25785
|
schematic_table_cell_id?: string | undefined;
|
|
25727
25786
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
25728
25787
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
@@ -25734,6 +25793,7 @@ type SchematicTableCellInput = z.input<typeof schematic_table_cell>;
|
|
|
25734
25793
|
interface SchematicTableCell {
|
|
25735
25794
|
type: "schematic_table_cell";
|
|
25736
25795
|
schematic_table_cell_id: string;
|
|
25796
|
+
schematic_sheet_id?: string;
|
|
25737
25797
|
schematic_table_id: string;
|
|
25738
25798
|
start_row_index: number;
|
|
25739
25799
|
end_row_index: number;
|
|
@@ -44028,6 +44088,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44028
44088
|
pcb_courtyard_pill_id?: string | undefined;
|
|
44029
44089
|
}>, z.ZodObject<{
|
|
44030
44090
|
type: z.ZodLiteral<"schematic_box">;
|
|
44091
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44031
44092
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44032
44093
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44033
44094
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44044,6 +44105,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44044
44105
|
height: number;
|
|
44045
44106
|
is_dashed: boolean;
|
|
44046
44107
|
subcircuit_id?: string | undefined;
|
|
44108
|
+
schematic_sheet_id?: string | undefined;
|
|
44047
44109
|
schematic_component_id?: string | undefined;
|
|
44048
44110
|
schematic_symbol_id?: string | undefined;
|
|
44049
44111
|
}, {
|
|
@@ -44054,10 +44116,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44054
44116
|
height: string | number;
|
|
44055
44117
|
subcircuit_id?: string | undefined;
|
|
44056
44118
|
is_dashed?: boolean | undefined;
|
|
44119
|
+
schematic_sheet_id?: string | undefined;
|
|
44057
44120
|
schematic_component_id?: string | undefined;
|
|
44058
44121
|
schematic_symbol_id?: string | undefined;
|
|
44059
44122
|
}>, z.ZodObject<{
|
|
44060
44123
|
type: z.ZodLiteral<"schematic_text">;
|
|
44124
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44061
44125
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44062
44126
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44063
44127
|
schematic_text_id: z.ZodString;
|
|
@@ -44090,6 +44154,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44090
44154
|
y: number;
|
|
44091
44155
|
};
|
|
44092
44156
|
subcircuit_id?: string | undefined;
|
|
44157
|
+
schematic_sheet_id?: string | undefined;
|
|
44093
44158
|
schematic_component_id?: string | undefined;
|
|
44094
44159
|
schematic_symbol_id?: string | undefined;
|
|
44095
44160
|
}, {
|
|
@@ -44105,11 +44170,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44105
44170
|
subcircuit_id?: string | undefined;
|
|
44106
44171
|
font_size?: number | undefined;
|
|
44107
44172
|
color?: string | undefined;
|
|
44173
|
+
schematic_sheet_id?: string | undefined;
|
|
44108
44174
|
schematic_component_id?: string | undefined;
|
|
44109
44175
|
schematic_symbol_id?: string | undefined;
|
|
44110
44176
|
}>, z.ZodObject<{
|
|
44111
44177
|
type: z.ZodLiteral<"schematic_line">;
|
|
44112
44178
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44179
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44113
44180
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44114
44181
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44115
44182
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44133,6 +44200,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44133
44200
|
schematic_line_id: string;
|
|
44134
44201
|
subcircuit_id?: string | undefined;
|
|
44135
44202
|
stroke_width?: number | null | undefined;
|
|
44203
|
+
schematic_sheet_id?: string | undefined;
|
|
44136
44204
|
schematic_component_id?: string | undefined;
|
|
44137
44205
|
schematic_symbol_id?: string | undefined;
|
|
44138
44206
|
dash_length?: number | undefined;
|
|
@@ -44147,6 +44215,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44147
44215
|
stroke_width?: string | number | null | undefined;
|
|
44148
44216
|
color?: string | undefined;
|
|
44149
44217
|
is_dashed?: boolean | undefined;
|
|
44218
|
+
schematic_sheet_id?: string | undefined;
|
|
44150
44219
|
schematic_component_id?: string | undefined;
|
|
44151
44220
|
schematic_symbol_id?: string | undefined;
|
|
44152
44221
|
dash_length?: string | number | undefined;
|
|
@@ -44155,6 +44224,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44155
44224
|
}>, z.ZodObject<{
|
|
44156
44225
|
type: z.ZodLiteral<"schematic_rect">;
|
|
44157
44226
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44227
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44158
44228
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44159
44229
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44160
44230
|
center: z.ZodObject<{
|
|
@@ -44191,6 +44261,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44191
44261
|
schematic_rect_id: string;
|
|
44192
44262
|
subcircuit_id?: string | undefined;
|
|
44193
44263
|
stroke_width?: number | null | undefined;
|
|
44264
|
+
schematic_sheet_id?: string | undefined;
|
|
44194
44265
|
schematic_component_id?: string | undefined;
|
|
44195
44266
|
schematic_symbol_id?: string | undefined;
|
|
44196
44267
|
fill_color?: string | undefined;
|
|
@@ -44208,6 +44279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44208
44279
|
is_filled?: boolean | undefined;
|
|
44209
44280
|
color?: string | undefined;
|
|
44210
44281
|
is_dashed?: boolean | undefined;
|
|
44282
|
+
schematic_sheet_id?: string | undefined;
|
|
44211
44283
|
schematic_component_id?: string | undefined;
|
|
44212
44284
|
schematic_symbol_id?: string | undefined;
|
|
44213
44285
|
fill_color?: string | undefined;
|
|
@@ -44215,6 +44287,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44215
44287
|
}>, z.ZodObject<{
|
|
44216
44288
|
type: z.ZodLiteral<"schematic_circle">;
|
|
44217
44289
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44290
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44218
44291
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44219
44292
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44220
44293
|
center: z.ZodObject<{
|
|
@@ -44247,6 +44320,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44247
44320
|
schematic_circle_id: string;
|
|
44248
44321
|
subcircuit_id?: string | undefined;
|
|
44249
44322
|
stroke_width?: number | null | undefined;
|
|
44323
|
+
schematic_sheet_id?: string | undefined;
|
|
44250
44324
|
schematic_component_id?: string | undefined;
|
|
44251
44325
|
schematic_symbol_id?: string | undefined;
|
|
44252
44326
|
fill_color?: string | undefined;
|
|
@@ -44262,6 +44336,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44262
44336
|
is_filled?: boolean | undefined;
|
|
44263
44337
|
color?: string | undefined;
|
|
44264
44338
|
is_dashed?: boolean | undefined;
|
|
44339
|
+
schematic_sheet_id?: string | undefined;
|
|
44265
44340
|
schematic_component_id?: string | undefined;
|
|
44266
44341
|
schematic_symbol_id?: string | undefined;
|
|
44267
44342
|
fill_color?: string | undefined;
|
|
@@ -44269,6 +44344,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44269
44344
|
}>, z.ZodObject<{
|
|
44270
44345
|
type: z.ZodLiteral<"schematic_arc">;
|
|
44271
44346
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44347
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44272
44348
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44273
44349
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44274
44350
|
center: z.ZodObject<{
|
|
@@ -44304,6 +44380,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44304
44380
|
end_angle_degrees: number;
|
|
44305
44381
|
subcircuit_id?: string | undefined;
|
|
44306
44382
|
stroke_width?: number | null | undefined;
|
|
44383
|
+
schematic_sheet_id?: string | undefined;
|
|
44307
44384
|
schematic_component_id?: string | undefined;
|
|
44308
44385
|
schematic_symbol_id?: string | undefined;
|
|
44309
44386
|
}, {
|
|
@@ -44319,6 +44396,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44319
44396
|
stroke_width?: string | number | null | undefined;
|
|
44320
44397
|
color?: string | undefined;
|
|
44321
44398
|
is_dashed?: boolean | undefined;
|
|
44399
|
+
schematic_sheet_id?: string | undefined;
|
|
44322
44400
|
schematic_component_id?: string | undefined;
|
|
44323
44401
|
schematic_symbol_id?: string | undefined;
|
|
44324
44402
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -44347,6 +44425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44347
44425
|
}>;
|
|
44348
44426
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
44349
44427
|
schematic_component_id: z.ZodString;
|
|
44428
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44350
44429
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44351
44430
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44352
44431
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -44480,6 +44559,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44480
44559
|
source_component_id?: string | undefined;
|
|
44481
44560
|
subcircuit_id?: string | undefined;
|
|
44482
44561
|
source_group_id?: string | undefined;
|
|
44562
|
+
schematic_sheet_id?: string | undefined;
|
|
44483
44563
|
schematic_symbol_id?: string | undefined;
|
|
44484
44564
|
pin_spacing?: number | undefined;
|
|
44485
44565
|
pin_styles?: Record<string, {
|
|
@@ -44531,6 +44611,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44531
44611
|
source_component_id?: string | undefined;
|
|
44532
44612
|
subcircuit_id?: string | undefined;
|
|
44533
44613
|
source_group_id?: string | undefined;
|
|
44614
|
+
schematic_sheet_id?: string | undefined;
|
|
44534
44615
|
schematic_symbol_id?: string | undefined;
|
|
44535
44616
|
pin_spacing?: string | number | undefined;
|
|
44536
44617
|
pin_styles?: Record<string, {
|
|
@@ -51373,6 +51454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51373
51454
|
type: z.ZodLiteral<"schematic_port">;
|
|
51374
51455
|
schematic_port_id: z.ZodString;
|
|
51375
51456
|
source_port_id: z.ZodString;
|
|
51457
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51376
51458
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51377
51459
|
center: z.ZodObject<{
|
|
51378
51460
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -51405,6 +51487,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51405
51487
|
schematic_port_id: string;
|
|
51406
51488
|
subcircuit_id?: string | undefined;
|
|
51407
51489
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51490
|
+
schematic_sheet_id?: string | undefined;
|
|
51408
51491
|
schematic_component_id?: string | undefined;
|
|
51409
51492
|
distance_from_component_edge?: number | undefined;
|
|
51410
51493
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51425,6 +51508,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51425
51508
|
schematic_port_id: string;
|
|
51426
51509
|
subcircuit_id?: string | undefined;
|
|
51427
51510
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51511
|
+
schematic_sheet_id?: string | undefined;
|
|
51428
51512
|
schematic_component_id?: string | undefined;
|
|
51429
51513
|
distance_from_component_edge?: number | undefined;
|
|
51430
51514
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51438,6 +51522,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51438
51522
|
}>, z.ZodObject<{
|
|
51439
51523
|
type: z.ZodLiteral<"schematic_trace">;
|
|
51440
51524
|
schematic_trace_id: z.ZodString;
|
|
51525
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51441
51526
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51442
51527
|
junctions: z.ZodArray<z.ZodObject<{
|
|
51443
51528
|
x: z.ZodNumber;
|
|
@@ -51523,6 +51608,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51523
51608
|
subcircuit_id?: string | undefined;
|
|
51524
51609
|
source_trace_id?: string | undefined;
|
|
51525
51610
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51611
|
+
schematic_sheet_id?: string | undefined;
|
|
51526
51612
|
}, {
|
|
51527
51613
|
type: "schematic_trace";
|
|
51528
51614
|
schematic_trace_id: string;
|
|
@@ -51546,9 +51632,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51546
51632
|
subcircuit_id?: string | undefined;
|
|
51547
51633
|
source_trace_id?: string | undefined;
|
|
51548
51634
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51635
|
+
schematic_sheet_id?: string | undefined;
|
|
51549
51636
|
}>, z.ZodObject<{
|
|
51550
51637
|
type: z.ZodLiteral<"schematic_path">;
|
|
51551
51638
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51639
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51552
51640
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51553
51641
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
51554
51642
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -51580,6 +51668,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51580
51668
|
subcircuit_id?: string | undefined;
|
|
51581
51669
|
stroke_width?: number | null | undefined;
|
|
51582
51670
|
is_filled?: boolean | undefined;
|
|
51671
|
+
schematic_sheet_id?: string | undefined;
|
|
51583
51672
|
schematic_component_id?: string | undefined;
|
|
51584
51673
|
schematic_symbol_id?: string | undefined;
|
|
51585
51674
|
fill_color?: string | undefined;
|
|
@@ -51596,6 +51685,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51596
51685
|
stroke_width?: string | number | null | undefined;
|
|
51597
51686
|
is_filled?: boolean | undefined;
|
|
51598
51687
|
is_dashed?: boolean | undefined;
|
|
51688
|
+
schematic_sheet_id?: string | undefined;
|
|
51599
51689
|
schematic_component_id?: string | undefined;
|
|
51600
51690
|
schematic_symbol_id?: string | undefined;
|
|
51601
51691
|
schematic_path_id?: string | undefined;
|
|
@@ -51656,6 +51746,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51656
51746
|
}>, z.ZodObject<{
|
|
51657
51747
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
51658
51748
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51749
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51659
51750
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
51660
51751
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51661
51752
|
source_net_id: z.ZodString;
|
|
@@ -51700,6 +51791,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51700
51791
|
y: number;
|
|
51701
51792
|
} | undefined;
|
|
51702
51793
|
source_trace_id?: string | undefined;
|
|
51794
|
+
schematic_sheet_id?: string | undefined;
|
|
51703
51795
|
symbol_name?: string | undefined;
|
|
51704
51796
|
schematic_trace_id?: string | undefined;
|
|
51705
51797
|
is_movable?: boolean | undefined;
|
|
@@ -51718,6 +51810,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51718
51810
|
y: string | number;
|
|
51719
51811
|
} | undefined;
|
|
51720
51812
|
source_trace_id?: string | undefined;
|
|
51813
|
+
schematic_sheet_id?: string | undefined;
|
|
51721
51814
|
symbol_name?: string | undefined;
|
|
51722
51815
|
schematic_trace_id?: string | undefined;
|
|
51723
51816
|
schematic_net_label_id?: string | undefined;
|
|
@@ -51863,6 +51956,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51863
51956
|
}>]>, z.ZodObject<{
|
|
51864
51957
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
51865
51958
|
schematic_voltage_probe_id: z.ZodString;
|
|
51959
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51866
51960
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
51867
51961
|
name: z.ZodOptional<z.ZodString>;
|
|
51868
51962
|
position: z.ZodObject<{
|
|
@@ -51892,6 +51986,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51892
51986
|
source_component_id?: string | undefined;
|
|
51893
51987
|
subcircuit_id?: string | undefined;
|
|
51894
51988
|
color?: string | undefined;
|
|
51989
|
+
schematic_sheet_id?: string | undefined;
|
|
51895
51990
|
voltage?: number | undefined;
|
|
51896
51991
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51897
51992
|
}, {
|
|
@@ -51906,6 +52001,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51906
52001
|
source_component_id?: string | undefined;
|
|
51907
52002
|
subcircuit_id?: string | undefined;
|
|
51908
52003
|
color?: string | undefined;
|
|
52004
|
+
schematic_sheet_id?: string | undefined;
|
|
51909
52005
|
voltage?: string | number | undefined;
|
|
51910
52006
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51911
52007
|
}>, z.ZodObject<{
|
|
@@ -51938,6 +52034,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51938
52034
|
}>, z.ZodObject<{
|
|
51939
52035
|
type: z.ZodLiteral<"schematic_group">;
|
|
51940
52036
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52037
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51941
52038
|
source_group_id: z.ZodString;
|
|
51942
52039
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
51943
52040
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -51972,6 +52069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51972
52069
|
name?: string | undefined;
|
|
51973
52070
|
subcircuit_id?: string | undefined;
|
|
51974
52071
|
is_subcircuit?: boolean | undefined;
|
|
52072
|
+
schematic_sheet_id?: string | undefined;
|
|
51975
52073
|
show_as_schematic_box?: boolean | undefined;
|
|
51976
52074
|
}, {
|
|
51977
52075
|
type: "schematic_group";
|
|
@@ -51987,6 +52085,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51987
52085
|
name?: string | undefined;
|
|
51988
52086
|
subcircuit_id?: string | undefined;
|
|
51989
52087
|
is_subcircuit?: boolean | undefined;
|
|
52088
|
+
schematic_sheet_id?: string | undefined;
|
|
51990
52089
|
schematic_group_id?: string | undefined;
|
|
51991
52090
|
show_as_schematic_box?: boolean | undefined;
|
|
51992
52091
|
}>, z.ZodObject<{
|
|
@@ -52010,6 +52109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52010
52109
|
}>, z.ZodObject<{
|
|
52011
52110
|
type: z.ZodLiteral<"schematic_table">;
|
|
52012
52111
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52112
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52013
52113
|
anchor_position: z.ZodObject<{
|
|
52014
52114
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52015
52115
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -52038,6 +52138,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52038
52138
|
row_heights: number[];
|
|
52039
52139
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52040
52140
|
subcircuit_id?: string | undefined;
|
|
52141
|
+
schematic_sheet_id?: string | undefined;
|
|
52041
52142
|
schematic_component_id?: string | undefined;
|
|
52042
52143
|
cell_padding?: number | undefined;
|
|
52043
52144
|
border_width?: number | undefined;
|
|
@@ -52051,6 +52152,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52051
52152
|
row_heights: (string | number)[];
|
|
52052
52153
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52053
52154
|
subcircuit_id?: string | undefined;
|
|
52155
|
+
schematic_sheet_id?: string | undefined;
|
|
52054
52156
|
schematic_component_id?: string | undefined;
|
|
52055
52157
|
schematic_table_id?: string | undefined;
|
|
52056
52158
|
cell_padding?: string | number | undefined;
|
|
@@ -52058,6 +52160,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52058
52160
|
}>, z.ZodObject<{
|
|
52059
52161
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
52060
52162
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52163
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52061
52164
|
schematic_table_id: z.ZodString;
|
|
52062
52165
|
start_row_index: z.ZodNumber;
|
|
52063
52166
|
end_row_index: z.ZodNumber;
|
|
@@ -52097,6 +52200,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52097
52200
|
subcircuit_id?: string | undefined;
|
|
52098
52201
|
text?: string | undefined;
|
|
52099
52202
|
font_size?: number | undefined;
|
|
52203
|
+
schematic_sheet_id?: string | undefined;
|
|
52100
52204
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52101
52205
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
52102
52206
|
}, {
|
|
@@ -52115,6 +52219,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52115
52219
|
subcircuit_id?: string | undefined;
|
|
52116
52220
|
text?: string | undefined;
|
|
52117
52221
|
font_size?: string | number | undefined;
|
|
52222
|
+
schematic_sheet_id?: string | undefined;
|
|
52118
52223
|
schematic_table_cell_id?: string | undefined;
|
|
52119
52224
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52120
52225
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
@@ -62846,6 +62951,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62846
62951
|
pcb_courtyard_pill_id?: string | undefined;
|
|
62847
62952
|
}>, z.ZodObject<{
|
|
62848
62953
|
type: z.ZodLiteral<"schematic_box">;
|
|
62954
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62849
62955
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62850
62956
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62851
62957
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62862,6 +62968,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62862
62968
|
height: number;
|
|
62863
62969
|
is_dashed: boolean;
|
|
62864
62970
|
subcircuit_id?: string | undefined;
|
|
62971
|
+
schematic_sheet_id?: string | undefined;
|
|
62865
62972
|
schematic_component_id?: string | undefined;
|
|
62866
62973
|
schematic_symbol_id?: string | undefined;
|
|
62867
62974
|
}, {
|
|
@@ -62872,10 +62979,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62872
62979
|
height: string | number;
|
|
62873
62980
|
subcircuit_id?: string | undefined;
|
|
62874
62981
|
is_dashed?: boolean | undefined;
|
|
62982
|
+
schematic_sheet_id?: string | undefined;
|
|
62875
62983
|
schematic_component_id?: string | undefined;
|
|
62876
62984
|
schematic_symbol_id?: string | undefined;
|
|
62877
62985
|
}>, z.ZodObject<{
|
|
62878
62986
|
type: z.ZodLiteral<"schematic_text">;
|
|
62987
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62879
62988
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62880
62989
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62881
62990
|
schematic_text_id: z.ZodString;
|
|
@@ -62908,6 +63017,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62908
63017
|
y: number;
|
|
62909
63018
|
};
|
|
62910
63019
|
subcircuit_id?: string | undefined;
|
|
63020
|
+
schematic_sheet_id?: string | undefined;
|
|
62911
63021
|
schematic_component_id?: string | undefined;
|
|
62912
63022
|
schematic_symbol_id?: string | undefined;
|
|
62913
63023
|
}, {
|
|
@@ -62923,11 +63033,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62923
63033
|
subcircuit_id?: string | undefined;
|
|
62924
63034
|
font_size?: number | undefined;
|
|
62925
63035
|
color?: string | undefined;
|
|
63036
|
+
schematic_sheet_id?: string | undefined;
|
|
62926
63037
|
schematic_component_id?: string | undefined;
|
|
62927
63038
|
schematic_symbol_id?: string | undefined;
|
|
62928
63039
|
}>, z.ZodObject<{
|
|
62929
63040
|
type: z.ZodLiteral<"schematic_line">;
|
|
62930
63041
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63042
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62931
63043
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62932
63044
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62933
63045
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62951,6 +63063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62951
63063
|
schematic_line_id: string;
|
|
62952
63064
|
subcircuit_id?: string | undefined;
|
|
62953
63065
|
stroke_width?: number | null | undefined;
|
|
63066
|
+
schematic_sheet_id?: string | undefined;
|
|
62954
63067
|
schematic_component_id?: string | undefined;
|
|
62955
63068
|
schematic_symbol_id?: string | undefined;
|
|
62956
63069
|
dash_length?: number | undefined;
|
|
@@ -62965,6 +63078,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62965
63078
|
stroke_width?: string | number | null | undefined;
|
|
62966
63079
|
color?: string | undefined;
|
|
62967
63080
|
is_dashed?: boolean | undefined;
|
|
63081
|
+
schematic_sheet_id?: string | undefined;
|
|
62968
63082
|
schematic_component_id?: string | undefined;
|
|
62969
63083
|
schematic_symbol_id?: string | undefined;
|
|
62970
63084
|
dash_length?: string | number | undefined;
|
|
@@ -62973,6 +63087,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62973
63087
|
}>, z.ZodObject<{
|
|
62974
63088
|
type: z.ZodLiteral<"schematic_rect">;
|
|
62975
63089
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63090
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62976
63091
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62977
63092
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62978
63093
|
center: z.ZodObject<{
|
|
@@ -63009,6 +63124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63009
63124
|
schematic_rect_id: string;
|
|
63010
63125
|
subcircuit_id?: string | undefined;
|
|
63011
63126
|
stroke_width?: number | null | undefined;
|
|
63127
|
+
schematic_sheet_id?: string | undefined;
|
|
63012
63128
|
schematic_component_id?: string | undefined;
|
|
63013
63129
|
schematic_symbol_id?: string | undefined;
|
|
63014
63130
|
fill_color?: string | undefined;
|
|
@@ -63026,6 +63142,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63026
63142
|
is_filled?: boolean | undefined;
|
|
63027
63143
|
color?: string | undefined;
|
|
63028
63144
|
is_dashed?: boolean | undefined;
|
|
63145
|
+
schematic_sheet_id?: string | undefined;
|
|
63029
63146
|
schematic_component_id?: string | undefined;
|
|
63030
63147
|
schematic_symbol_id?: string | undefined;
|
|
63031
63148
|
fill_color?: string | undefined;
|
|
@@ -63033,6 +63150,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63033
63150
|
}>, z.ZodObject<{
|
|
63034
63151
|
type: z.ZodLiteral<"schematic_circle">;
|
|
63035
63152
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63153
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63036
63154
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63037
63155
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63038
63156
|
center: z.ZodObject<{
|
|
@@ -63065,6 +63183,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63065
63183
|
schematic_circle_id: string;
|
|
63066
63184
|
subcircuit_id?: string | undefined;
|
|
63067
63185
|
stroke_width?: number | null | undefined;
|
|
63186
|
+
schematic_sheet_id?: string | undefined;
|
|
63068
63187
|
schematic_component_id?: string | undefined;
|
|
63069
63188
|
schematic_symbol_id?: string | undefined;
|
|
63070
63189
|
fill_color?: string | undefined;
|
|
@@ -63080,6 +63199,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63080
63199
|
is_filled?: boolean | undefined;
|
|
63081
63200
|
color?: string | undefined;
|
|
63082
63201
|
is_dashed?: boolean | undefined;
|
|
63202
|
+
schematic_sheet_id?: string | undefined;
|
|
63083
63203
|
schematic_component_id?: string | undefined;
|
|
63084
63204
|
schematic_symbol_id?: string | undefined;
|
|
63085
63205
|
fill_color?: string | undefined;
|
|
@@ -63087,6 +63207,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63087
63207
|
}>, z.ZodObject<{
|
|
63088
63208
|
type: z.ZodLiteral<"schematic_arc">;
|
|
63089
63209
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63210
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63090
63211
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63091
63212
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63092
63213
|
center: z.ZodObject<{
|
|
@@ -63122,6 +63243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63122
63243
|
end_angle_degrees: number;
|
|
63123
63244
|
subcircuit_id?: string | undefined;
|
|
63124
63245
|
stroke_width?: number | null | undefined;
|
|
63246
|
+
schematic_sheet_id?: string | undefined;
|
|
63125
63247
|
schematic_component_id?: string | undefined;
|
|
63126
63248
|
schematic_symbol_id?: string | undefined;
|
|
63127
63249
|
}, {
|
|
@@ -63137,6 +63259,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63137
63259
|
stroke_width?: string | number | null | undefined;
|
|
63138
63260
|
color?: string | undefined;
|
|
63139
63261
|
is_dashed?: boolean | undefined;
|
|
63262
|
+
schematic_sheet_id?: string | undefined;
|
|
63140
63263
|
schematic_component_id?: string | undefined;
|
|
63141
63264
|
schematic_symbol_id?: string | undefined;
|
|
63142
63265
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -63165,6 +63288,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63165
63288
|
}>;
|
|
63166
63289
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
63167
63290
|
schematic_component_id: z.ZodString;
|
|
63291
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63168
63292
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63169
63293
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
63170
63294
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -63298,6 +63422,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63298
63422
|
source_component_id?: string | undefined;
|
|
63299
63423
|
subcircuit_id?: string | undefined;
|
|
63300
63424
|
source_group_id?: string | undefined;
|
|
63425
|
+
schematic_sheet_id?: string | undefined;
|
|
63301
63426
|
schematic_symbol_id?: string | undefined;
|
|
63302
63427
|
pin_spacing?: number | undefined;
|
|
63303
63428
|
pin_styles?: Record<string, {
|
|
@@ -63349,6 +63474,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63349
63474
|
source_component_id?: string | undefined;
|
|
63350
63475
|
subcircuit_id?: string | undefined;
|
|
63351
63476
|
source_group_id?: string | undefined;
|
|
63477
|
+
schematic_sheet_id?: string | undefined;
|
|
63352
63478
|
schematic_symbol_id?: string | undefined;
|
|
63353
63479
|
pin_spacing?: string | number | undefined;
|
|
63354
63480
|
pin_styles?: Record<string, {
|
|
@@ -70191,6 +70317,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70191
70317
|
type: z.ZodLiteral<"schematic_port">;
|
|
70192
70318
|
schematic_port_id: z.ZodString;
|
|
70193
70319
|
source_port_id: z.ZodString;
|
|
70320
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70194
70321
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70195
70322
|
center: z.ZodObject<{
|
|
70196
70323
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70223,6 +70350,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70223
70350
|
schematic_port_id: string;
|
|
70224
70351
|
subcircuit_id?: string | undefined;
|
|
70225
70352
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70353
|
+
schematic_sheet_id?: string | undefined;
|
|
70226
70354
|
schematic_component_id?: string | undefined;
|
|
70227
70355
|
distance_from_component_edge?: number | undefined;
|
|
70228
70356
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70243,6 +70371,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70243
70371
|
schematic_port_id: string;
|
|
70244
70372
|
subcircuit_id?: string | undefined;
|
|
70245
70373
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70374
|
+
schematic_sheet_id?: string | undefined;
|
|
70246
70375
|
schematic_component_id?: string | undefined;
|
|
70247
70376
|
distance_from_component_edge?: number | undefined;
|
|
70248
70377
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70256,6 +70385,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70256
70385
|
}>, z.ZodObject<{
|
|
70257
70386
|
type: z.ZodLiteral<"schematic_trace">;
|
|
70258
70387
|
schematic_trace_id: z.ZodString;
|
|
70388
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70259
70389
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70260
70390
|
junctions: z.ZodArray<z.ZodObject<{
|
|
70261
70391
|
x: z.ZodNumber;
|
|
@@ -70341,6 +70471,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70341
70471
|
subcircuit_id?: string | undefined;
|
|
70342
70472
|
source_trace_id?: string | undefined;
|
|
70343
70473
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70474
|
+
schematic_sheet_id?: string | undefined;
|
|
70344
70475
|
}, {
|
|
70345
70476
|
type: "schematic_trace";
|
|
70346
70477
|
schematic_trace_id: string;
|
|
@@ -70364,9 +70495,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70364
70495
|
subcircuit_id?: string | undefined;
|
|
70365
70496
|
source_trace_id?: string | undefined;
|
|
70366
70497
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70498
|
+
schematic_sheet_id?: string | undefined;
|
|
70367
70499
|
}>, z.ZodObject<{
|
|
70368
70500
|
type: z.ZodLiteral<"schematic_path">;
|
|
70369
70501
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70502
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70370
70503
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70371
70504
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
70372
70505
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -70398,6 +70531,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70398
70531
|
subcircuit_id?: string | undefined;
|
|
70399
70532
|
stroke_width?: number | null | undefined;
|
|
70400
70533
|
is_filled?: boolean | undefined;
|
|
70534
|
+
schematic_sheet_id?: string | undefined;
|
|
70401
70535
|
schematic_component_id?: string | undefined;
|
|
70402
70536
|
schematic_symbol_id?: string | undefined;
|
|
70403
70537
|
fill_color?: string | undefined;
|
|
@@ -70414,6 +70548,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70414
70548
|
stroke_width?: string | number | null | undefined;
|
|
70415
70549
|
is_filled?: boolean | undefined;
|
|
70416
70550
|
is_dashed?: boolean | undefined;
|
|
70551
|
+
schematic_sheet_id?: string | undefined;
|
|
70417
70552
|
schematic_component_id?: string | undefined;
|
|
70418
70553
|
schematic_symbol_id?: string | undefined;
|
|
70419
70554
|
schematic_path_id?: string | undefined;
|
|
@@ -70474,6 +70609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70474
70609
|
}>, z.ZodObject<{
|
|
70475
70610
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
70476
70611
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70612
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70477
70613
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
70478
70614
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70479
70615
|
source_net_id: z.ZodString;
|
|
@@ -70518,6 +70654,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70518
70654
|
y: number;
|
|
70519
70655
|
} | undefined;
|
|
70520
70656
|
source_trace_id?: string | undefined;
|
|
70657
|
+
schematic_sheet_id?: string | undefined;
|
|
70521
70658
|
symbol_name?: string | undefined;
|
|
70522
70659
|
schematic_trace_id?: string | undefined;
|
|
70523
70660
|
is_movable?: boolean | undefined;
|
|
@@ -70536,6 +70673,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70536
70673
|
y: string | number;
|
|
70537
70674
|
} | undefined;
|
|
70538
70675
|
source_trace_id?: string | undefined;
|
|
70676
|
+
schematic_sheet_id?: string | undefined;
|
|
70539
70677
|
symbol_name?: string | undefined;
|
|
70540
70678
|
schematic_trace_id?: string | undefined;
|
|
70541
70679
|
schematic_net_label_id?: string | undefined;
|
|
@@ -70681,6 +70819,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70681
70819
|
}>]>, z.ZodObject<{
|
|
70682
70820
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
70683
70821
|
schematic_voltage_probe_id: z.ZodString;
|
|
70822
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70684
70823
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
70685
70824
|
name: z.ZodOptional<z.ZodString>;
|
|
70686
70825
|
position: z.ZodObject<{
|
|
@@ -70710,6 +70849,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70710
70849
|
source_component_id?: string | undefined;
|
|
70711
70850
|
subcircuit_id?: string | undefined;
|
|
70712
70851
|
color?: string | undefined;
|
|
70852
|
+
schematic_sheet_id?: string | undefined;
|
|
70713
70853
|
voltage?: number | undefined;
|
|
70714
70854
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70715
70855
|
}, {
|
|
@@ -70724,6 +70864,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70724
70864
|
source_component_id?: string | undefined;
|
|
70725
70865
|
subcircuit_id?: string | undefined;
|
|
70726
70866
|
color?: string | undefined;
|
|
70867
|
+
schematic_sheet_id?: string | undefined;
|
|
70727
70868
|
voltage?: string | number | undefined;
|
|
70728
70869
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70729
70870
|
}>, z.ZodObject<{
|
|
@@ -70756,6 +70897,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70756
70897
|
}>, z.ZodObject<{
|
|
70757
70898
|
type: z.ZodLiteral<"schematic_group">;
|
|
70758
70899
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70900
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70759
70901
|
source_group_id: z.ZodString;
|
|
70760
70902
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
70761
70903
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -70790,6 +70932,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70790
70932
|
name?: string | undefined;
|
|
70791
70933
|
subcircuit_id?: string | undefined;
|
|
70792
70934
|
is_subcircuit?: boolean | undefined;
|
|
70935
|
+
schematic_sheet_id?: string | undefined;
|
|
70793
70936
|
show_as_schematic_box?: boolean | undefined;
|
|
70794
70937
|
}, {
|
|
70795
70938
|
type: "schematic_group";
|
|
@@ -70805,6 +70948,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70805
70948
|
name?: string | undefined;
|
|
70806
70949
|
subcircuit_id?: string | undefined;
|
|
70807
70950
|
is_subcircuit?: boolean | undefined;
|
|
70951
|
+
schematic_sheet_id?: string | undefined;
|
|
70808
70952
|
schematic_group_id?: string | undefined;
|
|
70809
70953
|
show_as_schematic_box?: boolean | undefined;
|
|
70810
70954
|
}>, z.ZodObject<{
|
|
@@ -70828,6 +70972,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70828
70972
|
}>, z.ZodObject<{
|
|
70829
70973
|
type: z.ZodLiteral<"schematic_table">;
|
|
70830
70974
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70975
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70831
70976
|
anchor_position: z.ZodObject<{
|
|
70832
70977
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
70833
70978
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70856,6 +71001,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70856
71001
|
row_heights: number[];
|
|
70857
71002
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70858
71003
|
subcircuit_id?: string | undefined;
|
|
71004
|
+
schematic_sheet_id?: string | undefined;
|
|
70859
71005
|
schematic_component_id?: string | undefined;
|
|
70860
71006
|
cell_padding?: number | undefined;
|
|
70861
71007
|
border_width?: number | undefined;
|
|
@@ -70869,6 +71015,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70869
71015
|
row_heights: (string | number)[];
|
|
70870
71016
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70871
71017
|
subcircuit_id?: string | undefined;
|
|
71018
|
+
schematic_sheet_id?: string | undefined;
|
|
70872
71019
|
schematic_component_id?: string | undefined;
|
|
70873
71020
|
schematic_table_id?: string | undefined;
|
|
70874
71021
|
cell_padding?: string | number | undefined;
|
|
@@ -70876,6 +71023,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70876
71023
|
}>, z.ZodObject<{
|
|
70877
71024
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
70878
71025
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
71026
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70879
71027
|
schematic_table_id: z.ZodString;
|
|
70880
71028
|
start_row_index: z.ZodNumber;
|
|
70881
71029
|
end_row_index: z.ZodNumber;
|
|
@@ -70915,6 +71063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70915
71063
|
subcircuit_id?: string | undefined;
|
|
70916
71064
|
text?: string | undefined;
|
|
70917
71065
|
font_size?: number | undefined;
|
|
71066
|
+
schematic_sheet_id?: string | undefined;
|
|
70918
71067
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70919
71068
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
70920
71069
|
}, {
|
|
@@ -70933,6 +71082,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70933
71082
|
subcircuit_id?: string | undefined;
|
|
70934
71083
|
text?: string | undefined;
|
|
70935
71084
|
font_size?: string | number | undefined;
|
|
71085
|
+
schematic_sheet_id?: string | undefined;
|
|
70936
71086
|
schematic_table_cell_id?: string | undefined;
|
|
70937
71087
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70938
71088
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|