circuit-json 0.0.274 → 0.0.275
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 +78 -0
- package/dist/index.d.mts +590 -2
- package/dist/index.mjs +290 -223
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3628,6 +3628,92 @@ interface PcbFabricationNotePath {
|
|
|
3628
3628
|
*/
|
|
3629
3629
|
type PCBFabricationNotePath = PcbFabricationNotePath;
|
|
3630
3630
|
|
|
3631
|
+
declare const pcb_fabrication_note_rect: z.ZodObject<{
|
|
3632
|
+
type: z.ZodLiteral<"pcb_fabrication_note_rect">;
|
|
3633
|
+
pcb_fabrication_note_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3634
|
+
pcb_component_id: z.ZodString;
|
|
3635
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
3636
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3637
|
+
center: z.ZodObject<{
|
|
3638
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3639
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3640
|
+
}, "strip", z.ZodTypeAny, {
|
|
3641
|
+
x: number;
|
|
3642
|
+
y: number;
|
|
3643
|
+
}, {
|
|
3644
|
+
x: string | number;
|
|
3645
|
+
y: string | number;
|
|
3646
|
+
}>;
|
|
3647
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3648
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3649
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
3650
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3651
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
3652
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
3653
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
3654
|
+
color: z.ZodOptional<z.ZodString>;
|
|
3655
|
+
}, "strip", z.ZodTypeAny, {
|
|
3656
|
+
type: "pcb_fabrication_note_rect";
|
|
3657
|
+
width: number;
|
|
3658
|
+
height: number;
|
|
3659
|
+
pcb_component_id: string;
|
|
3660
|
+
center: {
|
|
3661
|
+
x: number;
|
|
3662
|
+
y: number;
|
|
3663
|
+
};
|
|
3664
|
+
layer: "top" | "bottom";
|
|
3665
|
+
stroke_width: number;
|
|
3666
|
+
pcb_fabrication_note_rect_id: string;
|
|
3667
|
+
subcircuit_id?: string | undefined;
|
|
3668
|
+
pcb_group_id?: string | undefined;
|
|
3669
|
+
is_filled?: boolean | undefined;
|
|
3670
|
+
has_stroke?: boolean | undefined;
|
|
3671
|
+
is_stroke_dashed?: boolean | undefined;
|
|
3672
|
+
color?: string | undefined;
|
|
3673
|
+
}, {
|
|
3674
|
+
type: "pcb_fabrication_note_rect";
|
|
3675
|
+
width: string | number;
|
|
3676
|
+
height: string | number;
|
|
3677
|
+
pcb_component_id: string;
|
|
3678
|
+
center: {
|
|
3679
|
+
x: string | number;
|
|
3680
|
+
y: string | number;
|
|
3681
|
+
};
|
|
3682
|
+
layer: "top" | "bottom";
|
|
3683
|
+
subcircuit_id?: string | undefined;
|
|
3684
|
+
pcb_group_id?: string | undefined;
|
|
3685
|
+
stroke_width?: string | number | undefined;
|
|
3686
|
+
is_filled?: boolean | undefined;
|
|
3687
|
+
has_stroke?: boolean | undefined;
|
|
3688
|
+
is_stroke_dashed?: boolean | undefined;
|
|
3689
|
+
color?: string | undefined;
|
|
3690
|
+
pcb_fabrication_note_rect_id?: string | undefined;
|
|
3691
|
+
}>;
|
|
3692
|
+
type PcbFabricationNoteRectInput = z.input<typeof pcb_fabrication_note_rect>;
|
|
3693
|
+
/**
|
|
3694
|
+
* Defines a fabrication note rectangle on the PCB
|
|
3695
|
+
*/
|
|
3696
|
+
interface PcbFabricationNoteRect {
|
|
3697
|
+
type: "pcb_fabrication_note_rect";
|
|
3698
|
+
pcb_fabrication_note_rect_id: string;
|
|
3699
|
+
pcb_component_id: string;
|
|
3700
|
+
pcb_group_id?: string;
|
|
3701
|
+
subcircuit_id?: string;
|
|
3702
|
+
center: Point;
|
|
3703
|
+
width: Length;
|
|
3704
|
+
height: Length;
|
|
3705
|
+
layer: VisibleLayer;
|
|
3706
|
+
stroke_width: Length;
|
|
3707
|
+
is_filled?: boolean;
|
|
3708
|
+
has_stroke?: boolean;
|
|
3709
|
+
is_stroke_dashed?: boolean;
|
|
3710
|
+
color?: string;
|
|
3711
|
+
}
|
|
3712
|
+
/**
|
|
3713
|
+
* @deprecated use PcbFabricationNoteRect
|
|
3714
|
+
*/
|
|
3715
|
+
type PCBFabricationNoteRect = PcbFabricationNoteRect;
|
|
3716
|
+
|
|
3631
3717
|
declare const pcb_footprint_overlap_error: z.ZodObject<{
|
|
3632
3718
|
type: z.ZodLiteral<"pcb_footprint_overlap_error">;
|
|
3633
3719
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -5323,7 +5409,167 @@ interface PcbViaClearanceError {
|
|
|
5323
5409
|
subcircuit_id?: string;
|
|
5324
5410
|
}
|
|
5325
5411
|
|
|
5326
|
-
|
|
5412
|
+
declare const pcb_courtyard_rect: z.ZodObject<{
|
|
5413
|
+
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
5414
|
+
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5415
|
+
pcb_component_id: z.ZodString;
|
|
5416
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5417
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5418
|
+
center: z.ZodObject<{
|
|
5419
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5420
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5421
|
+
}, "strip", z.ZodTypeAny, {
|
|
5422
|
+
x: number;
|
|
5423
|
+
y: number;
|
|
5424
|
+
}, {
|
|
5425
|
+
x: string | number;
|
|
5426
|
+
y: string | number;
|
|
5427
|
+
}>;
|
|
5428
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5429
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5430
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
5431
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5432
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
5433
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
5434
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5435
|
+
color: z.ZodOptional<z.ZodString>;
|
|
5436
|
+
}, "strip", z.ZodTypeAny, {
|
|
5437
|
+
type: "pcb_courtyard_rect";
|
|
5438
|
+
width: number;
|
|
5439
|
+
height: number;
|
|
5440
|
+
pcb_component_id: string;
|
|
5441
|
+
center: {
|
|
5442
|
+
x: number;
|
|
5443
|
+
y: number;
|
|
5444
|
+
};
|
|
5445
|
+
layer: "top" | "bottom";
|
|
5446
|
+
stroke_width: number;
|
|
5447
|
+
pcb_courtyard_rect_id: string;
|
|
5448
|
+
subcircuit_id?: string | undefined;
|
|
5449
|
+
pcb_group_id?: string | undefined;
|
|
5450
|
+
is_filled?: boolean | undefined;
|
|
5451
|
+
has_stroke?: boolean | undefined;
|
|
5452
|
+
is_stroke_dashed?: boolean | undefined;
|
|
5453
|
+
color?: string | undefined;
|
|
5454
|
+
}, {
|
|
5455
|
+
type: "pcb_courtyard_rect";
|
|
5456
|
+
width: string | number;
|
|
5457
|
+
height: string | number;
|
|
5458
|
+
pcb_component_id: string;
|
|
5459
|
+
center: {
|
|
5460
|
+
x: string | number;
|
|
5461
|
+
y: string | number;
|
|
5462
|
+
};
|
|
5463
|
+
layer: "top" | "bottom";
|
|
5464
|
+
subcircuit_id?: string | undefined;
|
|
5465
|
+
pcb_group_id?: string | undefined;
|
|
5466
|
+
stroke_width?: string | number | undefined;
|
|
5467
|
+
is_filled?: boolean | undefined;
|
|
5468
|
+
has_stroke?: boolean | undefined;
|
|
5469
|
+
is_stroke_dashed?: boolean | undefined;
|
|
5470
|
+
color?: string | undefined;
|
|
5471
|
+
pcb_courtyard_rect_id?: string | undefined;
|
|
5472
|
+
}>;
|
|
5473
|
+
type PcbCourtyardRectInput = z.input<typeof pcb_courtyard_rect>;
|
|
5474
|
+
/**
|
|
5475
|
+
* Defines a courtyard rectangle on the PCB
|
|
5476
|
+
*/
|
|
5477
|
+
interface PcbCourtyardRect {
|
|
5478
|
+
type: "pcb_courtyard_rect";
|
|
5479
|
+
pcb_courtyard_rect_id: string;
|
|
5480
|
+
pcb_component_id: string;
|
|
5481
|
+
pcb_group_id?: string;
|
|
5482
|
+
subcircuit_id?: string;
|
|
5483
|
+
center: Point;
|
|
5484
|
+
width: Length;
|
|
5485
|
+
height: Length;
|
|
5486
|
+
layer: VisibleLayer;
|
|
5487
|
+
stroke_width: Length;
|
|
5488
|
+
is_filled?: boolean;
|
|
5489
|
+
has_stroke?: boolean;
|
|
5490
|
+
is_stroke_dashed?: boolean;
|
|
5491
|
+
color?: string;
|
|
5492
|
+
}
|
|
5493
|
+
/**
|
|
5494
|
+
* @deprecated use PcbCourtyardRect
|
|
5495
|
+
*/
|
|
5496
|
+
type PCBCourtyardRect = PcbCourtyardRect;
|
|
5497
|
+
|
|
5498
|
+
declare const pcb_courtyard_outline: z.ZodObject<{
|
|
5499
|
+
type: z.ZodLiteral<"pcb_courtyard_outline">;
|
|
5500
|
+
pcb_courtyard_outline_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5501
|
+
pcb_component_id: z.ZodString;
|
|
5502
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
5503
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5504
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
5505
|
+
outline: z.ZodArray<z.ZodObject<{
|
|
5506
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5507
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5508
|
+
}, "strip", z.ZodTypeAny, {
|
|
5509
|
+
x: number;
|
|
5510
|
+
y: number;
|
|
5511
|
+
}, {
|
|
5512
|
+
x: string | number;
|
|
5513
|
+
y: string | number;
|
|
5514
|
+
}>, "many">;
|
|
5515
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5516
|
+
is_closed: z.ZodOptional<z.ZodBoolean>;
|
|
5517
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
5518
|
+
color: z.ZodOptional<z.ZodString>;
|
|
5519
|
+
}, "strip", z.ZodTypeAny, {
|
|
5520
|
+
type: "pcb_courtyard_outline";
|
|
5521
|
+
pcb_component_id: string;
|
|
5522
|
+
layer: "top" | "bottom";
|
|
5523
|
+
outline: {
|
|
5524
|
+
x: number;
|
|
5525
|
+
y: number;
|
|
5526
|
+
}[];
|
|
5527
|
+
stroke_width: number;
|
|
5528
|
+
pcb_courtyard_outline_id: string;
|
|
5529
|
+
subcircuit_id?: string | undefined;
|
|
5530
|
+
pcb_group_id?: string | undefined;
|
|
5531
|
+
is_stroke_dashed?: boolean | undefined;
|
|
5532
|
+
color?: string | undefined;
|
|
5533
|
+
is_closed?: boolean | undefined;
|
|
5534
|
+
}, {
|
|
5535
|
+
type: "pcb_courtyard_outline";
|
|
5536
|
+
pcb_component_id: string;
|
|
5537
|
+
layer: "top" | "bottom";
|
|
5538
|
+
outline: {
|
|
5539
|
+
x: string | number;
|
|
5540
|
+
y: string | number;
|
|
5541
|
+
}[];
|
|
5542
|
+
subcircuit_id?: string | undefined;
|
|
5543
|
+
pcb_group_id?: string | undefined;
|
|
5544
|
+
stroke_width?: string | number | undefined;
|
|
5545
|
+
is_stroke_dashed?: boolean | undefined;
|
|
5546
|
+
color?: string | undefined;
|
|
5547
|
+
pcb_courtyard_outline_id?: string | undefined;
|
|
5548
|
+
is_closed?: boolean | undefined;
|
|
5549
|
+
}>;
|
|
5550
|
+
type PcbCourtyardOutlineInput = z.input<typeof pcb_courtyard_outline>;
|
|
5551
|
+
/**
|
|
5552
|
+
* Defines a courtyard outline on the PCB
|
|
5553
|
+
*/
|
|
5554
|
+
interface PcbCourtyardOutline {
|
|
5555
|
+
type: "pcb_courtyard_outline";
|
|
5556
|
+
pcb_courtyard_outline_id: string;
|
|
5557
|
+
pcb_component_id: string;
|
|
5558
|
+
pcb_group_id?: string;
|
|
5559
|
+
subcircuit_id?: string;
|
|
5560
|
+
layer: VisibleLayer;
|
|
5561
|
+
outline: Point[];
|
|
5562
|
+
stroke_width: Length;
|
|
5563
|
+
is_closed?: boolean;
|
|
5564
|
+
is_stroke_dashed?: boolean;
|
|
5565
|
+
color?: string;
|
|
5566
|
+
}
|
|
5567
|
+
/**
|
|
5568
|
+
* @deprecated use PcbCourtyardOutline
|
|
5569
|
+
*/
|
|
5570
|
+
type PCBCourtyardOutline = PcbCourtyardOutline;
|
|
5571
|
+
|
|
5572
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
|
|
5327
5573
|
|
|
5328
5574
|
interface SchematicBox {
|
|
5329
5575
|
type: "schematic_box";
|
|
@@ -14776,6 +15022,66 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14776
15022
|
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
14777
15023
|
pcb_fabrication_note_text_id?: string | undefined;
|
|
14778
15024
|
color?: string | undefined;
|
|
15025
|
+
}>, z.ZodObject<{
|
|
15026
|
+
type: z.ZodLiteral<"pcb_fabrication_note_rect">;
|
|
15027
|
+
pcb_fabrication_note_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15028
|
+
pcb_component_id: z.ZodString;
|
|
15029
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15030
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15031
|
+
center: z.ZodObject<{
|
|
15032
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15033
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15034
|
+
}, "strip", z.ZodTypeAny, {
|
|
15035
|
+
x: number;
|
|
15036
|
+
y: number;
|
|
15037
|
+
}, {
|
|
15038
|
+
x: string | number;
|
|
15039
|
+
y: string | number;
|
|
15040
|
+
}>;
|
|
15041
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15042
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15043
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
15044
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15045
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
15046
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
15047
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
15048
|
+
color: z.ZodOptional<z.ZodString>;
|
|
15049
|
+
}, "strip", z.ZodTypeAny, {
|
|
15050
|
+
type: "pcb_fabrication_note_rect";
|
|
15051
|
+
width: number;
|
|
15052
|
+
height: number;
|
|
15053
|
+
pcb_component_id: string;
|
|
15054
|
+
center: {
|
|
15055
|
+
x: number;
|
|
15056
|
+
y: number;
|
|
15057
|
+
};
|
|
15058
|
+
layer: "top" | "bottom";
|
|
15059
|
+
stroke_width: number;
|
|
15060
|
+
pcb_fabrication_note_rect_id: string;
|
|
15061
|
+
subcircuit_id?: string | undefined;
|
|
15062
|
+
pcb_group_id?: string | undefined;
|
|
15063
|
+
is_filled?: boolean | undefined;
|
|
15064
|
+
has_stroke?: boolean | undefined;
|
|
15065
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15066
|
+
color?: string | undefined;
|
|
15067
|
+
}, {
|
|
15068
|
+
type: "pcb_fabrication_note_rect";
|
|
15069
|
+
width: string | number;
|
|
15070
|
+
height: string | number;
|
|
15071
|
+
pcb_component_id: string;
|
|
15072
|
+
center: {
|
|
15073
|
+
x: string | number;
|
|
15074
|
+
y: string | number;
|
|
15075
|
+
};
|
|
15076
|
+
layer: "top" | "bottom";
|
|
15077
|
+
subcircuit_id?: string | undefined;
|
|
15078
|
+
pcb_group_id?: string | undefined;
|
|
15079
|
+
stroke_width?: string | number | undefined;
|
|
15080
|
+
is_filled?: boolean | undefined;
|
|
15081
|
+
has_stroke?: boolean | undefined;
|
|
15082
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15083
|
+
color?: string | undefined;
|
|
15084
|
+
pcb_fabrication_note_rect_id?: string | undefined;
|
|
14779
15085
|
}>, z.ZodObject<{
|
|
14780
15086
|
type: z.ZodLiteral<"pcb_autorouting_error">;
|
|
14781
15087
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15418,6 +15724,117 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15418
15724
|
subcircuit_id?: string | undefined;
|
|
15419
15725
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
15420
15726
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
15727
|
+
}>, z.ZodObject<{
|
|
15728
|
+
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
15729
|
+
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15730
|
+
pcb_component_id: z.ZodString;
|
|
15731
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15732
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15733
|
+
center: z.ZodObject<{
|
|
15734
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15735
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15736
|
+
}, "strip", z.ZodTypeAny, {
|
|
15737
|
+
x: number;
|
|
15738
|
+
y: number;
|
|
15739
|
+
}, {
|
|
15740
|
+
x: string | number;
|
|
15741
|
+
y: string | number;
|
|
15742
|
+
}>;
|
|
15743
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15744
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15745
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
15746
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15747
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
15748
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
15749
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
15750
|
+
color: z.ZodOptional<z.ZodString>;
|
|
15751
|
+
}, "strip", z.ZodTypeAny, {
|
|
15752
|
+
type: "pcb_courtyard_rect";
|
|
15753
|
+
width: number;
|
|
15754
|
+
height: number;
|
|
15755
|
+
pcb_component_id: string;
|
|
15756
|
+
center: {
|
|
15757
|
+
x: number;
|
|
15758
|
+
y: number;
|
|
15759
|
+
};
|
|
15760
|
+
layer: "top" | "bottom";
|
|
15761
|
+
stroke_width: number;
|
|
15762
|
+
pcb_courtyard_rect_id: string;
|
|
15763
|
+
subcircuit_id?: string | undefined;
|
|
15764
|
+
pcb_group_id?: string | undefined;
|
|
15765
|
+
is_filled?: boolean | undefined;
|
|
15766
|
+
has_stroke?: boolean | undefined;
|
|
15767
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15768
|
+
color?: string | undefined;
|
|
15769
|
+
}, {
|
|
15770
|
+
type: "pcb_courtyard_rect";
|
|
15771
|
+
width: string | number;
|
|
15772
|
+
height: string | number;
|
|
15773
|
+
pcb_component_id: string;
|
|
15774
|
+
center: {
|
|
15775
|
+
x: string | number;
|
|
15776
|
+
y: string | number;
|
|
15777
|
+
};
|
|
15778
|
+
layer: "top" | "bottom";
|
|
15779
|
+
subcircuit_id?: string | undefined;
|
|
15780
|
+
pcb_group_id?: string | undefined;
|
|
15781
|
+
stroke_width?: string | number | undefined;
|
|
15782
|
+
is_filled?: boolean | undefined;
|
|
15783
|
+
has_stroke?: boolean | undefined;
|
|
15784
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15785
|
+
color?: string | undefined;
|
|
15786
|
+
pcb_courtyard_rect_id?: string | undefined;
|
|
15787
|
+
}>, z.ZodObject<{
|
|
15788
|
+
type: z.ZodLiteral<"pcb_courtyard_outline">;
|
|
15789
|
+
pcb_courtyard_outline_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15790
|
+
pcb_component_id: z.ZodString;
|
|
15791
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
15792
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15793
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
15794
|
+
outline: z.ZodArray<z.ZodObject<{
|
|
15795
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15796
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15797
|
+
}, "strip", z.ZodTypeAny, {
|
|
15798
|
+
x: number;
|
|
15799
|
+
y: number;
|
|
15800
|
+
}, {
|
|
15801
|
+
x: string | number;
|
|
15802
|
+
y: string | number;
|
|
15803
|
+
}>, "many">;
|
|
15804
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15805
|
+
is_closed: z.ZodOptional<z.ZodBoolean>;
|
|
15806
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
15807
|
+
color: z.ZodOptional<z.ZodString>;
|
|
15808
|
+
}, "strip", z.ZodTypeAny, {
|
|
15809
|
+
type: "pcb_courtyard_outline";
|
|
15810
|
+
pcb_component_id: string;
|
|
15811
|
+
layer: "top" | "bottom";
|
|
15812
|
+
outline: {
|
|
15813
|
+
x: number;
|
|
15814
|
+
y: number;
|
|
15815
|
+
}[];
|
|
15816
|
+
stroke_width: number;
|
|
15817
|
+
pcb_courtyard_outline_id: string;
|
|
15818
|
+
subcircuit_id?: string | undefined;
|
|
15819
|
+
pcb_group_id?: string | undefined;
|
|
15820
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15821
|
+
color?: string | undefined;
|
|
15822
|
+
is_closed?: boolean | undefined;
|
|
15823
|
+
}, {
|
|
15824
|
+
type: "pcb_courtyard_outline";
|
|
15825
|
+
pcb_component_id: string;
|
|
15826
|
+
layer: "top" | "bottom";
|
|
15827
|
+
outline: {
|
|
15828
|
+
x: string | number;
|
|
15829
|
+
y: string | number;
|
|
15830
|
+
}[];
|
|
15831
|
+
subcircuit_id?: string | undefined;
|
|
15832
|
+
pcb_group_id?: string | undefined;
|
|
15833
|
+
stroke_width?: string | number | undefined;
|
|
15834
|
+
is_stroke_dashed?: boolean | undefined;
|
|
15835
|
+
color?: string | undefined;
|
|
15836
|
+
pcb_courtyard_outline_id?: string | undefined;
|
|
15837
|
+
is_closed?: boolean | undefined;
|
|
15421
15838
|
}>, z.ZodObject<{
|
|
15422
15839
|
type: z.ZodLiteral<"schematic_box">;
|
|
15423
15840
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
@@ -21332,6 +21749,66 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21332
21749
|
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
21333
21750
|
pcb_fabrication_note_text_id?: string | undefined;
|
|
21334
21751
|
color?: string | undefined;
|
|
21752
|
+
}>, z.ZodObject<{
|
|
21753
|
+
type: z.ZodLiteral<"pcb_fabrication_note_rect">;
|
|
21754
|
+
pcb_fabrication_note_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21755
|
+
pcb_component_id: z.ZodString;
|
|
21756
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
21757
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21758
|
+
center: z.ZodObject<{
|
|
21759
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21760
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21761
|
+
}, "strip", z.ZodTypeAny, {
|
|
21762
|
+
x: number;
|
|
21763
|
+
y: number;
|
|
21764
|
+
}, {
|
|
21765
|
+
x: string | number;
|
|
21766
|
+
y: string | number;
|
|
21767
|
+
}>;
|
|
21768
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21769
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21770
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
21771
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21772
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
21773
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
21774
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
21775
|
+
color: z.ZodOptional<z.ZodString>;
|
|
21776
|
+
}, "strip", z.ZodTypeAny, {
|
|
21777
|
+
type: "pcb_fabrication_note_rect";
|
|
21778
|
+
width: number;
|
|
21779
|
+
height: number;
|
|
21780
|
+
pcb_component_id: string;
|
|
21781
|
+
center: {
|
|
21782
|
+
x: number;
|
|
21783
|
+
y: number;
|
|
21784
|
+
};
|
|
21785
|
+
layer: "top" | "bottom";
|
|
21786
|
+
stroke_width: number;
|
|
21787
|
+
pcb_fabrication_note_rect_id: string;
|
|
21788
|
+
subcircuit_id?: string | undefined;
|
|
21789
|
+
pcb_group_id?: string | undefined;
|
|
21790
|
+
is_filled?: boolean | undefined;
|
|
21791
|
+
has_stroke?: boolean | undefined;
|
|
21792
|
+
is_stroke_dashed?: boolean | undefined;
|
|
21793
|
+
color?: string | undefined;
|
|
21794
|
+
}, {
|
|
21795
|
+
type: "pcb_fabrication_note_rect";
|
|
21796
|
+
width: string | number;
|
|
21797
|
+
height: string | number;
|
|
21798
|
+
pcb_component_id: string;
|
|
21799
|
+
center: {
|
|
21800
|
+
x: string | number;
|
|
21801
|
+
y: string | number;
|
|
21802
|
+
};
|
|
21803
|
+
layer: "top" | "bottom";
|
|
21804
|
+
subcircuit_id?: string | undefined;
|
|
21805
|
+
pcb_group_id?: string | undefined;
|
|
21806
|
+
stroke_width?: string | number | undefined;
|
|
21807
|
+
is_filled?: boolean | undefined;
|
|
21808
|
+
has_stroke?: boolean | undefined;
|
|
21809
|
+
is_stroke_dashed?: boolean | undefined;
|
|
21810
|
+
color?: string | undefined;
|
|
21811
|
+
pcb_fabrication_note_rect_id?: string | undefined;
|
|
21335
21812
|
}>, z.ZodObject<{
|
|
21336
21813
|
type: z.ZodLiteral<"pcb_autorouting_error">;
|
|
21337
21814
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21974,6 +22451,117 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21974
22451
|
subcircuit_id?: string | undefined;
|
|
21975
22452
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
21976
22453
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
22454
|
+
}>, z.ZodObject<{
|
|
22455
|
+
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
22456
|
+
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22457
|
+
pcb_component_id: z.ZodString;
|
|
22458
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
22459
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
22460
|
+
center: z.ZodObject<{
|
|
22461
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22462
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22463
|
+
}, "strip", z.ZodTypeAny, {
|
|
22464
|
+
x: number;
|
|
22465
|
+
y: number;
|
|
22466
|
+
}, {
|
|
22467
|
+
x: string | number;
|
|
22468
|
+
y: string | number;
|
|
22469
|
+
}>;
|
|
22470
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22471
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22472
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
22473
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22474
|
+
is_filled: z.ZodOptional<z.ZodBoolean>;
|
|
22475
|
+
has_stroke: z.ZodOptional<z.ZodBoolean>;
|
|
22476
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
22477
|
+
color: z.ZodOptional<z.ZodString>;
|
|
22478
|
+
}, "strip", z.ZodTypeAny, {
|
|
22479
|
+
type: "pcb_courtyard_rect";
|
|
22480
|
+
width: number;
|
|
22481
|
+
height: number;
|
|
22482
|
+
pcb_component_id: string;
|
|
22483
|
+
center: {
|
|
22484
|
+
x: number;
|
|
22485
|
+
y: number;
|
|
22486
|
+
};
|
|
22487
|
+
layer: "top" | "bottom";
|
|
22488
|
+
stroke_width: number;
|
|
22489
|
+
pcb_courtyard_rect_id: string;
|
|
22490
|
+
subcircuit_id?: string | undefined;
|
|
22491
|
+
pcb_group_id?: string | undefined;
|
|
22492
|
+
is_filled?: boolean | undefined;
|
|
22493
|
+
has_stroke?: boolean | undefined;
|
|
22494
|
+
is_stroke_dashed?: boolean | undefined;
|
|
22495
|
+
color?: string | undefined;
|
|
22496
|
+
}, {
|
|
22497
|
+
type: "pcb_courtyard_rect";
|
|
22498
|
+
width: string | number;
|
|
22499
|
+
height: string | number;
|
|
22500
|
+
pcb_component_id: string;
|
|
22501
|
+
center: {
|
|
22502
|
+
x: string | number;
|
|
22503
|
+
y: string | number;
|
|
22504
|
+
};
|
|
22505
|
+
layer: "top" | "bottom";
|
|
22506
|
+
subcircuit_id?: string | undefined;
|
|
22507
|
+
pcb_group_id?: string | undefined;
|
|
22508
|
+
stroke_width?: string | number | undefined;
|
|
22509
|
+
is_filled?: boolean | undefined;
|
|
22510
|
+
has_stroke?: boolean | undefined;
|
|
22511
|
+
is_stroke_dashed?: boolean | undefined;
|
|
22512
|
+
color?: string | undefined;
|
|
22513
|
+
pcb_courtyard_rect_id?: string | undefined;
|
|
22514
|
+
}>, z.ZodObject<{
|
|
22515
|
+
type: z.ZodLiteral<"pcb_courtyard_outline">;
|
|
22516
|
+
pcb_courtyard_outline_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22517
|
+
pcb_component_id: z.ZodString;
|
|
22518
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
22519
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
22520
|
+
layer: z.ZodEnum<["top", "bottom"]>;
|
|
22521
|
+
outline: z.ZodArray<z.ZodObject<{
|
|
22522
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22523
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22524
|
+
}, "strip", z.ZodTypeAny, {
|
|
22525
|
+
x: number;
|
|
22526
|
+
y: number;
|
|
22527
|
+
}, {
|
|
22528
|
+
x: string | number;
|
|
22529
|
+
y: string | number;
|
|
22530
|
+
}>, "many">;
|
|
22531
|
+
stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22532
|
+
is_closed: z.ZodOptional<z.ZodBoolean>;
|
|
22533
|
+
is_stroke_dashed: z.ZodOptional<z.ZodBoolean>;
|
|
22534
|
+
color: z.ZodOptional<z.ZodString>;
|
|
22535
|
+
}, "strip", z.ZodTypeAny, {
|
|
22536
|
+
type: "pcb_courtyard_outline";
|
|
22537
|
+
pcb_component_id: string;
|
|
22538
|
+
layer: "top" | "bottom";
|
|
22539
|
+
outline: {
|
|
22540
|
+
x: number;
|
|
22541
|
+
y: number;
|
|
22542
|
+
}[];
|
|
22543
|
+
stroke_width: number;
|
|
22544
|
+
pcb_courtyard_outline_id: string;
|
|
22545
|
+
subcircuit_id?: string | undefined;
|
|
22546
|
+
pcb_group_id?: string | undefined;
|
|
22547
|
+
is_stroke_dashed?: boolean | undefined;
|
|
22548
|
+
color?: string | undefined;
|
|
22549
|
+
is_closed?: boolean | undefined;
|
|
22550
|
+
}, {
|
|
22551
|
+
type: "pcb_courtyard_outline";
|
|
22552
|
+
pcb_component_id: string;
|
|
22553
|
+
layer: "top" | "bottom";
|
|
22554
|
+
outline: {
|
|
22555
|
+
x: string | number;
|
|
22556
|
+
y: string | number;
|
|
22557
|
+
}[];
|
|
22558
|
+
subcircuit_id?: string | undefined;
|
|
22559
|
+
pcb_group_id?: string | undefined;
|
|
22560
|
+
stroke_width?: string | number | undefined;
|
|
22561
|
+
is_stroke_dashed?: boolean | undefined;
|
|
22562
|
+
color?: string | undefined;
|
|
22563
|
+
pcb_courtyard_outline_id?: string | undefined;
|
|
22564
|
+
is_closed?: boolean | undefined;
|
|
21977
22565
|
}>, z.ZodObject<{
|
|
21978
22566
|
type: z.ZodLiteral<"schematic_box">;
|
|
21979
22567
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
@@ -23509,4 +24097,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
23509
24097
|
*/
|
|
23510
24098
|
type CircuitJson = AnyCircuitElement[];
|
|
23511
24099
|
|
|
23512
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|
|
24100
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, type PCBCourtyardRect, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|