circuit-json 0.0.412 → 0.0.413
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/dist/index.d.mts +340 -2
- package/dist/index.mjs +188 -143
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11523,6 +11523,142 @@ interface PcbViaClearanceError extends BaseCircuitJsonError {
|
|
|
11523
11523
|
subcircuit_id?: string;
|
|
11524
11524
|
}
|
|
11525
11525
|
|
|
11526
|
+
declare const pcb_pad_pad_clearance_error: z.ZodObject<{
|
|
11527
|
+
message: z.ZodString;
|
|
11528
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11529
|
+
} & {
|
|
11530
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
11531
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11532
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
11533
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
11534
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11535
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11536
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
11537
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
11538
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
11539
|
+
}, "strip", z.ZodTypeAny, {
|
|
11540
|
+
x?: number | undefined;
|
|
11541
|
+
y?: number | undefined;
|
|
11542
|
+
}, {
|
|
11543
|
+
x?: number | undefined;
|
|
11544
|
+
y?: number | undefined;
|
|
11545
|
+
}>>;
|
|
11546
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11547
|
+
}, "strip", z.ZodTypeAny, {
|
|
11548
|
+
message: string;
|
|
11549
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11550
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
11551
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
11552
|
+
pcb_pad_ids: string[];
|
|
11553
|
+
center?: {
|
|
11554
|
+
x?: number | undefined;
|
|
11555
|
+
y?: number | undefined;
|
|
11556
|
+
} | undefined;
|
|
11557
|
+
subcircuit_id?: string | undefined;
|
|
11558
|
+
is_fatal?: boolean | undefined;
|
|
11559
|
+
minimum_clearance?: number | undefined;
|
|
11560
|
+
actual_clearance?: number | undefined;
|
|
11561
|
+
}, {
|
|
11562
|
+
message: string;
|
|
11563
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11564
|
+
pcb_pad_ids: string[];
|
|
11565
|
+
center?: {
|
|
11566
|
+
x?: number | undefined;
|
|
11567
|
+
y?: number | undefined;
|
|
11568
|
+
} | undefined;
|
|
11569
|
+
subcircuit_id?: string | undefined;
|
|
11570
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
11571
|
+
is_fatal?: boolean | undefined;
|
|
11572
|
+
minimum_clearance?: string | number | undefined;
|
|
11573
|
+
actual_clearance?: string | number | undefined;
|
|
11574
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
11575
|
+
}>;
|
|
11576
|
+
type PcbPadPadClearanceErrorInput = z.input<typeof pcb_pad_pad_clearance_error>;
|
|
11577
|
+
/** Error emitted when pads are closer than the allowed clearance */
|
|
11578
|
+
interface PcbPadPadClearanceError extends BaseCircuitJsonError {
|
|
11579
|
+
type: "pcb_pad_pad_clearance_error";
|
|
11580
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
11581
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
11582
|
+
pcb_pad_ids: string[];
|
|
11583
|
+
minimum_clearance?: Distance;
|
|
11584
|
+
actual_clearance?: Distance;
|
|
11585
|
+
center?: {
|
|
11586
|
+
x?: number;
|
|
11587
|
+
y?: number;
|
|
11588
|
+
};
|
|
11589
|
+
subcircuit_id?: string;
|
|
11590
|
+
}
|
|
11591
|
+
|
|
11592
|
+
declare const pcb_pad_trace_clearance_error: z.ZodObject<{
|
|
11593
|
+
message: z.ZodString;
|
|
11594
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
11595
|
+
} & {
|
|
11596
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
11597
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11598
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
11599
|
+
pcb_pad_id: z.ZodString;
|
|
11600
|
+
pcb_trace_id: z.ZodString;
|
|
11601
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11602
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11603
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
11604
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
11605
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
11606
|
+
}, "strip", z.ZodTypeAny, {
|
|
11607
|
+
x?: number | undefined;
|
|
11608
|
+
y?: number | undefined;
|
|
11609
|
+
}, {
|
|
11610
|
+
x?: number | undefined;
|
|
11611
|
+
y?: number | undefined;
|
|
11612
|
+
}>>;
|
|
11613
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11614
|
+
}, "strip", z.ZodTypeAny, {
|
|
11615
|
+
message: string;
|
|
11616
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11617
|
+
pcb_trace_id: string;
|
|
11618
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
11619
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
11620
|
+
pcb_pad_id: string;
|
|
11621
|
+
center?: {
|
|
11622
|
+
x?: number | undefined;
|
|
11623
|
+
y?: number | undefined;
|
|
11624
|
+
} | undefined;
|
|
11625
|
+
subcircuit_id?: string | undefined;
|
|
11626
|
+
is_fatal?: boolean | undefined;
|
|
11627
|
+
minimum_clearance?: number | undefined;
|
|
11628
|
+
actual_clearance?: number | undefined;
|
|
11629
|
+
}, {
|
|
11630
|
+
message: string;
|
|
11631
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11632
|
+
pcb_trace_id: string;
|
|
11633
|
+
pcb_pad_id: string;
|
|
11634
|
+
center?: {
|
|
11635
|
+
x?: number | undefined;
|
|
11636
|
+
y?: number | undefined;
|
|
11637
|
+
} | undefined;
|
|
11638
|
+
subcircuit_id?: string | undefined;
|
|
11639
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
11640
|
+
is_fatal?: boolean | undefined;
|
|
11641
|
+
minimum_clearance?: string | number | undefined;
|
|
11642
|
+
actual_clearance?: string | number | undefined;
|
|
11643
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
11644
|
+
}>;
|
|
11645
|
+
type PcbPadTraceClearanceErrorInput = z.input<typeof pcb_pad_trace_clearance_error>;
|
|
11646
|
+
/** Error emitted when a pad and trace are closer than allowed clearance */
|
|
11647
|
+
interface PcbPadTraceClearanceError extends BaseCircuitJsonError {
|
|
11648
|
+
type: "pcb_pad_trace_clearance_error";
|
|
11649
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
11650
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
11651
|
+
pcb_pad_id: string;
|
|
11652
|
+
pcb_trace_id: string;
|
|
11653
|
+
minimum_clearance?: Distance;
|
|
11654
|
+
actual_clearance?: Distance;
|
|
11655
|
+
center?: {
|
|
11656
|
+
x?: number;
|
|
11657
|
+
y?: number;
|
|
11658
|
+
};
|
|
11659
|
+
subcircuit_id?: string;
|
|
11660
|
+
}
|
|
11661
|
+
|
|
11526
11662
|
declare const pcb_courtyard_rect: z.ZodObject<{
|
|
11527
11663
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
11528
11664
|
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11779,7 +11915,7 @@ interface PcbCourtyardCircle {
|
|
|
11779
11915
|
color?: string;
|
|
11780
11916
|
}
|
|
11781
11917
|
|
|
11782
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
|
|
11918
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
|
|
11783
11919
|
|
|
11784
11920
|
interface SchematicBox {
|
|
11785
11921
|
type: "schematic_box";
|
|
@@ -40098,6 +40234,107 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40098
40234
|
x?: number | undefined;
|
|
40099
40235
|
y?: number | undefined;
|
|
40100
40236
|
} | undefined;
|
|
40237
|
+
}>, z.ZodObject<{
|
|
40238
|
+
message: z.ZodString;
|
|
40239
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
40240
|
+
} & {
|
|
40241
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
40242
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40243
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
40244
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
40245
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40246
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40247
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
40248
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
40249
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
40250
|
+
}, "strip", z.ZodTypeAny, {
|
|
40251
|
+
x?: number | undefined;
|
|
40252
|
+
y?: number | undefined;
|
|
40253
|
+
}, {
|
|
40254
|
+
x?: number | undefined;
|
|
40255
|
+
y?: number | undefined;
|
|
40256
|
+
}>>;
|
|
40257
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40258
|
+
}, "strip", z.ZodTypeAny, {
|
|
40259
|
+
message: string;
|
|
40260
|
+
type: "pcb_pad_pad_clearance_error";
|
|
40261
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
40262
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
40263
|
+
pcb_pad_ids: string[];
|
|
40264
|
+
center?: {
|
|
40265
|
+
x?: number | undefined;
|
|
40266
|
+
y?: number | undefined;
|
|
40267
|
+
} | undefined;
|
|
40268
|
+
subcircuit_id?: string | undefined;
|
|
40269
|
+
is_fatal?: boolean | undefined;
|
|
40270
|
+
minimum_clearance?: number | undefined;
|
|
40271
|
+
actual_clearance?: number | undefined;
|
|
40272
|
+
}, {
|
|
40273
|
+
message: string;
|
|
40274
|
+
type: "pcb_pad_pad_clearance_error";
|
|
40275
|
+
pcb_pad_ids: string[];
|
|
40276
|
+
center?: {
|
|
40277
|
+
x?: number | undefined;
|
|
40278
|
+
y?: number | undefined;
|
|
40279
|
+
} | undefined;
|
|
40280
|
+
subcircuit_id?: string | undefined;
|
|
40281
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
40282
|
+
is_fatal?: boolean | undefined;
|
|
40283
|
+
minimum_clearance?: string | number | undefined;
|
|
40284
|
+
actual_clearance?: string | number | undefined;
|
|
40285
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
40286
|
+
}>, z.ZodObject<{
|
|
40287
|
+
message: z.ZodString;
|
|
40288
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
40289
|
+
} & {
|
|
40290
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
40291
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40292
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
40293
|
+
pcb_pad_id: z.ZodString;
|
|
40294
|
+
pcb_trace_id: z.ZodString;
|
|
40295
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40296
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
40297
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
40298
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
40299
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
40300
|
+
}, "strip", z.ZodTypeAny, {
|
|
40301
|
+
x?: number | undefined;
|
|
40302
|
+
y?: number | undefined;
|
|
40303
|
+
}, {
|
|
40304
|
+
x?: number | undefined;
|
|
40305
|
+
y?: number | undefined;
|
|
40306
|
+
}>>;
|
|
40307
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
40308
|
+
}, "strip", z.ZodTypeAny, {
|
|
40309
|
+
message: string;
|
|
40310
|
+
type: "pcb_pad_trace_clearance_error";
|
|
40311
|
+
pcb_trace_id: string;
|
|
40312
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
40313
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
40314
|
+
pcb_pad_id: string;
|
|
40315
|
+
center?: {
|
|
40316
|
+
x?: number | undefined;
|
|
40317
|
+
y?: number | undefined;
|
|
40318
|
+
} | undefined;
|
|
40319
|
+
subcircuit_id?: string | undefined;
|
|
40320
|
+
is_fatal?: boolean | undefined;
|
|
40321
|
+
minimum_clearance?: number | undefined;
|
|
40322
|
+
actual_clearance?: number | undefined;
|
|
40323
|
+
}, {
|
|
40324
|
+
message: string;
|
|
40325
|
+
type: "pcb_pad_trace_clearance_error";
|
|
40326
|
+
pcb_trace_id: string;
|
|
40327
|
+
pcb_pad_id: string;
|
|
40328
|
+
center?: {
|
|
40329
|
+
x?: number | undefined;
|
|
40330
|
+
y?: number | undefined;
|
|
40331
|
+
} | undefined;
|
|
40332
|
+
subcircuit_id?: string | undefined;
|
|
40333
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
40334
|
+
is_fatal?: boolean | undefined;
|
|
40335
|
+
minimum_clearance?: string | number | undefined;
|
|
40336
|
+
actual_clearance?: string | number | undefined;
|
|
40337
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
40101
40338
|
}>, z.ZodObject<{
|
|
40102
40339
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
40103
40340
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -58001,6 +58238,107 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58001
58238
|
x?: number | undefined;
|
|
58002
58239
|
y?: number | undefined;
|
|
58003
58240
|
} | undefined;
|
|
58241
|
+
}>, z.ZodObject<{
|
|
58242
|
+
message: z.ZodString;
|
|
58243
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
58244
|
+
} & {
|
|
58245
|
+
type: z.ZodLiteral<"pcb_pad_pad_clearance_error">;
|
|
58246
|
+
pcb_pad_pad_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
58247
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_pad_clearance_error">>;
|
|
58248
|
+
pcb_pad_ids: z.ZodArray<z.ZodString, "many">;
|
|
58249
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58250
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58251
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
58252
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
58253
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
58254
|
+
}, "strip", z.ZodTypeAny, {
|
|
58255
|
+
x?: number | undefined;
|
|
58256
|
+
y?: number | undefined;
|
|
58257
|
+
}, {
|
|
58258
|
+
x?: number | undefined;
|
|
58259
|
+
y?: number | undefined;
|
|
58260
|
+
}>>;
|
|
58261
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
58262
|
+
}, "strip", z.ZodTypeAny, {
|
|
58263
|
+
message: string;
|
|
58264
|
+
type: "pcb_pad_pad_clearance_error";
|
|
58265
|
+
error_type: "pcb_pad_pad_clearance_error";
|
|
58266
|
+
pcb_pad_pad_clearance_error_id: string;
|
|
58267
|
+
pcb_pad_ids: string[];
|
|
58268
|
+
center?: {
|
|
58269
|
+
x?: number | undefined;
|
|
58270
|
+
y?: number | undefined;
|
|
58271
|
+
} | undefined;
|
|
58272
|
+
subcircuit_id?: string | undefined;
|
|
58273
|
+
is_fatal?: boolean | undefined;
|
|
58274
|
+
minimum_clearance?: number | undefined;
|
|
58275
|
+
actual_clearance?: number | undefined;
|
|
58276
|
+
}, {
|
|
58277
|
+
message: string;
|
|
58278
|
+
type: "pcb_pad_pad_clearance_error";
|
|
58279
|
+
pcb_pad_ids: string[];
|
|
58280
|
+
center?: {
|
|
58281
|
+
x?: number | undefined;
|
|
58282
|
+
y?: number | undefined;
|
|
58283
|
+
} | undefined;
|
|
58284
|
+
subcircuit_id?: string | undefined;
|
|
58285
|
+
error_type?: "pcb_pad_pad_clearance_error" | undefined;
|
|
58286
|
+
is_fatal?: boolean | undefined;
|
|
58287
|
+
minimum_clearance?: string | number | undefined;
|
|
58288
|
+
actual_clearance?: string | number | undefined;
|
|
58289
|
+
pcb_pad_pad_clearance_error_id?: string | undefined;
|
|
58290
|
+
}>, z.ZodObject<{
|
|
58291
|
+
message: z.ZodString;
|
|
58292
|
+
is_fatal: z.ZodOptional<z.ZodBoolean>;
|
|
58293
|
+
} & {
|
|
58294
|
+
type: z.ZodLiteral<"pcb_pad_trace_clearance_error">;
|
|
58295
|
+
pcb_pad_trace_clearance_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
58296
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_pad_trace_clearance_error">>;
|
|
58297
|
+
pcb_pad_id: z.ZodString;
|
|
58298
|
+
pcb_trace_id: z.ZodString;
|
|
58299
|
+
minimum_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58300
|
+
actual_clearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
58301
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
58302
|
+
x: z.ZodOptional<z.ZodNumber>;
|
|
58303
|
+
y: z.ZodOptional<z.ZodNumber>;
|
|
58304
|
+
}, "strip", z.ZodTypeAny, {
|
|
58305
|
+
x?: number | undefined;
|
|
58306
|
+
y?: number | undefined;
|
|
58307
|
+
}, {
|
|
58308
|
+
x?: number | undefined;
|
|
58309
|
+
y?: number | undefined;
|
|
58310
|
+
}>>;
|
|
58311
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
58312
|
+
}, "strip", z.ZodTypeAny, {
|
|
58313
|
+
message: string;
|
|
58314
|
+
type: "pcb_pad_trace_clearance_error";
|
|
58315
|
+
pcb_trace_id: string;
|
|
58316
|
+
error_type: "pcb_pad_trace_clearance_error";
|
|
58317
|
+
pcb_pad_trace_clearance_error_id: string;
|
|
58318
|
+
pcb_pad_id: string;
|
|
58319
|
+
center?: {
|
|
58320
|
+
x?: number | undefined;
|
|
58321
|
+
y?: number | undefined;
|
|
58322
|
+
} | undefined;
|
|
58323
|
+
subcircuit_id?: string | undefined;
|
|
58324
|
+
is_fatal?: boolean | undefined;
|
|
58325
|
+
minimum_clearance?: number | undefined;
|
|
58326
|
+
actual_clearance?: number | undefined;
|
|
58327
|
+
}, {
|
|
58328
|
+
message: string;
|
|
58329
|
+
type: "pcb_pad_trace_clearance_error";
|
|
58330
|
+
pcb_trace_id: string;
|
|
58331
|
+
pcb_pad_id: string;
|
|
58332
|
+
center?: {
|
|
58333
|
+
x?: number | undefined;
|
|
58334
|
+
y?: number | undefined;
|
|
58335
|
+
} | undefined;
|
|
58336
|
+
subcircuit_id?: string | undefined;
|
|
58337
|
+
error_type?: "pcb_pad_trace_clearance_error" | undefined;
|
|
58338
|
+
is_fatal?: boolean | undefined;
|
|
58339
|
+
minimum_clearance?: string | number | undefined;
|
|
58340
|
+
actual_clearance?: string | number | undefined;
|
|
58341
|
+
pcb_pad_trace_clearance_error_id?: string | undefined;
|
|
58004
58342
|
}>, z.ZodObject<{
|
|
58005
58343
|
type: z.ZodLiteral<"pcb_fabrication_note_path">;
|
|
58006
58344
|
pcb_fabrication_note_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -68238,4 +68576,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
68238
68576
|
*/
|
|
68239
68577
|
type CircuitJson = AnyCircuitElement[];
|
|
68240
68578
|
|
|
68241
|
-
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 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 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 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 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, 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 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, 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 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 SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, 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 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 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, 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_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_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_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_via, pcb_trace_route_point_wire, pcb_trace_warning, 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_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_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, 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_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_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_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_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, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
68579
|
+
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 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 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 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, 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 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, 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 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 SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, 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 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 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, 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_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_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_via, pcb_trace_route_point_wire, pcb_trace_warning, 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_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_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, 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_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_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_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_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, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|