circuit-json 0.0.440 → 0.0.442
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 +17 -0
- package/dist/index.d.mts +160 -0
- package/dist/index.mjs +16 -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;
|
|
@@ -25753,6 +25813,7 @@ declare const schematic_sheet: z.ZodObject<{
|
|
|
25753
25813
|
type: z.ZodLiteral<"schematic_sheet">;
|
|
25754
25814
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25755
25815
|
name: z.ZodOptional<z.ZodString>;
|
|
25816
|
+
sheet_index: z.ZodOptional<z.ZodNumber>;
|
|
25756
25817
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25757
25818
|
outline_color: z.ZodOptional<z.ZodString>;
|
|
25758
25819
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -25760,12 +25821,14 @@ declare const schematic_sheet: z.ZodObject<{
|
|
|
25760
25821
|
schematic_sheet_id: string;
|
|
25761
25822
|
name?: string | undefined;
|
|
25762
25823
|
subcircuit_id?: string | undefined;
|
|
25824
|
+
sheet_index?: number | undefined;
|
|
25763
25825
|
outline_color?: string | undefined;
|
|
25764
25826
|
}, {
|
|
25765
25827
|
type: "schematic_sheet";
|
|
25766
25828
|
name?: string | undefined;
|
|
25767
25829
|
subcircuit_id?: string | undefined;
|
|
25768
25830
|
schematic_sheet_id?: string | undefined;
|
|
25831
|
+
sheet_index?: number | undefined;
|
|
25769
25832
|
outline_color?: string | undefined;
|
|
25770
25833
|
}>;
|
|
25771
25834
|
type SchematicSheetInput = z.input<typeof schematic_sheet>;
|
|
@@ -25776,6 +25839,7 @@ interface SchematicSheet {
|
|
|
25776
25839
|
type: "schematic_sheet";
|
|
25777
25840
|
schematic_sheet_id: string;
|
|
25778
25841
|
name?: string;
|
|
25842
|
+
sheet_index?: number;
|
|
25779
25843
|
subcircuit_id?: string;
|
|
25780
25844
|
outline_color?: string;
|
|
25781
25845
|
}
|
|
@@ -44028,6 +44092,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44028
44092
|
pcb_courtyard_pill_id?: string | undefined;
|
|
44029
44093
|
}>, z.ZodObject<{
|
|
44030
44094
|
type: z.ZodLiteral<"schematic_box">;
|
|
44095
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44031
44096
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44032
44097
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44033
44098
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44044,6 +44109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44044
44109
|
height: number;
|
|
44045
44110
|
is_dashed: boolean;
|
|
44046
44111
|
subcircuit_id?: string | undefined;
|
|
44112
|
+
schematic_sheet_id?: string | undefined;
|
|
44047
44113
|
schematic_component_id?: string | undefined;
|
|
44048
44114
|
schematic_symbol_id?: string | undefined;
|
|
44049
44115
|
}, {
|
|
@@ -44054,10 +44120,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44054
44120
|
height: string | number;
|
|
44055
44121
|
subcircuit_id?: string | undefined;
|
|
44056
44122
|
is_dashed?: boolean | undefined;
|
|
44123
|
+
schematic_sheet_id?: string | undefined;
|
|
44057
44124
|
schematic_component_id?: string | undefined;
|
|
44058
44125
|
schematic_symbol_id?: string | undefined;
|
|
44059
44126
|
}>, z.ZodObject<{
|
|
44060
44127
|
type: z.ZodLiteral<"schematic_text">;
|
|
44128
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44061
44129
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44062
44130
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44063
44131
|
schematic_text_id: z.ZodString;
|
|
@@ -44090,6 +44158,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44090
44158
|
y: number;
|
|
44091
44159
|
};
|
|
44092
44160
|
subcircuit_id?: string | undefined;
|
|
44161
|
+
schematic_sheet_id?: string | undefined;
|
|
44093
44162
|
schematic_component_id?: string | undefined;
|
|
44094
44163
|
schematic_symbol_id?: string | undefined;
|
|
44095
44164
|
}, {
|
|
@@ -44105,11 +44174,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44105
44174
|
subcircuit_id?: string | undefined;
|
|
44106
44175
|
font_size?: number | undefined;
|
|
44107
44176
|
color?: string | undefined;
|
|
44177
|
+
schematic_sheet_id?: string | undefined;
|
|
44108
44178
|
schematic_component_id?: string | undefined;
|
|
44109
44179
|
schematic_symbol_id?: string | undefined;
|
|
44110
44180
|
}>, z.ZodObject<{
|
|
44111
44181
|
type: z.ZodLiteral<"schematic_line">;
|
|
44112
44182
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44183
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44113
44184
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44114
44185
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44115
44186
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44133,6 +44204,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44133
44204
|
schematic_line_id: string;
|
|
44134
44205
|
subcircuit_id?: string | undefined;
|
|
44135
44206
|
stroke_width?: number | null | undefined;
|
|
44207
|
+
schematic_sheet_id?: string | undefined;
|
|
44136
44208
|
schematic_component_id?: string | undefined;
|
|
44137
44209
|
schematic_symbol_id?: string | undefined;
|
|
44138
44210
|
dash_length?: number | undefined;
|
|
@@ -44147,6 +44219,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44147
44219
|
stroke_width?: string | number | null | undefined;
|
|
44148
44220
|
color?: string | undefined;
|
|
44149
44221
|
is_dashed?: boolean | undefined;
|
|
44222
|
+
schematic_sheet_id?: string | undefined;
|
|
44150
44223
|
schematic_component_id?: string | undefined;
|
|
44151
44224
|
schematic_symbol_id?: string | undefined;
|
|
44152
44225
|
dash_length?: string | number | undefined;
|
|
@@ -44155,6 +44228,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44155
44228
|
}>, z.ZodObject<{
|
|
44156
44229
|
type: z.ZodLiteral<"schematic_rect">;
|
|
44157
44230
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44231
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44158
44232
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44159
44233
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44160
44234
|
center: z.ZodObject<{
|
|
@@ -44191,6 +44265,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44191
44265
|
schematic_rect_id: string;
|
|
44192
44266
|
subcircuit_id?: string | undefined;
|
|
44193
44267
|
stroke_width?: number | null | undefined;
|
|
44268
|
+
schematic_sheet_id?: string | undefined;
|
|
44194
44269
|
schematic_component_id?: string | undefined;
|
|
44195
44270
|
schematic_symbol_id?: string | undefined;
|
|
44196
44271
|
fill_color?: string | undefined;
|
|
@@ -44208,6 +44283,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44208
44283
|
is_filled?: boolean | undefined;
|
|
44209
44284
|
color?: string | undefined;
|
|
44210
44285
|
is_dashed?: boolean | undefined;
|
|
44286
|
+
schematic_sheet_id?: string | undefined;
|
|
44211
44287
|
schematic_component_id?: string | undefined;
|
|
44212
44288
|
schematic_symbol_id?: string | undefined;
|
|
44213
44289
|
fill_color?: string | undefined;
|
|
@@ -44215,6 +44291,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44215
44291
|
}>, z.ZodObject<{
|
|
44216
44292
|
type: z.ZodLiteral<"schematic_circle">;
|
|
44217
44293
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44294
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44218
44295
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44219
44296
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44220
44297
|
center: z.ZodObject<{
|
|
@@ -44247,6 +44324,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44247
44324
|
schematic_circle_id: string;
|
|
44248
44325
|
subcircuit_id?: string | undefined;
|
|
44249
44326
|
stroke_width?: number | null | undefined;
|
|
44327
|
+
schematic_sheet_id?: string | undefined;
|
|
44250
44328
|
schematic_component_id?: string | undefined;
|
|
44251
44329
|
schematic_symbol_id?: string | undefined;
|
|
44252
44330
|
fill_color?: string | undefined;
|
|
@@ -44262,6 +44340,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44262
44340
|
is_filled?: boolean | undefined;
|
|
44263
44341
|
color?: string | undefined;
|
|
44264
44342
|
is_dashed?: boolean | undefined;
|
|
44343
|
+
schematic_sheet_id?: string | undefined;
|
|
44265
44344
|
schematic_component_id?: string | undefined;
|
|
44266
44345
|
schematic_symbol_id?: string | undefined;
|
|
44267
44346
|
fill_color?: string | undefined;
|
|
@@ -44269,6 +44348,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44269
44348
|
}>, z.ZodObject<{
|
|
44270
44349
|
type: z.ZodLiteral<"schematic_arc">;
|
|
44271
44350
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44351
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44272
44352
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44273
44353
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44274
44354
|
center: z.ZodObject<{
|
|
@@ -44304,6 +44384,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44304
44384
|
end_angle_degrees: number;
|
|
44305
44385
|
subcircuit_id?: string | undefined;
|
|
44306
44386
|
stroke_width?: number | null | undefined;
|
|
44387
|
+
schematic_sheet_id?: string | undefined;
|
|
44307
44388
|
schematic_component_id?: string | undefined;
|
|
44308
44389
|
schematic_symbol_id?: string | undefined;
|
|
44309
44390
|
}, {
|
|
@@ -44319,6 +44400,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44319
44400
|
stroke_width?: string | number | null | undefined;
|
|
44320
44401
|
color?: string | undefined;
|
|
44321
44402
|
is_dashed?: boolean | undefined;
|
|
44403
|
+
schematic_sheet_id?: string | undefined;
|
|
44322
44404
|
schematic_component_id?: string | undefined;
|
|
44323
44405
|
schematic_symbol_id?: string | undefined;
|
|
44324
44406
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -44347,6 +44429,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44347
44429
|
}>;
|
|
44348
44430
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
44349
44431
|
schematic_component_id: z.ZodString;
|
|
44432
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44350
44433
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44351
44434
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44352
44435
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -44480,6 +44563,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44480
44563
|
source_component_id?: string | undefined;
|
|
44481
44564
|
subcircuit_id?: string | undefined;
|
|
44482
44565
|
source_group_id?: string | undefined;
|
|
44566
|
+
schematic_sheet_id?: string | undefined;
|
|
44483
44567
|
schematic_symbol_id?: string | undefined;
|
|
44484
44568
|
pin_spacing?: number | undefined;
|
|
44485
44569
|
pin_styles?: Record<string, {
|
|
@@ -44531,6 +44615,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44531
44615
|
source_component_id?: string | undefined;
|
|
44532
44616
|
subcircuit_id?: string | undefined;
|
|
44533
44617
|
source_group_id?: string | undefined;
|
|
44618
|
+
schematic_sheet_id?: string | undefined;
|
|
44534
44619
|
schematic_symbol_id?: string | undefined;
|
|
44535
44620
|
pin_spacing?: string | number | undefined;
|
|
44536
44621
|
pin_styles?: Record<string, {
|
|
@@ -51373,6 +51458,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51373
51458
|
type: z.ZodLiteral<"schematic_port">;
|
|
51374
51459
|
schematic_port_id: z.ZodString;
|
|
51375
51460
|
source_port_id: z.ZodString;
|
|
51461
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51376
51462
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51377
51463
|
center: z.ZodObject<{
|
|
51378
51464
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -51405,6 +51491,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51405
51491
|
schematic_port_id: string;
|
|
51406
51492
|
subcircuit_id?: string | undefined;
|
|
51407
51493
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51494
|
+
schematic_sheet_id?: string | undefined;
|
|
51408
51495
|
schematic_component_id?: string | undefined;
|
|
51409
51496
|
distance_from_component_edge?: number | undefined;
|
|
51410
51497
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51425,6 +51512,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51425
51512
|
schematic_port_id: string;
|
|
51426
51513
|
subcircuit_id?: string | undefined;
|
|
51427
51514
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51515
|
+
schematic_sheet_id?: string | undefined;
|
|
51428
51516
|
schematic_component_id?: string | undefined;
|
|
51429
51517
|
distance_from_component_edge?: number | undefined;
|
|
51430
51518
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51438,6 +51526,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51438
51526
|
}>, z.ZodObject<{
|
|
51439
51527
|
type: z.ZodLiteral<"schematic_trace">;
|
|
51440
51528
|
schematic_trace_id: z.ZodString;
|
|
51529
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51441
51530
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51442
51531
|
junctions: z.ZodArray<z.ZodObject<{
|
|
51443
51532
|
x: z.ZodNumber;
|
|
@@ -51523,6 +51612,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51523
51612
|
subcircuit_id?: string | undefined;
|
|
51524
51613
|
source_trace_id?: string | undefined;
|
|
51525
51614
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51615
|
+
schematic_sheet_id?: string | undefined;
|
|
51526
51616
|
}, {
|
|
51527
51617
|
type: "schematic_trace";
|
|
51528
51618
|
schematic_trace_id: string;
|
|
@@ -51546,9 +51636,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51546
51636
|
subcircuit_id?: string | undefined;
|
|
51547
51637
|
source_trace_id?: string | undefined;
|
|
51548
51638
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51639
|
+
schematic_sheet_id?: string | undefined;
|
|
51549
51640
|
}>, z.ZodObject<{
|
|
51550
51641
|
type: z.ZodLiteral<"schematic_path">;
|
|
51551
51642
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51643
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51552
51644
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51553
51645
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
51554
51646
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -51580,6 +51672,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51580
51672
|
subcircuit_id?: string | undefined;
|
|
51581
51673
|
stroke_width?: number | null | undefined;
|
|
51582
51674
|
is_filled?: boolean | undefined;
|
|
51675
|
+
schematic_sheet_id?: string | undefined;
|
|
51583
51676
|
schematic_component_id?: string | undefined;
|
|
51584
51677
|
schematic_symbol_id?: string | undefined;
|
|
51585
51678
|
fill_color?: string | undefined;
|
|
@@ -51596,6 +51689,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51596
51689
|
stroke_width?: string | number | null | undefined;
|
|
51597
51690
|
is_filled?: boolean | undefined;
|
|
51598
51691
|
is_dashed?: boolean | undefined;
|
|
51692
|
+
schematic_sheet_id?: string | undefined;
|
|
51599
51693
|
schematic_component_id?: string | undefined;
|
|
51600
51694
|
schematic_symbol_id?: string | undefined;
|
|
51601
51695
|
schematic_path_id?: string | undefined;
|
|
@@ -51656,6 +51750,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51656
51750
|
}>, z.ZodObject<{
|
|
51657
51751
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
51658
51752
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51753
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51659
51754
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
51660
51755
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51661
51756
|
source_net_id: z.ZodString;
|
|
@@ -51700,6 +51795,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51700
51795
|
y: number;
|
|
51701
51796
|
} | undefined;
|
|
51702
51797
|
source_trace_id?: string | undefined;
|
|
51798
|
+
schematic_sheet_id?: string | undefined;
|
|
51703
51799
|
symbol_name?: string | undefined;
|
|
51704
51800
|
schematic_trace_id?: string | undefined;
|
|
51705
51801
|
is_movable?: boolean | undefined;
|
|
@@ -51718,6 +51814,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51718
51814
|
y: string | number;
|
|
51719
51815
|
} | undefined;
|
|
51720
51816
|
source_trace_id?: string | undefined;
|
|
51817
|
+
schematic_sheet_id?: string | undefined;
|
|
51721
51818
|
symbol_name?: string | undefined;
|
|
51722
51819
|
schematic_trace_id?: string | undefined;
|
|
51723
51820
|
schematic_net_label_id?: string | undefined;
|
|
@@ -51863,6 +51960,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51863
51960
|
}>]>, z.ZodObject<{
|
|
51864
51961
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
51865
51962
|
schematic_voltage_probe_id: z.ZodString;
|
|
51963
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51866
51964
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
51867
51965
|
name: z.ZodOptional<z.ZodString>;
|
|
51868
51966
|
position: z.ZodObject<{
|
|
@@ -51892,6 +51990,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51892
51990
|
source_component_id?: string | undefined;
|
|
51893
51991
|
subcircuit_id?: string | undefined;
|
|
51894
51992
|
color?: string | undefined;
|
|
51993
|
+
schematic_sheet_id?: string | undefined;
|
|
51895
51994
|
voltage?: number | undefined;
|
|
51896
51995
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51897
51996
|
}, {
|
|
@@ -51906,6 +52005,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51906
52005
|
source_component_id?: string | undefined;
|
|
51907
52006
|
subcircuit_id?: string | undefined;
|
|
51908
52007
|
color?: string | undefined;
|
|
52008
|
+
schematic_sheet_id?: string | undefined;
|
|
51909
52009
|
voltage?: string | number | undefined;
|
|
51910
52010
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51911
52011
|
}>, z.ZodObject<{
|
|
@@ -51938,6 +52038,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51938
52038
|
}>, z.ZodObject<{
|
|
51939
52039
|
type: z.ZodLiteral<"schematic_group">;
|
|
51940
52040
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52041
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51941
52042
|
source_group_id: z.ZodString;
|
|
51942
52043
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
51943
52044
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -51972,6 +52073,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51972
52073
|
name?: string | undefined;
|
|
51973
52074
|
subcircuit_id?: string | undefined;
|
|
51974
52075
|
is_subcircuit?: boolean | undefined;
|
|
52076
|
+
schematic_sheet_id?: string | undefined;
|
|
51975
52077
|
show_as_schematic_box?: boolean | undefined;
|
|
51976
52078
|
}, {
|
|
51977
52079
|
type: "schematic_group";
|
|
@@ -51987,12 +52089,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51987
52089
|
name?: string | undefined;
|
|
51988
52090
|
subcircuit_id?: string | undefined;
|
|
51989
52091
|
is_subcircuit?: boolean | undefined;
|
|
52092
|
+
schematic_sheet_id?: string | undefined;
|
|
51990
52093
|
schematic_group_id?: string | undefined;
|
|
51991
52094
|
show_as_schematic_box?: boolean | undefined;
|
|
51992
52095
|
}>, z.ZodObject<{
|
|
51993
52096
|
type: z.ZodLiteral<"schematic_sheet">;
|
|
51994
52097
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51995
52098
|
name: z.ZodOptional<z.ZodString>;
|
|
52099
|
+
sheet_index: z.ZodOptional<z.ZodNumber>;
|
|
51996
52100
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
51997
52101
|
outline_color: z.ZodOptional<z.ZodString>;
|
|
51998
52102
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -52000,16 +52104,19 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52000
52104
|
schematic_sheet_id: string;
|
|
52001
52105
|
name?: string | undefined;
|
|
52002
52106
|
subcircuit_id?: string | undefined;
|
|
52107
|
+
sheet_index?: number | undefined;
|
|
52003
52108
|
outline_color?: string | undefined;
|
|
52004
52109
|
}, {
|
|
52005
52110
|
type: "schematic_sheet";
|
|
52006
52111
|
name?: string | undefined;
|
|
52007
52112
|
subcircuit_id?: string | undefined;
|
|
52008
52113
|
schematic_sheet_id?: string | undefined;
|
|
52114
|
+
sheet_index?: number | undefined;
|
|
52009
52115
|
outline_color?: string | undefined;
|
|
52010
52116
|
}>, z.ZodObject<{
|
|
52011
52117
|
type: z.ZodLiteral<"schematic_table">;
|
|
52012
52118
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52119
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52013
52120
|
anchor_position: z.ZodObject<{
|
|
52014
52121
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52015
52122
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -52038,6 +52145,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52038
52145
|
row_heights: number[];
|
|
52039
52146
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52040
52147
|
subcircuit_id?: string | undefined;
|
|
52148
|
+
schematic_sheet_id?: string | undefined;
|
|
52041
52149
|
schematic_component_id?: string | undefined;
|
|
52042
52150
|
cell_padding?: number | undefined;
|
|
52043
52151
|
border_width?: number | undefined;
|
|
@@ -52051,6 +52159,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52051
52159
|
row_heights: (string | number)[];
|
|
52052
52160
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52053
52161
|
subcircuit_id?: string | undefined;
|
|
52162
|
+
schematic_sheet_id?: string | undefined;
|
|
52054
52163
|
schematic_component_id?: string | undefined;
|
|
52055
52164
|
schematic_table_id?: string | undefined;
|
|
52056
52165
|
cell_padding?: string | number | undefined;
|
|
@@ -52058,6 +52167,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52058
52167
|
}>, z.ZodObject<{
|
|
52059
52168
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
52060
52169
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52170
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52061
52171
|
schematic_table_id: z.ZodString;
|
|
52062
52172
|
start_row_index: z.ZodNumber;
|
|
52063
52173
|
end_row_index: z.ZodNumber;
|
|
@@ -52097,6 +52207,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52097
52207
|
subcircuit_id?: string | undefined;
|
|
52098
52208
|
text?: string | undefined;
|
|
52099
52209
|
font_size?: number | undefined;
|
|
52210
|
+
schematic_sheet_id?: string | undefined;
|
|
52100
52211
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52101
52212
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
52102
52213
|
}, {
|
|
@@ -52115,6 +52226,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52115
52226
|
subcircuit_id?: string | undefined;
|
|
52116
52227
|
text?: string | undefined;
|
|
52117
52228
|
font_size?: string | number | undefined;
|
|
52229
|
+
schematic_sheet_id?: string | undefined;
|
|
52118
52230
|
schematic_table_cell_id?: string | undefined;
|
|
52119
52231
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52120
52232
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
@@ -62846,6 +62958,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62846
62958
|
pcb_courtyard_pill_id?: string | undefined;
|
|
62847
62959
|
}>, z.ZodObject<{
|
|
62848
62960
|
type: z.ZodLiteral<"schematic_box">;
|
|
62961
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62849
62962
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62850
62963
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62851
62964
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62862,6 +62975,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62862
62975
|
height: number;
|
|
62863
62976
|
is_dashed: boolean;
|
|
62864
62977
|
subcircuit_id?: string | undefined;
|
|
62978
|
+
schematic_sheet_id?: string | undefined;
|
|
62865
62979
|
schematic_component_id?: string | undefined;
|
|
62866
62980
|
schematic_symbol_id?: string | undefined;
|
|
62867
62981
|
}, {
|
|
@@ -62872,10 +62986,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62872
62986
|
height: string | number;
|
|
62873
62987
|
subcircuit_id?: string | undefined;
|
|
62874
62988
|
is_dashed?: boolean | undefined;
|
|
62989
|
+
schematic_sheet_id?: string | undefined;
|
|
62875
62990
|
schematic_component_id?: string | undefined;
|
|
62876
62991
|
schematic_symbol_id?: string | undefined;
|
|
62877
62992
|
}>, z.ZodObject<{
|
|
62878
62993
|
type: z.ZodLiteral<"schematic_text">;
|
|
62994
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62879
62995
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62880
62996
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62881
62997
|
schematic_text_id: z.ZodString;
|
|
@@ -62908,6 +63024,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62908
63024
|
y: number;
|
|
62909
63025
|
};
|
|
62910
63026
|
subcircuit_id?: string | undefined;
|
|
63027
|
+
schematic_sheet_id?: string | undefined;
|
|
62911
63028
|
schematic_component_id?: string | undefined;
|
|
62912
63029
|
schematic_symbol_id?: string | undefined;
|
|
62913
63030
|
}, {
|
|
@@ -62923,11 +63040,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62923
63040
|
subcircuit_id?: string | undefined;
|
|
62924
63041
|
font_size?: number | undefined;
|
|
62925
63042
|
color?: string | undefined;
|
|
63043
|
+
schematic_sheet_id?: string | undefined;
|
|
62926
63044
|
schematic_component_id?: string | undefined;
|
|
62927
63045
|
schematic_symbol_id?: string | undefined;
|
|
62928
63046
|
}>, z.ZodObject<{
|
|
62929
63047
|
type: z.ZodLiteral<"schematic_line">;
|
|
62930
63048
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63049
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62931
63050
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62932
63051
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62933
63052
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62951,6 +63070,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62951
63070
|
schematic_line_id: string;
|
|
62952
63071
|
subcircuit_id?: string | undefined;
|
|
62953
63072
|
stroke_width?: number | null | undefined;
|
|
63073
|
+
schematic_sheet_id?: string | undefined;
|
|
62954
63074
|
schematic_component_id?: string | undefined;
|
|
62955
63075
|
schematic_symbol_id?: string | undefined;
|
|
62956
63076
|
dash_length?: number | undefined;
|
|
@@ -62965,6 +63085,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62965
63085
|
stroke_width?: string | number | null | undefined;
|
|
62966
63086
|
color?: string | undefined;
|
|
62967
63087
|
is_dashed?: boolean | undefined;
|
|
63088
|
+
schematic_sheet_id?: string | undefined;
|
|
62968
63089
|
schematic_component_id?: string | undefined;
|
|
62969
63090
|
schematic_symbol_id?: string | undefined;
|
|
62970
63091
|
dash_length?: string | number | undefined;
|
|
@@ -62973,6 +63094,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62973
63094
|
}>, z.ZodObject<{
|
|
62974
63095
|
type: z.ZodLiteral<"schematic_rect">;
|
|
62975
63096
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63097
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62976
63098
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62977
63099
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62978
63100
|
center: z.ZodObject<{
|
|
@@ -63009,6 +63131,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63009
63131
|
schematic_rect_id: string;
|
|
63010
63132
|
subcircuit_id?: string | undefined;
|
|
63011
63133
|
stroke_width?: number | null | undefined;
|
|
63134
|
+
schematic_sheet_id?: string | undefined;
|
|
63012
63135
|
schematic_component_id?: string | undefined;
|
|
63013
63136
|
schematic_symbol_id?: string | undefined;
|
|
63014
63137
|
fill_color?: string | undefined;
|
|
@@ -63026,6 +63149,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63026
63149
|
is_filled?: boolean | undefined;
|
|
63027
63150
|
color?: string | undefined;
|
|
63028
63151
|
is_dashed?: boolean | undefined;
|
|
63152
|
+
schematic_sheet_id?: string | undefined;
|
|
63029
63153
|
schematic_component_id?: string | undefined;
|
|
63030
63154
|
schematic_symbol_id?: string | undefined;
|
|
63031
63155
|
fill_color?: string | undefined;
|
|
@@ -63033,6 +63157,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63033
63157
|
}>, z.ZodObject<{
|
|
63034
63158
|
type: z.ZodLiteral<"schematic_circle">;
|
|
63035
63159
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63160
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63036
63161
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63037
63162
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63038
63163
|
center: z.ZodObject<{
|
|
@@ -63065,6 +63190,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63065
63190
|
schematic_circle_id: string;
|
|
63066
63191
|
subcircuit_id?: string | undefined;
|
|
63067
63192
|
stroke_width?: number | null | undefined;
|
|
63193
|
+
schematic_sheet_id?: string | undefined;
|
|
63068
63194
|
schematic_component_id?: string | undefined;
|
|
63069
63195
|
schematic_symbol_id?: string | undefined;
|
|
63070
63196
|
fill_color?: string | undefined;
|
|
@@ -63080,6 +63206,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63080
63206
|
is_filled?: boolean | undefined;
|
|
63081
63207
|
color?: string | undefined;
|
|
63082
63208
|
is_dashed?: boolean | undefined;
|
|
63209
|
+
schematic_sheet_id?: string | undefined;
|
|
63083
63210
|
schematic_component_id?: string | undefined;
|
|
63084
63211
|
schematic_symbol_id?: string | undefined;
|
|
63085
63212
|
fill_color?: string | undefined;
|
|
@@ -63087,6 +63214,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63087
63214
|
}>, z.ZodObject<{
|
|
63088
63215
|
type: z.ZodLiteral<"schematic_arc">;
|
|
63089
63216
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63217
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63090
63218
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63091
63219
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63092
63220
|
center: z.ZodObject<{
|
|
@@ -63122,6 +63250,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63122
63250
|
end_angle_degrees: number;
|
|
63123
63251
|
subcircuit_id?: string | undefined;
|
|
63124
63252
|
stroke_width?: number | null | undefined;
|
|
63253
|
+
schematic_sheet_id?: string | undefined;
|
|
63125
63254
|
schematic_component_id?: string | undefined;
|
|
63126
63255
|
schematic_symbol_id?: string | undefined;
|
|
63127
63256
|
}, {
|
|
@@ -63137,6 +63266,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63137
63266
|
stroke_width?: string | number | null | undefined;
|
|
63138
63267
|
color?: string | undefined;
|
|
63139
63268
|
is_dashed?: boolean | undefined;
|
|
63269
|
+
schematic_sheet_id?: string | undefined;
|
|
63140
63270
|
schematic_component_id?: string | undefined;
|
|
63141
63271
|
schematic_symbol_id?: string | undefined;
|
|
63142
63272
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -63165,6 +63295,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63165
63295
|
}>;
|
|
63166
63296
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
63167
63297
|
schematic_component_id: z.ZodString;
|
|
63298
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63168
63299
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63169
63300
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
63170
63301
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -63298,6 +63429,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63298
63429
|
source_component_id?: string | undefined;
|
|
63299
63430
|
subcircuit_id?: string | undefined;
|
|
63300
63431
|
source_group_id?: string | undefined;
|
|
63432
|
+
schematic_sheet_id?: string | undefined;
|
|
63301
63433
|
schematic_symbol_id?: string | undefined;
|
|
63302
63434
|
pin_spacing?: number | undefined;
|
|
63303
63435
|
pin_styles?: Record<string, {
|
|
@@ -63349,6 +63481,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63349
63481
|
source_component_id?: string | undefined;
|
|
63350
63482
|
subcircuit_id?: string | undefined;
|
|
63351
63483
|
source_group_id?: string | undefined;
|
|
63484
|
+
schematic_sheet_id?: string | undefined;
|
|
63352
63485
|
schematic_symbol_id?: string | undefined;
|
|
63353
63486
|
pin_spacing?: string | number | undefined;
|
|
63354
63487
|
pin_styles?: Record<string, {
|
|
@@ -70191,6 +70324,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70191
70324
|
type: z.ZodLiteral<"schematic_port">;
|
|
70192
70325
|
schematic_port_id: z.ZodString;
|
|
70193
70326
|
source_port_id: z.ZodString;
|
|
70327
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70194
70328
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70195
70329
|
center: z.ZodObject<{
|
|
70196
70330
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70223,6 +70357,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70223
70357
|
schematic_port_id: string;
|
|
70224
70358
|
subcircuit_id?: string | undefined;
|
|
70225
70359
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70360
|
+
schematic_sheet_id?: string | undefined;
|
|
70226
70361
|
schematic_component_id?: string | undefined;
|
|
70227
70362
|
distance_from_component_edge?: number | undefined;
|
|
70228
70363
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70243,6 +70378,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70243
70378
|
schematic_port_id: string;
|
|
70244
70379
|
subcircuit_id?: string | undefined;
|
|
70245
70380
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70381
|
+
schematic_sheet_id?: string | undefined;
|
|
70246
70382
|
schematic_component_id?: string | undefined;
|
|
70247
70383
|
distance_from_component_edge?: number | undefined;
|
|
70248
70384
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70256,6 +70392,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70256
70392
|
}>, z.ZodObject<{
|
|
70257
70393
|
type: z.ZodLiteral<"schematic_trace">;
|
|
70258
70394
|
schematic_trace_id: z.ZodString;
|
|
70395
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70259
70396
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70260
70397
|
junctions: z.ZodArray<z.ZodObject<{
|
|
70261
70398
|
x: z.ZodNumber;
|
|
@@ -70341,6 +70478,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70341
70478
|
subcircuit_id?: string | undefined;
|
|
70342
70479
|
source_trace_id?: string | undefined;
|
|
70343
70480
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70481
|
+
schematic_sheet_id?: string | undefined;
|
|
70344
70482
|
}, {
|
|
70345
70483
|
type: "schematic_trace";
|
|
70346
70484
|
schematic_trace_id: string;
|
|
@@ -70364,9 +70502,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70364
70502
|
subcircuit_id?: string | undefined;
|
|
70365
70503
|
source_trace_id?: string | undefined;
|
|
70366
70504
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70505
|
+
schematic_sheet_id?: string | undefined;
|
|
70367
70506
|
}>, z.ZodObject<{
|
|
70368
70507
|
type: z.ZodLiteral<"schematic_path">;
|
|
70369
70508
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70509
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70370
70510
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70371
70511
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
70372
70512
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -70398,6 +70538,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70398
70538
|
subcircuit_id?: string | undefined;
|
|
70399
70539
|
stroke_width?: number | null | undefined;
|
|
70400
70540
|
is_filled?: boolean | undefined;
|
|
70541
|
+
schematic_sheet_id?: string | undefined;
|
|
70401
70542
|
schematic_component_id?: string | undefined;
|
|
70402
70543
|
schematic_symbol_id?: string | undefined;
|
|
70403
70544
|
fill_color?: string | undefined;
|
|
@@ -70414,6 +70555,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70414
70555
|
stroke_width?: string | number | null | undefined;
|
|
70415
70556
|
is_filled?: boolean | undefined;
|
|
70416
70557
|
is_dashed?: boolean | undefined;
|
|
70558
|
+
schematic_sheet_id?: string | undefined;
|
|
70417
70559
|
schematic_component_id?: string | undefined;
|
|
70418
70560
|
schematic_symbol_id?: string | undefined;
|
|
70419
70561
|
schematic_path_id?: string | undefined;
|
|
@@ -70474,6 +70616,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70474
70616
|
}>, z.ZodObject<{
|
|
70475
70617
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
70476
70618
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70619
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70477
70620
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
70478
70621
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70479
70622
|
source_net_id: z.ZodString;
|
|
@@ -70518,6 +70661,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70518
70661
|
y: number;
|
|
70519
70662
|
} | undefined;
|
|
70520
70663
|
source_trace_id?: string | undefined;
|
|
70664
|
+
schematic_sheet_id?: string | undefined;
|
|
70521
70665
|
symbol_name?: string | undefined;
|
|
70522
70666
|
schematic_trace_id?: string | undefined;
|
|
70523
70667
|
is_movable?: boolean | undefined;
|
|
@@ -70536,6 +70680,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70536
70680
|
y: string | number;
|
|
70537
70681
|
} | undefined;
|
|
70538
70682
|
source_trace_id?: string | undefined;
|
|
70683
|
+
schematic_sheet_id?: string | undefined;
|
|
70539
70684
|
symbol_name?: string | undefined;
|
|
70540
70685
|
schematic_trace_id?: string | undefined;
|
|
70541
70686
|
schematic_net_label_id?: string | undefined;
|
|
@@ -70681,6 +70826,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70681
70826
|
}>]>, z.ZodObject<{
|
|
70682
70827
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
70683
70828
|
schematic_voltage_probe_id: z.ZodString;
|
|
70829
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70684
70830
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
70685
70831
|
name: z.ZodOptional<z.ZodString>;
|
|
70686
70832
|
position: z.ZodObject<{
|
|
@@ -70710,6 +70856,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70710
70856
|
source_component_id?: string | undefined;
|
|
70711
70857
|
subcircuit_id?: string | undefined;
|
|
70712
70858
|
color?: string | undefined;
|
|
70859
|
+
schematic_sheet_id?: string | undefined;
|
|
70713
70860
|
voltage?: number | undefined;
|
|
70714
70861
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70715
70862
|
}, {
|
|
@@ -70724,6 +70871,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70724
70871
|
source_component_id?: string | undefined;
|
|
70725
70872
|
subcircuit_id?: string | undefined;
|
|
70726
70873
|
color?: string | undefined;
|
|
70874
|
+
schematic_sheet_id?: string | undefined;
|
|
70727
70875
|
voltage?: string | number | undefined;
|
|
70728
70876
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70729
70877
|
}>, z.ZodObject<{
|
|
@@ -70756,6 +70904,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70756
70904
|
}>, z.ZodObject<{
|
|
70757
70905
|
type: z.ZodLiteral<"schematic_group">;
|
|
70758
70906
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70907
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70759
70908
|
source_group_id: z.ZodString;
|
|
70760
70909
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
70761
70910
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -70790,6 +70939,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70790
70939
|
name?: string | undefined;
|
|
70791
70940
|
subcircuit_id?: string | undefined;
|
|
70792
70941
|
is_subcircuit?: boolean | undefined;
|
|
70942
|
+
schematic_sheet_id?: string | undefined;
|
|
70793
70943
|
show_as_schematic_box?: boolean | undefined;
|
|
70794
70944
|
}, {
|
|
70795
70945
|
type: "schematic_group";
|
|
@@ -70805,12 +70955,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70805
70955
|
name?: string | undefined;
|
|
70806
70956
|
subcircuit_id?: string | undefined;
|
|
70807
70957
|
is_subcircuit?: boolean | undefined;
|
|
70958
|
+
schematic_sheet_id?: string | undefined;
|
|
70808
70959
|
schematic_group_id?: string | undefined;
|
|
70809
70960
|
show_as_schematic_box?: boolean | undefined;
|
|
70810
70961
|
}>, z.ZodObject<{
|
|
70811
70962
|
type: z.ZodLiteral<"schematic_sheet">;
|
|
70812
70963
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70813
70964
|
name: z.ZodOptional<z.ZodString>;
|
|
70965
|
+
sheet_index: z.ZodOptional<z.ZodNumber>;
|
|
70814
70966
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
70815
70967
|
outline_color: z.ZodOptional<z.ZodString>;
|
|
70816
70968
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -70818,16 +70970,19 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70818
70970
|
schematic_sheet_id: string;
|
|
70819
70971
|
name?: string | undefined;
|
|
70820
70972
|
subcircuit_id?: string | undefined;
|
|
70973
|
+
sheet_index?: number | undefined;
|
|
70821
70974
|
outline_color?: string | undefined;
|
|
70822
70975
|
}, {
|
|
70823
70976
|
type: "schematic_sheet";
|
|
70824
70977
|
name?: string | undefined;
|
|
70825
70978
|
subcircuit_id?: string | undefined;
|
|
70826
70979
|
schematic_sheet_id?: string | undefined;
|
|
70980
|
+
sheet_index?: number | undefined;
|
|
70827
70981
|
outline_color?: string | undefined;
|
|
70828
70982
|
}>, z.ZodObject<{
|
|
70829
70983
|
type: z.ZodLiteral<"schematic_table">;
|
|
70830
70984
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70985
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70831
70986
|
anchor_position: z.ZodObject<{
|
|
70832
70987
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
70833
70988
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70856,6 +71011,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70856
71011
|
row_heights: number[];
|
|
70857
71012
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70858
71013
|
subcircuit_id?: string | undefined;
|
|
71014
|
+
schematic_sheet_id?: string | undefined;
|
|
70859
71015
|
schematic_component_id?: string | undefined;
|
|
70860
71016
|
cell_padding?: number | undefined;
|
|
70861
71017
|
border_width?: number | undefined;
|
|
@@ -70869,6 +71025,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70869
71025
|
row_heights: (string | number)[];
|
|
70870
71026
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70871
71027
|
subcircuit_id?: string | undefined;
|
|
71028
|
+
schematic_sheet_id?: string | undefined;
|
|
70872
71029
|
schematic_component_id?: string | undefined;
|
|
70873
71030
|
schematic_table_id?: string | undefined;
|
|
70874
71031
|
cell_padding?: string | number | undefined;
|
|
@@ -70876,6 +71033,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70876
71033
|
}>, z.ZodObject<{
|
|
70877
71034
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
70878
71035
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
71036
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70879
71037
|
schematic_table_id: z.ZodString;
|
|
70880
71038
|
start_row_index: z.ZodNumber;
|
|
70881
71039
|
end_row_index: z.ZodNumber;
|
|
@@ -70915,6 +71073,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70915
71073
|
subcircuit_id?: string | undefined;
|
|
70916
71074
|
text?: string | undefined;
|
|
70917
71075
|
font_size?: number | undefined;
|
|
71076
|
+
schematic_sheet_id?: string | undefined;
|
|
70918
71077
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70919
71078
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
70920
71079
|
}, {
|
|
@@ -70933,6 +71092,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70933
71092
|
subcircuit_id?: string | undefined;
|
|
70934
71093
|
text?: string | undefined;
|
|
70935
71094
|
font_size?: string | number | undefined;
|
|
71095
|
+
schematic_sheet_id?: string | undefined;
|
|
70936
71096
|
schematic_table_cell_id?: string | undefined;
|
|
70937
71097
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70938
71098
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|