circuit-json 0.0.439 → 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 +160 -0
- package/dist/index.mjs +17 -1
- 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;
|
|
@@ -25754,16 +25814,19 @@ declare const schematic_sheet: z.ZodObject<{
|
|
|
25754
25814
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25755
25815
|
name: z.ZodOptional<z.ZodString>;
|
|
25756
25816
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
25817
|
+
outline_color: z.ZodOptional<z.ZodString>;
|
|
25757
25818
|
}, "strip", z.ZodTypeAny, {
|
|
25758
25819
|
type: "schematic_sheet";
|
|
25759
25820
|
schematic_sheet_id: string;
|
|
25760
25821
|
name?: string | undefined;
|
|
25761
25822
|
subcircuit_id?: string | undefined;
|
|
25823
|
+
outline_color?: string | undefined;
|
|
25762
25824
|
}, {
|
|
25763
25825
|
type: "schematic_sheet";
|
|
25764
25826
|
name?: string | undefined;
|
|
25765
25827
|
subcircuit_id?: string | undefined;
|
|
25766
25828
|
schematic_sheet_id?: string | undefined;
|
|
25829
|
+
outline_color?: string | undefined;
|
|
25767
25830
|
}>;
|
|
25768
25831
|
type SchematicSheetInput = z.input<typeof schematic_sheet>;
|
|
25769
25832
|
/**
|
|
@@ -25774,6 +25837,7 @@ interface SchematicSheet {
|
|
|
25774
25837
|
schematic_sheet_id: string;
|
|
25775
25838
|
name?: string;
|
|
25776
25839
|
subcircuit_id?: string;
|
|
25840
|
+
outline_color?: string;
|
|
25777
25841
|
}
|
|
25778
25842
|
|
|
25779
25843
|
declare const wave_shape: z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>;
|
|
@@ -44024,6 +44088,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44024
44088
|
pcb_courtyard_pill_id?: string | undefined;
|
|
44025
44089
|
}>, z.ZodObject<{
|
|
44026
44090
|
type: z.ZodLiteral<"schematic_box">;
|
|
44091
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44027
44092
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44028
44093
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44029
44094
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44040,6 +44105,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44040
44105
|
height: number;
|
|
44041
44106
|
is_dashed: boolean;
|
|
44042
44107
|
subcircuit_id?: string | undefined;
|
|
44108
|
+
schematic_sheet_id?: string | undefined;
|
|
44043
44109
|
schematic_component_id?: string | undefined;
|
|
44044
44110
|
schematic_symbol_id?: string | undefined;
|
|
44045
44111
|
}, {
|
|
@@ -44050,10 +44116,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44050
44116
|
height: string | number;
|
|
44051
44117
|
subcircuit_id?: string | undefined;
|
|
44052
44118
|
is_dashed?: boolean | undefined;
|
|
44119
|
+
schematic_sheet_id?: string | undefined;
|
|
44053
44120
|
schematic_component_id?: string | undefined;
|
|
44054
44121
|
schematic_symbol_id?: string | undefined;
|
|
44055
44122
|
}>, z.ZodObject<{
|
|
44056
44123
|
type: z.ZodLiteral<"schematic_text">;
|
|
44124
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44057
44125
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44058
44126
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44059
44127
|
schematic_text_id: z.ZodString;
|
|
@@ -44086,6 +44154,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44086
44154
|
y: number;
|
|
44087
44155
|
};
|
|
44088
44156
|
subcircuit_id?: string | undefined;
|
|
44157
|
+
schematic_sheet_id?: string | undefined;
|
|
44089
44158
|
schematic_component_id?: string | undefined;
|
|
44090
44159
|
schematic_symbol_id?: string | undefined;
|
|
44091
44160
|
}, {
|
|
@@ -44101,11 +44170,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44101
44170
|
subcircuit_id?: string | undefined;
|
|
44102
44171
|
font_size?: number | undefined;
|
|
44103
44172
|
color?: string | undefined;
|
|
44173
|
+
schematic_sheet_id?: string | undefined;
|
|
44104
44174
|
schematic_component_id?: string | undefined;
|
|
44105
44175
|
schematic_symbol_id?: string | undefined;
|
|
44106
44176
|
}>, z.ZodObject<{
|
|
44107
44177
|
type: z.ZodLiteral<"schematic_line">;
|
|
44108
44178
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44179
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44109
44180
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44110
44181
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44111
44182
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44129,6 +44200,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44129
44200
|
schematic_line_id: string;
|
|
44130
44201
|
subcircuit_id?: string | undefined;
|
|
44131
44202
|
stroke_width?: number | null | undefined;
|
|
44203
|
+
schematic_sheet_id?: string | undefined;
|
|
44132
44204
|
schematic_component_id?: string | undefined;
|
|
44133
44205
|
schematic_symbol_id?: string | undefined;
|
|
44134
44206
|
dash_length?: number | undefined;
|
|
@@ -44143,6 +44215,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44143
44215
|
stroke_width?: string | number | null | undefined;
|
|
44144
44216
|
color?: string | undefined;
|
|
44145
44217
|
is_dashed?: boolean | undefined;
|
|
44218
|
+
schematic_sheet_id?: string | undefined;
|
|
44146
44219
|
schematic_component_id?: string | undefined;
|
|
44147
44220
|
schematic_symbol_id?: string | undefined;
|
|
44148
44221
|
dash_length?: string | number | undefined;
|
|
@@ -44151,6 +44224,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44151
44224
|
}>, z.ZodObject<{
|
|
44152
44225
|
type: z.ZodLiteral<"schematic_rect">;
|
|
44153
44226
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44227
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44154
44228
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44155
44229
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44156
44230
|
center: z.ZodObject<{
|
|
@@ -44187,6 +44261,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44187
44261
|
schematic_rect_id: string;
|
|
44188
44262
|
subcircuit_id?: string | undefined;
|
|
44189
44263
|
stroke_width?: number | null | undefined;
|
|
44264
|
+
schematic_sheet_id?: string | undefined;
|
|
44190
44265
|
schematic_component_id?: string | undefined;
|
|
44191
44266
|
schematic_symbol_id?: string | undefined;
|
|
44192
44267
|
fill_color?: string | undefined;
|
|
@@ -44204,6 +44279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44204
44279
|
is_filled?: boolean | undefined;
|
|
44205
44280
|
color?: string | undefined;
|
|
44206
44281
|
is_dashed?: boolean | undefined;
|
|
44282
|
+
schematic_sheet_id?: string | undefined;
|
|
44207
44283
|
schematic_component_id?: string | undefined;
|
|
44208
44284
|
schematic_symbol_id?: string | undefined;
|
|
44209
44285
|
fill_color?: string | undefined;
|
|
@@ -44211,6 +44287,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44211
44287
|
}>, z.ZodObject<{
|
|
44212
44288
|
type: z.ZodLiteral<"schematic_circle">;
|
|
44213
44289
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44290
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44214
44291
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44215
44292
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44216
44293
|
center: z.ZodObject<{
|
|
@@ -44243,6 +44320,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44243
44320
|
schematic_circle_id: string;
|
|
44244
44321
|
subcircuit_id?: string | undefined;
|
|
44245
44322
|
stroke_width?: number | null | undefined;
|
|
44323
|
+
schematic_sheet_id?: string | undefined;
|
|
44246
44324
|
schematic_component_id?: string | undefined;
|
|
44247
44325
|
schematic_symbol_id?: string | undefined;
|
|
44248
44326
|
fill_color?: string | undefined;
|
|
@@ -44258,6 +44336,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44258
44336
|
is_filled?: boolean | undefined;
|
|
44259
44337
|
color?: string | undefined;
|
|
44260
44338
|
is_dashed?: boolean | undefined;
|
|
44339
|
+
schematic_sheet_id?: string | undefined;
|
|
44261
44340
|
schematic_component_id?: string | undefined;
|
|
44262
44341
|
schematic_symbol_id?: string | undefined;
|
|
44263
44342
|
fill_color?: string | undefined;
|
|
@@ -44265,6 +44344,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44265
44344
|
}>, z.ZodObject<{
|
|
44266
44345
|
type: z.ZodLiteral<"schematic_arc">;
|
|
44267
44346
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44347
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44268
44348
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
44269
44349
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44270
44350
|
center: z.ZodObject<{
|
|
@@ -44300,6 +44380,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44300
44380
|
end_angle_degrees: number;
|
|
44301
44381
|
subcircuit_id?: string | undefined;
|
|
44302
44382
|
stroke_width?: number | null | undefined;
|
|
44383
|
+
schematic_sheet_id?: string | undefined;
|
|
44303
44384
|
schematic_component_id?: string | undefined;
|
|
44304
44385
|
schematic_symbol_id?: string | undefined;
|
|
44305
44386
|
}, {
|
|
@@ -44315,6 +44396,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44315
44396
|
stroke_width?: string | number | null | undefined;
|
|
44316
44397
|
color?: string | undefined;
|
|
44317
44398
|
is_dashed?: boolean | undefined;
|
|
44399
|
+
schematic_sheet_id?: string | undefined;
|
|
44318
44400
|
schematic_component_id?: string | undefined;
|
|
44319
44401
|
schematic_symbol_id?: string | undefined;
|
|
44320
44402
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -44343,6 +44425,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44343
44425
|
}>;
|
|
44344
44426
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
44345
44427
|
schematic_component_id: z.ZodString;
|
|
44428
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
44346
44429
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
44347
44430
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
44348
44431
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -44476,6 +44559,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44476
44559
|
source_component_id?: string | undefined;
|
|
44477
44560
|
subcircuit_id?: string | undefined;
|
|
44478
44561
|
source_group_id?: string | undefined;
|
|
44562
|
+
schematic_sheet_id?: string | undefined;
|
|
44479
44563
|
schematic_symbol_id?: string | undefined;
|
|
44480
44564
|
pin_spacing?: number | undefined;
|
|
44481
44565
|
pin_styles?: Record<string, {
|
|
@@ -44527,6 +44611,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
44527
44611
|
source_component_id?: string | undefined;
|
|
44528
44612
|
subcircuit_id?: string | undefined;
|
|
44529
44613
|
source_group_id?: string | undefined;
|
|
44614
|
+
schematic_sheet_id?: string | undefined;
|
|
44530
44615
|
schematic_symbol_id?: string | undefined;
|
|
44531
44616
|
pin_spacing?: string | number | undefined;
|
|
44532
44617
|
pin_styles?: Record<string, {
|
|
@@ -51369,6 +51454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51369
51454
|
type: z.ZodLiteral<"schematic_port">;
|
|
51370
51455
|
schematic_port_id: z.ZodString;
|
|
51371
51456
|
source_port_id: z.ZodString;
|
|
51457
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51372
51458
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51373
51459
|
center: z.ZodObject<{
|
|
51374
51460
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -51401,6 +51487,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51401
51487
|
schematic_port_id: string;
|
|
51402
51488
|
subcircuit_id?: string | undefined;
|
|
51403
51489
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51490
|
+
schematic_sheet_id?: string | undefined;
|
|
51404
51491
|
schematic_component_id?: string | undefined;
|
|
51405
51492
|
distance_from_component_edge?: number | undefined;
|
|
51406
51493
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51421,6 +51508,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51421
51508
|
schematic_port_id: string;
|
|
51422
51509
|
subcircuit_id?: string | undefined;
|
|
51423
51510
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
51511
|
+
schematic_sheet_id?: string | undefined;
|
|
51424
51512
|
schematic_component_id?: string | undefined;
|
|
51425
51513
|
distance_from_component_edge?: number | undefined;
|
|
51426
51514
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -51434,6 +51522,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51434
51522
|
}>, z.ZodObject<{
|
|
51435
51523
|
type: z.ZodLiteral<"schematic_trace">;
|
|
51436
51524
|
schematic_trace_id: z.ZodString;
|
|
51525
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51437
51526
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51438
51527
|
junctions: z.ZodArray<z.ZodObject<{
|
|
51439
51528
|
x: z.ZodNumber;
|
|
@@ -51519,6 +51608,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51519
51608
|
subcircuit_id?: string | undefined;
|
|
51520
51609
|
source_trace_id?: string | undefined;
|
|
51521
51610
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51611
|
+
schematic_sheet_id?: string | undefined;
|
|
51522
51612
|
}, {
|
|
51523
51613
|
type: "schematic_trace";
|
|
51524
51614
|
schematic_trace_id: string;
|
|
@@ -51542,9 +51632,11 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51542
51632
|
subcircuit_id?: string | undefined;
|
|
51543
51633
|
source_trace_id?: string | undefined;
|
|
51544
51634
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
51635
|
+
schematic_sheet_id?: string | undefined;
|
|
51545
51636
|
}>, z.ZodObject<{
|
|
51546
51637
|
type: z.ZodLiteral<"schematic_path">;
|
|
51547
51638
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51639
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51548
51640
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
51549
51641
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
51550
51642
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -51576,6 +51668,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51576
51668
|
subcircuit_id?: string | undefined;
|
|
51577
51669
|
stroke_width?: number | null | undefined;
|
|
51578
51670
|
is_filled?: boolean | undefined;
|
|
51671
|
+
schematic_sheet_id?: string | undefined;
|
|
51579
51672
|
schematic_component_id?: string | undefined;
|
|
51580
51673
|
schematic_symbol_id?: string | undefined;
|
|
51581
51674
|
fill_color?: string | undefined;
|
|
@@ -51592,6 +51685,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51592
51685
|
stroke_width?: string | number | null | undefined;
|
|
51593
51686
|
is_filled?: boolean | undefined;
|
|
51594
51687
|
is_dashed?: boolean | undefined;
|
|
51688
|
+
schematic_sheet_id?: string | undefined;
|
|
51595
51689
|
schematic_component_id?: string | undefined;
|
|
51596
51690
|
schematic_symbol_id?: string | undefined;
|
|
51597
51691
|
schematic_path_id?: string | undefined;
|
|
@@ -51652,6 +51746,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51652
51746
|
}>, z.ZodObject<{
|
|
51653
51747
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
51654
51748
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51749
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51655
51750
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
51656
51751
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
51657
51752
|
source_net_id: z.ZodString;
|
|
@@ -51696,6 +51791,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51696
51791
|
y: number;
|
|
51697
51792
|
} | undefined;
|
|
51698
51793
|
source_trace_id?: string | undefined;
|
|
51794
|
+
schematic_sheet_id?: string | undefined;
|
|
51699
51795
|
symbol_name?: string | undefined;
|
|
51700
51796
|
schematic_trace_id?: string | undefined;
|
|
51701
51797
|
is_movable?: boolean | undefined;
|
|
@@ -51714,6 +51810,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51714
51810
|
y: string | number;
|
|
51715
51811
|
} | undefined;
|
|
51716
51812
|
source_trace_id?: string | undefined;
|
|
51813
|
+
schematic_sheet_id?: string | undefined;
|
|
51717
51814
|
symbol_name?: string | undefined;
|
|
51718
51815
|
schematic_trace_id?: string | undefined;
|
|
51719
51816
|
schematic_net_label_id?: string | undefined;
|
|
@@ -51859,6 +51956,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51859
51956
|
}>]>, z.ZodObject<{
|
|
51860
51957
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
51861
51958
|
schematic_voltage_probe_id: z.ZodString;
|
|
51959
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51862
51960
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
51863
51961
|
name: z.ZodOptional<z.ZodString>;
|
|
51864
51962
|
position: z.ZodObject<{
|
|
@@ -51888,6 +51986,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51888
51986
|
source_component_id?: string | undefined;
|
|
51889
51987
|
subcircuit_id?: string | undefined;
|
|
51890
51988
|
color?: string | undefined;
|
|
51989
|
+
schematic_sheet_id?: string | undefined;
|
|
51891
51990
|
voltage?: number | undefined;
|
|
51892
51991
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51893
51992
|
}, {
|
|
@@ -51902,6 +52001,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51902
52001
|
source_component_id?: string | undefined;
|
|
51903
52002
|
subcircuit_id?: string | undefined;
|
|
51904
52003
|
color?: string | undefined;
|
|
52004
|
+
schematic_sheet_id?: string | undefined;
|
|
51905
52005
|
voltage?: string | number | undefined;
|
|
51906
52006
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
51907
52007
|
}>, z.ZodObject<{
|
|
@@ -51934,6 +52034,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51934
52034
|
}>, z.ZodObject<{
|
|
51935
52035
|
type: z.ZodLiteral<"schematic_group">;
|
|
51936
52036
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52037
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
51937
52038
|
source_group_id: z.ZodString;
|
|
51938
52039
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
51939
52040
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -51968,6 +52069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51968
52069
|
name?: string | undefined;
|
|
51969
52070
|
subcircuit_id?: string | undefined;
|
|
51970
52071
|
is_subcircuit?: boolean | undefined;
|
|
52072
|
+
schematic_sheet_id?: string | undefined;
|
|
51971
52073
|
show_as_schematic_box?: boolean | undefined;
|
|
51972
52074
|
}, {
|
|
51973
52075
|
type: "schematic_group";
|
|
@@ -51983,6 +52085,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51983
52085
|
name?: string | undefined;
|
|
51984
52086
|
subcircuit_id?: string | undefined;
|
|
51985
52087
|
is_subcircuit?: boolean | undefined;
|
|
52088
|
+
schematic_sheet_id?: string | undefined;
|
|
51986
52089
|
schematic_group_id?: string | undefined;
|
|
51987
52090
|
show_as_schematic_box?: boolean | undefined;
|
|
51988
52091
|
}>, z.ZodObject<{
|
|
@@ -51990,19 +52093,23 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51990
52093
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51991
52094
|
name: z.ZodOptional<z.ZodString>;
|
|
51992
52095
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
52096
|
+
outline_color: z.ZodOptional<z.ZodString>;
|
|
51993
52097
|
}, "strip", z.ZodTypeAny, {
|
|
51994
52098
|
type: "schematic_sheet";
|
|
51995
52099
|
schematic_sheet_id: string;
|
|
51996
52100
|
name?: string | undefined;
|
|
51997
52101
|
subcircuit_id?: string | undefined;
|
|
52102
|
+
outline_color?: string | undefined;
|
|
51998
52103
|
}, {
|
|
51999
52104
|
type: "schematic_sheet";
|
|
52000
52105
|
name?: string | undefined;
|
|
52001
52106
|
subcircuit_id?: string | undefined;
|
|
52002
52107
|
schematic_sheet_id?: string | undefined;
|
|
52108
|
+
outline_color?: string | undefined;
|
|
52003
52109
|
}>, z.ZodObject<{
|
|
52004
52110
|
type: z.ZodLiteral<"schematic_table">;
|
|
52005
52111
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52112
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52006
52113
|
anchor_position: z.ZodObject<{
|
|
52007
52114
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
52008
52115
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -52031,6 +52138,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52031
52138
|
row_heights: number[];
|
|
52032
52139
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52033
52140
|
subcircuit_id?: string | undefined;
|
|
52141
|
+
schematic_sheet_id?: string | undefined;
|
|
52034
52142
|
schematic_component_id?: string | undefined;
|
|
52035
52143
|
cell_padding?: number | undefined;
|
|
52036
52144
|
border_width?: number | undefined;
|
|
@@ -52044,6 +52152,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52044
52152
|
row_heights: (string | number)[];
|
|
52045
52153
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52046
52154
|
subcircuit_id?: string | undefined;
|
|
52155
|
+
schematic_sheet_id?: string | undefined;
|
|
52047
52156
|
schematic_component_id?: string | undefined;
|
|
52048
52157
|
schematic_table_id?: string | undefined;
|
|
52049
52158
|
cell_padding?: string | number | undefined;
|
|
@@ -52051,6 +52160,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52051
52160
|
}>, z.ZodObject<{
|
|
52052
52161
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
52053
52162
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
52163
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
52054
52164
|
schematic_table_id: z.ZodString;
|
|
52055
52165
|
start_row_index: z.ZodNumber;
|
|
52056
52166
|
end_row_index: z.ZodNumber;
|
|
@@ -52090,6 +52200,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52090
52200
|
subcircuit_id?: string | undefined;
|
|
52091
52201
|
text?: string | undefined;
|
|
52092
52202
|
font_size?: number | undefined;
|
|
52203
|
+
schematic_sheet_id?: string | undefined;
|
|
52093
52204
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52094
52205
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
52095
52206
|
}, {
|
|
@@ -52108,6 +52219,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52108
52219
|
subcircuit_id?: string | undefined;
|
|
52109
52220
|
text?: string | undefined;
|
|
52110
52221
|
font_size?: string | number | undefined;
|
|
52222
|
+
schematic_sheet_id?: string | undefined;
|
|
52111
52223
|
schematic_table_cell_id?: string | undefined;
|
|
52112
52224
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
52113
52225
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
@@ -62839,6 +62951,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62839
62951
|
pcb_courtyard_pill_id?: string | undefined;
|
|
62840
62952
|
}>, z.ZodObject<{
|
|
62841
62953
|
type: z.ZodLiteral<"schematic_box">;
|
|
62954
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62842
62955
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62843
62956
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62844
62957
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62855,6 +62968,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62855
62968
|
height: number;
|
|
62856
62969
|
is_dashed: boolean;
|
|
62857
62970
|
subcircuit_id?: string | undefined;
|
|
62971
|
+
schematic_sheet_id?: string | undefined;
|
|
62858
62972
|
schematic_component_id?: string | undefined;
|
|
62859
62973
|
schematic_symbol_id?: string | undefined;
|
|
62860
62974
|
}, {
|
|
@@ -62865,10 +62979,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62865
62979
|
height: string | number;
|
|
62866
62980
|
subcircuit_id?: string | undefined;
|
|
62867
62981
|
is_dashed?: boolean | undefined;
|
|
62982
|
+
schematic_sheet_id?: string | undefined;
|
|
62868
62983
|
schematic_component_id?: string | undefined;
|
|
62869
62984
|
schematic_symbol_id?: string | undefined;
|
|
62870
62985
|
}>, z.ZodObject<{
|
|
62871
62986
|
type: z.ZodLiteral<"schematic_text">;
|
|
62987
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62872
62988
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62873
62989
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62874
62990
|
schematic_text_id: z.ZodString;
|
|
@@ -62901,6 +63017,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62901
63017
|
y: number;
|
|
62902
63018
|
};
|
|
62903
63019
|
subcircuit_id?: string | undefined;
|
|
63020
|
+
schematic_sheet_id?: string | undefined;
|
|
62904
63021
|
schematic_component_id?: string | undefined;
|
|
62905
63022
|
schematic_symbol_id?: string | undefined;
|
|
62906
63023
|
}, {
|
|
@@ -62916,11 +63033,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62916
63033
|
subcircuit_id?: string | undefined;
|
|
62917
63034
|
font_size?: number | undefined;
|
|
62918
63035
|
color?: string | undefined;
|
|
63036
|
+
schematic_sheet_id?: string | undefined;
|
|
62919
63037
|
schematic_component_id?: string | undefined;
|
|
62920
63038
|
schematic_symbol_id?: string | undefined;
|
|
62921
63039
|
}>, z.ZodObject<{
|
|
62922
63040
|
type: z.ZodLiteral<"schematic_line">;
|
|
62923
63041
|
schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63042
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62924
63043
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62925
63044
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62926
63045
|
x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -62944,6 +63063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62944
63063
|
schematic_line_id: string;
|
|
62945
63064
|
subcircuit_id?: string | undefined;
|
|
62946
63065
|
stroke_width?: number | null | undefined;
|
|
63066
|
+
schematic_sheet_id?: string | undefined;
|
|
62947
63067
|
schematic_component_id?: string | undefined;
|
|
62948
63068
|
schematic_symbol_id?: string | undefined;
|
|
62949
63069
|
dash_length?: number | undefined;
|
|
@@ -62958,6 +63078,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62958
63078
|
stroke_width?: string | number | null | undefined;
|
|
62959
63079
|
color?: string | undefined;
|
|
62960
63080
|
is_dashed?: boolean | undefined;
|
|
63081
|
+
schematic_sheet_id?: string | undefined;
|
|
62961
63082
|
schematic_component_id?: string | undefined;
|
|
62962
63083
|
schematic_symbol_id?: string | undefined;
|
|
62963
63084
|
dash_length?: string | number | undefined;
|
|
@@ -62966,6 +63087,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
62966
63087
|
}>, z.ZodObject<{
|
|
62967
63088
|
type: z.ZodLiteral<"schematic_rect">;
|
|
62968
63089
|
schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63090
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
62969
63091
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
62970
63092
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
62971
63093
|
center: z.ZodObject<{
|
|
@@ -63002,6 +63124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63002
63124
|
schematic_rect_id: string;
|
|
63003
63125
|
subcircuit_id?: string | undefined;
|
|
63004
63126
|
stroke_width?: number | null | undefined;
|
|
63127
|
+
schematic_sheet_id?: string | undefined;
|
|
63005
63128
|
schematic_component_id?: string | undefined;
|
|
63006
63129
|
schematic_symbol_id?: string | undefined;
|
|
63007
63130
|
fill_color?: string | undefined;
|
|
@@ -63019,6 +63142,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63019
63142
|
is_filled?: boolean | undefined;
|
|
63020
63143
|
color?: string | undefined;
|
|
63021
63144
|
is_dashed?: boolean | undefined;
|
|
63145
|
+
schematic_sheet_id?: string | undefined;
|
|
63022
63146
|
schematic_component_id?: string | undefined;
|
|
63023
63147
|
schematic_symbol_id?: string | undefined;
|
|
63024
63148
|
fill_color?: string | undefined;
|
|
@@ -63026,6 +63150,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63026
63150
|
}>, z.ZodObject<{
|
|
63027
63151
|
type: z.ZodLiteral<"schematic_circle">;
|
|
63028
63152
|
schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63153
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63029
63154
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63030
63155
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63031
63156
|
center: z.ZodObject<{
|
|
@@ -63058,6 +63183,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63058
63183
|
schematic_circle_id: string;
|
|
63059
63184
|
subcircuit_id?: string | undefined;
|
|
63060
63185
|
stroke_width?: number | null | undefined;
|
|
63186
|
+
schematic_sheet_id?: string | undefined;
|
|
63061
63187
|
schematic_component_id?: string | undefined;
|
|
63062
63188
|
schematic_symbol_id?: string | undefined;
|
|
63063
63189
|
fill_color?: string | undefined;
|
|
@@ -63073,6 +63199,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63073
63199
|
is_filled?: boolean | undefined;
|
|
63074
63200
|
color?: string | undefined;
|
|
63075
63201
|
is_dashed?: boolean | undefined;
|
|
63202
|
+
schematic_sheet_id?: string | undefined;
|
|
63076
63203
|
schematic_component_id?: string | undefined;
|
|
63077
63204
|
schematic_symbol_id?: string | undefined;
|
|
63078
63205
|
fill_color?: string | undefined;
|
|
@@ -63080,6 +63207,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63080
63207
|
}>, z.ZodObject<{
|
|
63081
63208
|
type: z.ZodLiteral<"schematic_arc">;
|
|
63082
63209
|
schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
63210
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63083
63211
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
63084
63212
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63085
63213
|
center: z.ZodObject<{
|
|
@@ -63115,6 +63243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63115
63243
|
end_angle_degrees: number;
|
|
63116
63244
|
subcircuit_id?: string | undefined;
|
|
63117
63245
|
stroke_width?: number | null | undefined;
|
|
63246
|
+
schematic_sheet_id?: string | undefined;
|
|
63118
63247
|
schematic_component_id?: string | undefined;
|
|
63119
63248
|
schematic_symbol_id?: string | undefined;
|
|
63120
63249
|
}, {
|
|
@@ -63130,6 +63259,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63130
63259
|
stroke_width?: string | number | null | undefined;
|
|
63131
63260
|
color?: string | undefined;
|
|
63132
63261
|
is_dashed?: boolean | undefined;
|
|
63262
|
+
schematic_sheet_id?: string | undefined;
|
|
63133
63263
|
schematic_component_id?: string | undefined;
|
|
63134
63264
|
schematic_symbol_id?: string | undefined;
|
|
63135
63265
|
direction?: "clockwise" | "counterclockwise" | undefined;
|
|
@@ -63158,6 +63288,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63158
63288
|
}>;
|
|
63159
63289
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
63160
63290
|
schematic_component_id: z.ZodString;
|
|
63291
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
63161
63292
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
63162
63293
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
63163
63294
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -63291,6 +63422,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63291
63422
|
source_component_id?: string | undefined;
|
|
63292
63423
|
subcircuit_id?: string | undefined;
|
|
63293
63424
|
source_group_id?: string | undefined;
|
|
63425
|
+
schematic_sheet_id?: string | undefined;
|
|
63294
63426
|
schematic_symbol_id?: string | undefined;
|
|
63295
63427
|
pin_spacing?: number | undefined;
|
|
63296
63428
|
pin_styles?: Record<string, {
|
|
@@ -63342,6 +63474,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
63342
63474
|
source_component_id?: string | undefined;
|
|
63343
63475
|
subcircuit_id?: string | undefined;
|
|
63344
63476
|
source_group_id?: string | undefined;
|
|
63477
|
+
schematic_sheet_id?: string | undefined;
|
|
63345
63478
|
schematic_symbol_id?: string | undefined;
|
|
63346
63479
|
pin_spacing?: string | number | undefined;
|
|
63347
63480
|
pin_styles?: Record<string, {
|
|
@@ -70184,6 +70317,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70184
70317
|
type: z.ZodLiteral<"schematic_port">;
|
|
70185
70318
|
schematic_port_id: z.ZodString;
|
|
70186
70319
|
source_port_id: z.ZodString;
|
|
70320
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70187
70321
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70188
70322
|
center: z.ZodObject<{
|
|
70189
70323
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70216,6 +70350,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70216
70350
|
schematic_port_id: string;
|
|
70217
70351
|
subcircuit_id?: string | undefined;
|
|
70218
70352
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70353
|
+
schematic_sheet_id?: string | undefined;
|
|
70219
70354
|
schematic_component_id?: string | undefined;
|
|
70220
70355
|
distance_from_component_edge?: number | undefined;
|
|
70221
70356
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70236,6 +70371,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70236
70371
|
schematic_port_id: string;
|
|
70237
70372
|
subcircuit_id?: string | undefined;
|
|
70238
70373
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
70374
|
+
schematic_sheet_id?: string | undefined;
|
|
70239
70375
|
schematic_component_id?: string | undefined;
|
|
70240
70376
|
distance_from_component_edge?: number | undefined;
|
|
70241
70377
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
@@ -70249,6 +70385,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70249
70385
|
}>, z.ZodObject<{
|
|
70250
70386
|
type: z.ZodLiteral<"schematic_trace">;
|
|
70251
70387
|
schematic_trace_id: z.ZodString;
|
|
70388
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70252
70389
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70253
70390
|
junctions: z.ZodArray<z.ZodObject<{
|
|
70254
70391
|
x: z.ZodNumber;
|
|
@@ -70334,6 +70471,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70334
70471
|
subcircuit_id?: string | undefined;
|
|
70335
70472
|
source_trace_id?: string | undefined;
|
|
70336
70473
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70474
|
+
schematic_sheet_id?: string | undefined;
|
|
70337
70475
|
}, {
|
|
70338
70476
|
type: "schematic_trace";
|
|
70339
70477
|
schematic_trace_id: string;
|
|
@@ -70357,9 +70495,11 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70357
70495
|
subcircuit_id?: string | undefined;
|
|
70358
70496
|
source_trace_id?: string | undefined;
|
|
70359
70497
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
70498
|
+
schematic_sheet_id?: string | undefined;
|
|
70360
70499
|
}>, z.ZodObject<{
|
|
70361
70500
|
type: z.ZodLiteral<"schematic_path">;
|
|
70362
70501
|
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70502
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70363
70503
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
70364
70504
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
70365
70505
|
fill_color: z.ZodOptional<z.ZodString>;
|
|
@@ -70391,6 +70531,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70391
70531
|
subcircuit_id?: string | undefined;
|
|
70392
70532
|
stroke_width?: number | null | undefined;
|
|
70393
70533
|
is_filled?: boolean | undefined;
|
|
70534
|
+
schematic_sheet_id?: string | undefined;
|
|
70394
70535
|
schematic_component_id?: string | undefined;
|
|
70395
70536
|
schematic_symbol_id?: string | undefined;
|
|
70396
70537
|
fill_color?: string | undefined;
|
|
@@ -70407,6 +70548,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70407
70548
|
stroke_width?: string | number | null | undefined;
|
|
70408
70549
|
is_filled?: boolean | undefined;
|
|
70409
70550
|
is_dashed?: boolean | undefined;
|
|
70551
|
+
schematic_sheet_id?: string | undefined;
|
|
70410
70552
|
schematic_component_id?: string | undefined;
|
|
70411
70553
|
schematic_symbol_id?: string | undefined;
|
|
70412
70554
|
schematic_path_id?: string | undefined;
|
|
@@ -70467,6 +70609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70467
70609
|
}>, z.ZodObject<{
|
|
70468
70610
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
70469
70611
|
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70612
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70470
70613
|
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
70471
70614
|
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
70472
70615
|
source_net_id: z.ZodString;
|
|
@@ -70511,6 +70654,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70511
70654
|
y: number;
|
|
70512
70655
|
} | undefined;
|
|
70513
70656
|
source_trace_id?: string | undefined;
|
|
70657
|
+
schematic_sheet_id?: string | undefined;
|
|
70514
70658
|
symbol_name?: string | undefined;
|
|
70515
70659
|
schematic_trace_id?: string | undefined;
|
|
70516
70660
|
is_movable?: boolean | undefined;
|
|
@@ -70529,6 +70673,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70529
70673
|
y: string | number;
|
|
70530
70674
|
} | undefined;
|
|
70531
70675
|
source_trace_id?: string | undefined;
|
|
70676
|
+
schematic_sheet_id?: string | undefined;
|
|
70532
70677
|
symbol_name?: string | undefined;
|
|
70533
70678
|
schematic_trace_id?: string | undefined;
|
|
70534
70679
|
schematic_net_label_id?: string | undefined;
|
|
@@ -70674,6 +70819,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70674
70819
|
}>]>, z.ZodObject<{
|
|
70675
70820
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
70676
70821
|
schematic_voltage_probe_id: z.ZodString;
|
|
70822
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70677
70823
|
source_component_id: z.ZodOptional<z.ZodString>;
|
|
70678
70824
|
name: z.ZodOptional<z.ZodString>;
|
|
70679
70825
|
position: z.ZodObject<{
|
|
@@ -70703,6 +70849,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70703
70849
|
source_component_id?: string | undefined;
|
|
70704
70850
|
subcircuit_id?: string | undefined;
|
|
70705
70851
|
color?: string | undefined;
|
|
70852
|
+
schematic_sheet_id?: string | undefined;
|
|
70706
70853
|
voltage?: number | undefined;
|
|
70707
70854
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70708
70855
|
}, {
|
|
@@ -70717,6 +70864,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70717
70864
|
source_component_id?: string | undefined;
|
|
70718
70865
|
subcircuit_id?: string | undefined;
|
|
70719
70866
|
color?: string | undefined;
|
|
70867
|
+
schematic_sheet_id?: string | undefined;
|
|
70720
70868
|
voltage?: string | number | undefined;
|
|
70721
70869
|
label_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70722
70870
|
}>, z.ZodObject<{
|
|
@@ -70749,6 +70897,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70749
70897
|
}>, z.ZodObject<{
|
|
70750
70898
|
type: z.ZodLiteral<"schematic_group">;
|
|
70751
70899
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70900
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70752
70901
|
source_group_id: z.ZodString;
|
|
70753
70902
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
70754
70903
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
@@ -70783,6 +70932,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70783
70932
|
name?: string | undefined;
|
|
70784
70933
|
subcircuit_id?: string | undefined;
|
|
70785
70934
|
is_subcircuit?: boolean | undefined;
|
|
70935
|
+
schematic_sheet_id?: string | undefined;
|
|
70786
70936
|
show_as_schematic_box?: boolean | undefined;
|
|
70787
70937
|
}, {
|
|
70788
70938
|
type: "schematic_group";
|
|
@@ -70798,6 +70948,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70798
70948
|
name?: string | undefined;
|
|
70799
70949
|
subcircuit_id?: string | undefined;
|
|
70800
70950
|
is_subcircuit?: boolean | undefined;
|
|
70951
|
+
schematic_sheet_id?: string | undefined;
|
|
70801
70952
|
schematic_group_id?: string | undefined;
|
|
70802
70953
|
show_as_schematic_box?: boolean | undefined;
|
|
70803
70954
|
}>, z.ZodObject<{
|
|
@@ -70805,19 +70956,23 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70805
70956
|
schematic_sheet_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70806
70957
|
name: z.ZodOptional<z.ZodString>;
|
|
70807
70958
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
70959
|
+
outline_color: z.ZodOptional<z.ZodString>;
|
|
70808
70960
|
}, "strip", z.ZodTypeAny, {
|
|
70809
70961
|
type: "schematic_sheet";
|
|
70810
70962
|
schematic_sheet_id: string;
|
|
70811
70963
|
name?: string | undefined;
|
|
70812
70964
|
subcircuit_id?: string | undefined;
|
|
70965
|
+
outline_color?: string | undefined;
|
|
70813
70966
|
}, {
|
|
70814
70967
|
type: "schematic_sheet";
|
|
70815
70968
|
name?: string | undefined;
|
|
70816
70969
|
subcircuit_id?: string | undefined;
|
|
70817
70970
|
schematic_sheet_id?: string | undefined;
|
|
70971
|
+
outline_color?: string | undefined;
|
|
70818
70972
|
}>, z.ZodObject<{
|
|
70819
70973
|
type: z.ZodLiteral<"schematic_table">;
|
|
70820
70974
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
70975
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70821
70976
|
anchor_position: z.ZodObject<{
|
|
70822
70977
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
70823
70978
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -70846,6 +71001,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70846
71001
|
row_heights: number[];
|
|
70847
71002
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70848
71003
|
subcircuit_id?: string | undefined;
|
|
71004
|
+
schematic_sheet_id?: string | undefined;
|
|
70849
71005
|
schematic_component_id?: string | undefined;
|
|
70850
71006
|
cell_padding?: number | undefined;
|
|
70851
71007
|
border_width?: number | undefined;
|
|
@@ -70859,6 +71015,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70859
71015
|
row_heights: (string | number)[];
|
|
70860
71016
|
anchor?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
70861
71017
|
subcircuit_id?: string | undefined;
|
|
71018
|
+
schematic_sheet_id?: string | undefined;
|
|
70862
71019
|
schematic_component_id?: string | undefined;
|
|
70863
71020
|
schematic_table_id?: string | undefined;
|
|
70864
71021
|
cell_padding?: string | number | undefined;
|
|
@@ -70866,6 +71023,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70866
71023
|
}>, z.ZodObject<{
|
|
70867
71024
|
type: z.ZodLiteral<"schematic_table_cell">;
|
|
70868
71025
|
schematic_table_cell_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
71026
|
+
schematic_sheet_id: z.ZodOptional<z.ZodString>;
|
|
70869
71027
|
schematic_table_id: z.ZodString;
|
|
70870
71028
|
start_row_index: z.ZodNumber;
|
|
70871
71029
|
end_row_index: z.ZodNumber;
|
|
@@ -70905,6 +71063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70905
71063
|
subcircuit_id?: string | undefined;
|
|
70906
71064
|
text?: string | undefined;
|
|
70907
71065
|
font_size?: number | undefined;
|
|
71066
|
+
schematic_sheet_id?: string | undefined;
|
|
70908
71067
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70909
71068
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|
|
70910
71069
|
}, {
|
|
@@ -70923,6 +71082,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
70923
71082
|
subcircuit_id?: string | undefined;
|
|
70924
71083
|
text?: string | undefined;
|
|
70925
71084
|
font_size?: string | number | undefined;
|
|
71085
|
+
schematic_sheet_id?: string | undefined;
|
|
70926
71086
|
schematic_table_cell_id?: string | undefined;
|
|
70927
71087
|
horizontal_align?: "center" | "left" | "right" | undefined;
|
|
70928
71088
|
vertical_align?: "top" | "bottom" | "middle" | undefined;
|