circuit-json 0.0.446 → 0.0.448
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 +24 -0
- package/dist/index.d.mts +139 -5
- package/dist/index.mjs +700 -677
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,6 +163,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
163
163
|
- [PcbTraceError](#pcbtraceerror)
|
|
164
164
|
- [PcbTraceHint](#pcbtracehint)
|
|
165
165
|
- [PcbTraceMissingError](#pcbtracemissingerror)
|
|
166
|
+
- [PcbTraceTooLongWarning](#pcbtracetoolongwarning)
|
|
166
167
|
- [PcbTraceWarning](#pcbtracewarning)
|
|
167
168
|
- [PcbVia](#pcbvia)
|
|
168
169
|
- [PcbViaClearanceError](#pcbviaclearanceerror)
|
|
@@ -719,6 +720,7 @@ interface SourceProjectMetadata {
|
|
|
719
720
|
name?: string
|
|
720
721
|
software_used_string?: string
|
|
721
722
|
project_url?: string
|
|
723
|
+
source_filesystem_md5_hash?: string
|
|
722
724
|
created_at?: string // ISO8601 timestamp
|
|
723
725
|
}
|
|
724
726
|
```
|
|
@@ -2684,6 +2686,28 @@ interface PcbTraceMissingError extends BaseCircuitJsonError {
|
|
|
2684
2686
|
}
|
|
2685
2687
|
```
|
|
2686
2688
|
|
|
2689
|
+
### PcbTraceTooLongWarning
|
|
2690
|
+
|
|
2691
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_too_long_warning.ts)
|
|
2692
|
+
|
|
2693
|
+
Warning emitted when a PCB trace is longer than its maximum allowed length
|
|
2694
|
+
|
|
2695
|
+
```typescript
|
|
2696
|
+
/** Warning emitted when a PCB trace is longer than its maximum allowed length */
|
|
2697
|
+
interface PcbTraceTooLongWarning {
|
|
2698
|
+
type: "pcb_trace_too_long_warning"
|
|
2699
|
+
pcb_trace_too_long_warning_id: string
|
|
2700
|
+
warning_type: "pcb_trace_too_long_warning"
|
|
2701
|
+
message: string
|
|
2702
|
+
pcb_trace_id: string
|
|
2703
|
+
source_net_id?: string
|
|
2704
|
+
source_trace_id?: string
|
|
2705
|
+
actual_trace_length: Distance
|
|
2706
|
+
maximum_trace_length: Distance
|
|
2707
|
+
subcircuit_id?: string
|
|
2708
|
+
}
|
|
2709
|
+
```
|
|
2710
|
+
|
|
2687
2711
|
### PcbTraceWarning
|
|
2688
2712
|
|
|
2689
2713
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_warning.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -7406,6 +7406,55 @@ interface PcbTraceWarning {
|
|
|
7406
7406
|
subcircuit_id?: string;
|
|
7407
7407
|
}
|
|
7408
7408
|
|
|
7409
|
+
declare const pcb_trace_too_long_warning: z.ZodObject<{
|
|
7410
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
7411
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7412
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
7413
|
+
message: z.ZodString;
|
|
7414
|
+
pcb_trace_id: z.ZodString;
|
|
7415
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
7416
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
7417
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7418
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7419
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7420
|
+
}, "strip", z.ZodTypeAny, {
|
|
7421
|
+
message: string;
|
|
7422
|
+
type: "pcb_trace_too_long_warning";
|
|
7423
|
+
pcb_trace_id: string;
|
|
7424
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
7425
|
+
pcb_trace_too_long_warning_id: string;
|
|
7426
|
+
actual_trace_length: number;
|
|
7427
|
+
maximum_trace_length: number;
|
|
7428
|
+
subcircuit_id?: string | undefined;
|
|
7429
|
+
source_trace_id?: string | undefined;
|
|
7430
|
+
source_net_id?: string | undefined;
|
|
7431
|
+
}, {
|
|
7432
|
+
message: string;
|
|
7433
|
+
type: "pcb_trace_too_long_warning";
|
|
7434
|
+
pcb_trace_id: string;
|
|
7435
|
+
actual_trace_length: string | number;
|
|
7436
|
+
maximum_trace_length: string | number;
|
|
7437
|
+
subcircuit_id?: string | undefined;
|
|
7438
|
+
source_trace_id?: string | undefined;
|
|
7439
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
7440
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
7441
|
+
source_net_id?: string | undefined;
|
|
7442
|
+
}>;
|
|
7443
|
+
type PcbTraceTooLongWarningInput = z.input<typeof pcb_trace_too_long_warning>;
|
|
7444
|
+
/** Warning emitted when a PCB trace is longer than its maximum allowed length */
|
|
7445
|
+
interface PcbTraceTooLongWarning {
|
|
7446
|
+
type: "pcb_trace_too_long_warning";
|
|
7447
|
+
pcb_trace_too_long_warning_id: string;
|
|
7448
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
7449
|
+
message: string;
|
|
7450
|
+
pcb_trace_id: string;
|
|
7451
|
+
source_net_id?: string;
|
|
7452
|
+
source_trace_id?: string;
|
|
7453
|
+
actual_trace_length: Distance;
|
|
7454
|
+
maximum_trace_length: Distance;
|
|
7455
|
+
subcircuit_id?: string;
|
|
7456
|
+
}
|
|
7457
|
+
|
|
7409
7458
|
declare const base_circuit_json_error: z.ZodObject<{
|
|
7410
7459
|
error_type: z.ZodString;
|
|
7411
7460
|
message: z.ZodString;
|
|
@@ -7665,8 +7714,8 @@ declare const pcb_net: z.ZodObject<{
|
|
|
7665
7714
|
}, {
|
|
7666
7715
|
type: "pcb_net";
|
|
7667
7716
|
highlight_color?: string | undefined;
|
|
7668
|
-
pcb_net_id?: string | undefined;
|
|
7669
7717
|
source_net_id?: string | undefined;
|
|
7718
|
+
pcb_net_id?: string | undefined;
|
|
7670
7719
|
}>;
|
|
7671
7720
|
type PcbNetInput = z.input<typeof pcb_net>;
|
|
7672
7721
|
/**
|
|
@@ -12844,7 +12893,7 @@ interface PcbCourtyardPill {
|
|
|
12844
12893
|
color?: string;
|
|
12845
12894
|
}
|
|
12846
12895
|
|
|
12847
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbSilkscreenGraphic | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
|
|
12896
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceTooLongWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbSilkscreenGraphic | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
|
|
12848
12897
|
|
|
12849
12898
|
interface SchematicBox {
|
|
12850
12899
|
type: "schematic_box";
|
|
@@ -28434,6 +28483,7 @@ interface SourceProjectMetadata {
|
|
|
28434
28483
|
name?: string;
|
|
28435
28484
|
software_used_string?: string;
|
|
28436
28485
|
project_url?: string;
|
|
28486
|
+
source_filesystem_md5_hash?: string;
|
|
28437
28487
|
created_at?: string;
|
|
28438
28488
|
}
|
|
28439
28489
|
declare const source_project_metadata: z.ZodObject<{
|
|
@@ -28441,18 +28491,21 @@ declare const source_project_metadata: z.ZodObject<{
|
|
|
28441
28491
|
name: z.ZodOptional<z.ZodString>;
|
|
28442
28492
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
28443
28493
|
project_url: z.ZodOptional<z.ZodString>;
|
|
28494
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
28444
28495
|
created_at: z.ZodOptional<z.ZodString>;
|
|
28445
28496
|
}, "strip", z.ZodTypeAny, {
|
|
28446
28497
|
type: "source_project_metadata";
|
|
28447
28498
|
name?: string | undefined;
|
|
28448
28499
|
software_used_string?: string | undefined;
|
|
28449
28500
|
project_url?: string | undefined;
|
|
28501
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
28450
28502
|
created_at?: string | undefined;
|
|
28451
28503
|
}, {
|
|
28452
28504
|
type: "source_project_metadata";
|
|
28453
28505
|
name?: string | undefined;
|
|
28454
28506
|
software_used_string?: string | undefined;
|
|
28455
28507
|
project_url?: string | undefined;
|
|
28508
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
28456
28509
|
created_at?: string | undefined;
|
|
28457
28510
|
}>;
|
|
28458
28511
|
type InferredProjectMetadata = z.infer<typeof source_project_metadata>;
|
|
@@ -30398,18 +30451,21 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
30398
30451
|
name: z.ZodOptional<z.ZodString>;
|
|
30399
30452
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
30400
30453
|
project_url: z.ZodOptional<z.ZodString>;
|
|
30454
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
30401
30455
|
created_at: z.ZodOptional<z.ZodString>;
|
|
30402
30456
|
}, "strip", z.ZodTypeAny, {
|
|
30403
30457
|
type: "source_project_metadata";
|
|
30404
30458
|
name?: string | undefined;
|
|
30405
30459
|
software_used_string?: string | undefined;
|
|
30406
30460
|
project_url?: string | undefined;
|
|
30461
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
30407
30462
|
created_at?: string | undefined;
|
|
30408
30463
|
}, {
|
|
30409
30464
|
type: "source_project_metadata";
|
|
30410
30465
|
name?: string | undefined;
|
|
30411
30466
|
software_used_string?: string | undefined;
|
|
30412
30467
|
project_url?: string | undefined;
|
|
30468
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
30413
30469
|
created_at?: string | undefined;
|
|
30414
30470
|
}>, z.ZodObject<{
|
|
30415
30471
|
message: z.ZodString;
|
|
@@ -35809,18 +35865,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35809
35865
|
name: z.ZodOptional<z.ZodString>;
|
|
35810
35866
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
35811
35867
|
project_url: z.ZodOptional<z.ZodString>;
|
|
35868
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
35812
35869
|
created_at: z.ZodOptional<z.ZodString>;
|
|
35813
35870
|
}, "strip", z.ZodTypeAny, {
|
|
35814
35871
|
type: "source_project_metadata";
|
|
35815
35872
|
name?: string | undefined;
|
|
35816
35873
|
software_used_string?: string | undefined;
|
|
35817
35874
|
project_url?: string | undefined;
|
|
35875
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
35818
35876
|
created_at?: string | undefined;
|
|
35819
35877
|
}, {
|
|
35820
35878
|
type: "source_project_metadata";
|
|
35821
35879
|
name?: string | undefined;
|
|
35822
35880
|
software_used_string?: string | undefined;
|
|
35823
35881
|
project_url?: string | undefined;
|
|
35882
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
35824
35883
|
created_at?: string | undefined;
|
|
35825
35884
|
}>, z.ZodObject<{
|
|
35826
35885
|
message: z.ZodString;
|
|
@@ -37069,18 +37128,21 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37069
37128
|
name: z.ZodOptional<z.ZodString>;
|
|
37070
37129
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
37071
37130
|
project_url: z.ZodOptional<z.ZodString>;
|
|
37131
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
37072
37132
|
created_at: z.ZodOptional<z.ZodString>;
|
|
37073
37133
|
}, "strip", z.ZodTypeAny, {
|
|
37074
37134
|
type: "source_project_metadata";
|
|
37075
37135
|
name?: string | undefined;
|
|
37076
37136
|
software_used_string?: string | undefined;
|
|
37077
37137
|
project_url?: string | undefined;
|
|
37138
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
37078
37139
|
created_at?: string | undefined;
|
|
37079
37140
|
}, {
|
|
37080
37141
|
type: "source_project_metadata";
|
|
37081
37142
|
name?: string | undefined;
|
|
37082
37143
|
software_used_string?: string | undefined;
|
|
37083
37144
|
project_url?: string | undefined;
|
|
37145
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
37084
37146
|
created_at?: string | undefined;
|
|
37085
37147
|
}>, z.ZodObject<{
|
|
37086
37148
|
message: z.ZodString;
|
|
@@ -40173,8 +40235,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40173
40235
|
}, {
|
|
40174
40236
|
type: "pcb_net";
|
|
40175
40237
|
highlight_color?: string | undefined;
|
|
40176
|
-
pcb_net_id?: string | undefined;
|
|
40177
40238
|
source_net_id?: string | undefined;
|
|
40239
|
+
pcb_net_id?: string | undefined;
|
|
40178
40240
|
}>, z.ZodObject<{
|
|
40179
40241
|
type: z.ZodLiteral<"pcb_text">;
|
|
40180
40242
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -40570,6 +40632,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40570
40632
|
subcircuit_id?: string | undefined;
|
|
40571
40633
|
pcb_trace_warning_id?: string | undefined;
|
|
40572
40634
|
warning_type?: "pcb_trace_warning" | undefined;
|
|
40635
|
+
}>, z.ZodObject<{
|
|
40636
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
40637
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40638
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
40639
|
+
message: z.ZodString;
|
|
40640
|
+
pcb_trace_id: z.ZodString;
|
|
40641
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
40642
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
40643
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
40644
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
40645
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40646
|
+
}, "strip", z.ZodTypeAny, {
|
|
40647
|
+
message: string;
|
|
40648
|
+
type: "pcb_trace_too_long_warning";
|
|
40649
|
+
pcb_trace_id: string;
|
|
40650
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
40651
|
+
pcb_trace_too_long_warning_id: string;
|
|
40652
|
+
actual_trace_length: number;
|
|
40653
|
+
maximum_trace_length: number;
|
|
40654
|
+
subcircuit_id?: string | undefined;
|
|
40655
|
+
source_trace_id?: string | undefined;
|
|
40656
|
+
source_net_id?: string | undefined;
|
|
40657
|
+
}, {
|
|
40658
|
+
message: string;
|
|
40659
|
+
type: "pcb_trace_too_long_warning";
|
|
40660
|
+
pcb_trace_id: string;
|
|
40661
|
+
actual_trace_length: string | number;
|
|
40662
|
+
maximum_trace_length: string | number;
|
|
40663
|
+
subcircuit_id?: string | undefined;
|
|
40664
|
+
source_trace_id?: string | undefined;
|
|
40665
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
40666
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
40667
|
+
source_net_id?: string | undefined;
|
|
40573
40668
|
}>, z.ZodObject<{
|
|
40574
40669
|
type: z.ZodLiteral<"pcb_via">;
|
|
40575
40670
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -54795,18 +54890,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
54795
54890
|
name: z.ZodOptional<z.ZodString>;
|
|
54796
54891
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
54797
54892
|
project_url: z.ZodOptional<z.ZodString>;
|
|
54893
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
54798
54894
|
created_at: z.ZodOptional<z.ZodString>;
|
|
54799
54895
|
}, "strip", z.ZodTypeAny, {
|
|
54800
54896
|
type: "source_project_metadata";
|
|
54801
54897
|
name?: string | undefined;
|
|
54802
54898
|
software_used_string?: string | undefined;
|
|
54803
54899
|
project_url?: string | undefined;
|
|
54900
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
54804
54901
|
created_at?: string | undefined;
|
|
54805
54902
|
}, {
|
|
54806
54903
|
type: "source_project_metadata";
|
|
54807
54904
|
name?: string | undefined;
|
|
54808
54905
|
software_used_string?: string | undefined;
|
|
54809
54906
|
project_url?: string | undefined;
|
|
54907
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
54810
54908
|
created_at?: string | undefined;
|
|
54811
54909
|
}>, z.ZodObject<{
|
|
54812
54910
|
message: z.ZodString;
|
|
@@ -56055,18 +56153,21 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
56055
56153
|
name: z.ZodOptional<z.ZodString>;
|
|
56056
56154
|
software_used_string: z.ZodOptional<z.ZodString>;
|
|
56057
56155
|
project_url: z.ZodOptional<z.ZodString>;
|
|
56156
|
+
source_filesystem_md5_hash: z.ZodOptional<z.ZodString>;
|
|
56058
56157
|
created_at: z.ZodOptional<z.ZodString>;
|
|
56059
56158
|
}, "strip", z.ZodTypeAny, {
|
|
56060
56159
|
type: "source_project_metadata";
|
|
56061
56160
|
name?: string | undefined;
|
|
56062
56161
|
software_used_string?: string | undefined;
|
|
56063
56162
|
project_url?: string | undefined;
|
|
56163
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
56064
56164
|
created_at?: string | undefined;
|
|
56065
56165
|
}, {
|
|
56066
56166
|
type: "source_project_metadata";
|
|
56067
56167
|
name?: string | undefined;
|
|
56068
56168
|
software_used_string?: string | undefined;
|
|
56069
56169
|
project_url?: string | undefined;
|
|
56170
|
+
source_filesystem_md5_hash?: string | undefined;
|
|
56070
56171
|
created_at?: string | undefined;
|
|
56071
56172
|
}>, z.ZodObject<{
|
|
56072
56173
|
message: z.ZodString;
|
|
@@ -59159,8 +59260,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
59159
59260
|
}, {
|
|
59160
59261
|
type: "pcb_net";
|
|
59161
59262
|
highlight_color?: string | undefined;
|
|
59162
|
-
pcb_net_id?: string | undefined;
|
|
59163
59263
|
source_net_id?: string | undefined;
|
|
59264
|
+
pcb_net_id?: string | undefined;
|
|
59164
59265
|
}>, z.ZodObject<{
|
|
59165
59266
|
type: z.ZodLiteral<"pcb_text">;
|
|
59166
59267
|
pcb_text_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -59556,6 +59657,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
59556
59657
|
subcircuit_id?: string | undefined;
|
|
59557
59658
|
pcb_trace_warning_id?: string | undefined;
|
|
59558
59659
|
warning_type?: "pcb_trace_warning" | undefined;
|
|
59660
|
+
}>, z.ZodObject<{
|
|
59661
|
+
type: z.ZodLiteral<"pcb_trace_too_long_warning">;
|
|
59662
|
+
pcb_trace_too_long_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
59663
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_too_long_warning">>;
|
|
59664
|
+
message: z.ZodString;
|
|
59665
|
+
pcb_trace_id: z.ZodString;
|
|
59666
|
+
source_net_id: z.ZodOptional<z.ZodString>;
|
|
59667
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
59668
|
+
actual_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
59669
|
+
maximum_trace_length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
59670
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
59671
|
+
}, "strip", z.ZodTypeAny, {
|
|
59672
|
+
message: string;
|
|
59673
|
+
type: "pcb_trace_too_long_warning";
|
|
59674
|
+
pcb_trace_id: string;
|
|
59675
|
+
warning_type: "pcb_trace_too_long_warning";
|
|
59676
|
+
pcb_trace_too_long_warning_id: string;
|
|
59677
|
+
actual_trace_length: number;
|
|
59678
|
+
maximum_trace_length: number;
|
|
59679
|
+
subcircuit_id?: string | undefined;
|
|
59680
|
+
source_trace_id?: string | undefined;
|
|
59681
|
+
source_net_id?: string | undefined;
|
|
59682
|
+
}, {
|
|
59683
|
+
message: string;
|
|
59684
|
+
type: "pcb_trace_too_long_warning";
|
|
59685
|
+
pcb_trace_id: string;
|
|
59686
|
+
actual_trace_length: string | number;
|
|
59687
|
+
maximum_trace_length: string | number;
|
|
59688
|
+
subcircuit_id?: string | undefined;
|
|
59689
|
+
source_trace_id?: string | undefined;
|
|
59690
|
+
warning_type?: "pcb_trace_too_long_warning" | undefined;
|
|
59691
|
+
pcb_trace_too_long_warning_id?: string | undefined;
|
|
59692
|
+
source_net_id?: string | undefined;
|
|
59559
59693
|
}>, z.ZodObject<{
|
|
59560
59694
|
type: z.ZodLiteral<"pcb_via">;
|
|
59561
59695
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -72317,4 +72451,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
72317
72451
|
*/
|
|
72318
72452
|
type CircuitJson = AnyCircuitElement[];
|
|
72319
72453
|
|
|
72320
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentProbe, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationOscilloscopeTrace, type SimulationOscilloscopeTraceInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePartNotFoundWarning, type SourcePartNotFoundWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceRefdesConventionWarning, type SourceRefdesConventionWarningInput, type SourceSimpleAmmeter, type SourceSimpleAmmeterInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleFuse, type SourceSimpleFuseInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SourceUnnamedTraceWarning, type SourceUnnamedTraceWarningInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, 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_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_oscilloscope_trace, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_part_not_found_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_refdes_convention_warning, source_simple_ammeter, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_fuse, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, source_unnamed_trace_warning, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
72454
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceTooLongWarning, type PcbTraceTooLongWarningInput, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentProbe, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationOscilloscopeTrace, type SimulationOscilloscopeTraceInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePartNotFoundWarning, type SourcePartNotFoundWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceRefdesConventionWarning, type SourceRefdesConventionWarningInput, type SourceSimpleAmmeter, type SourceSimpleAmmeterInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleFuse, type SourceSimpleFuseInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SourceUnnamedTraceWarning, type SourceUnnamedTraceWarningInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, 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_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_too_long_warning, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_oscilloscope_trace, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_part_not_found_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_refdes_convention_warning, source_simple_ammeter, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_fuse, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, source_unnamed_trace_warning, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|