circuit-json 0.0.444 → 0.0.446

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 CHANGED
@@ -27389,6 +27389,60 @@ interface SourceSimpleCurrentSource extends SourceComponentBase {
27389
27389
  duty_cycle?: number;
27390
27390
  }
27391
27391
 
27392
+ declare const source_simple_fuse: z.ZodObject<{
27393
+ type: z.ZodLiteral<"source_component">;
27394
+ source_component_id: z.ZodString;
27395
+ name: z.ZodString;
27396
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
27397
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
27398
+ display_value: z.ZodOptional<z.ZodString>;
27399
+ display_name: z.ZodOptional<z.ZodString>;
27400
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
27401
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
27402
+ source_group_id: z.ZodOptional<z.ZodString>;
27403
+ subcircuit_id: z.ZodOptional<z.ZodString>;
27404
+ } & {
27405
+ ftype: z.ZodLiteral<"simple_fuse">;
27406
+ current_rating_amps: z.ZodNumber;
27407
+ voltage_rating_volts: z.ZodNumber;
27408
+ }, "strip", z.ZodTypeAny, {
27409
+ type: "source_component";
27410
+ name: string;
27411
+ source_component_id: string;
27412
+ ftype: "simple_fuse";
27413
+ current_rating_amps: number;
27414
+ voltage_rating_volts: number;
27415
+ subcircuit_id?: string | undefined;
27416
+ source_group_id?: string | undefined;
27417
+ display_name?: string | undefined;
27418
+ manufacturer_part_number?: string | undefined;
27419
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27420
+ display_value?: string | undefined;
27421
+ are_pins_interchangeable?: boolean | undefined;
27422
+ internally_connected_source_port_ids?: string[][] | undefined;
27423
+ }, {
27424
+ type: "source_component";
27425
+ name: string;
27426
+ source_component_id: string;
27427
+ ftype: "simple_fuse";
27428
+ current_rating_amps: number;
27429
+ voltage_rating_volts: number;
27430
+ subcircuit_id?: string | undefined;
27431
+ source_group_id?: string | undefined;
27432
+ display_name?: string | undefined;
27433
+ manufacturer_part_number?: string | undefined;
27434
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27435
+ display_value?: string | undefined;
27436
+ are_pins_interchangeable?: boolean | undefined;
27437
+ internally_connected_source_port_ids?: string[][] | undefined;
27438
+ }>;
27439
+ interface SourceSimpleFuse extends SourceComponentBase {
27440
+ ftype: "simple_fuse";
27441
+ current_rating_amps: number;
27442
+ voltage_rating_volts: number;
27443
+ }
27444
+ type SourceSimpleFuseInput = z.input<typeof source_simple_fuse>;
27445
+
27392
27446
  declare const source_simple_ammeter: z.ZodObject<{
27393
27447
  type: z.ZodLiteral<"source_component">;
27394
27448
  source_component_id: z.ZodString;
@@ -27593,12 +27647,6 @@ interface SourcePinAttributes {
27593
27647
  supports_uart_rx?: boolean;
27594
27648
  }
27595
27649
 
27596
- interface SourceSimpleFuse extends SourceComponentBase {
27597
- ftype: "simple_fuse";
27598
- current_rating_amps: number;
27599
- voltage_rating_volts: number;
27600
- }
27601
-
27602
27650
  declare const source_simple_battery: z.ZodObject<{
27603
27651
  type: z.ZodLiteral<"source_component">;
27604
27652
  source_component_id: z.ZodString;
@@ -28755,6 +28803,57 @@ interface SourceMissingManufacturerPartNumberWarning {
28755
28803
  subcircuit_id?: string;
28756
28804
  }
28757
28805
 
28806
+ declare const source_refdes_convention_warning: z.ZodObject<{
28807
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
28808
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28809
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
28810
+ message: z.ZodString;
28811
+ source_component_id: z.ZodString;
28812
+ refdes: z.ZodString;
28813
+ source_component_ftype: z.ZodString;
28814
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
28815
+ actual_prefix: z.ZodOptional<z.ZodString>;
28816
+ subcircuit_id: z.ZodOptional<z.ZodString>;
28817
+ }, "strip", z.ZodTypeAny, {
28818
+ message: string;
28819
+ type: "source_refdes_convention_warning";
28820
+ source_component_id: string;
28821
+ warning_type: "source_refdes_convention_warning";
28822
+ source_refdes_convention_warning_id: string;
28823
+ refdes: string;
28824
+ source_component_ftype: string;
28825
+ expected_prefixes: string[];
28826
+ subcircuit_id?: string | undefined;
28827
+ actual_prefix?: string | undefined;
28828
+ }, {
28829
+ message: string;
28830
+ type: "source_refdes_convention_warning";
28831
+ source_component_id: string;
28832
+ refdes: string;
28833
+ source_component_ftype: string;
28834
+ expected_prefixes: string[];
28835
+ subcircuit_id?: string | undefined;
28836
+ warning_type?: "source_refdes_convention_warning" | undefined;
28837
+ source_refdes_convention_warning_id?: string | undefined;
28838
+ actual_prefix?: string | undefined;
28839
+ }>;
28840
+ type SourceRefdesConventionWarningInput = z.input<typeof source_refdes_convention_warning>;
28841
+ /**
28842
+ * Warning emitted when a source component reference designator does not match the component type convention
28843
+ */
28844
+ interface SourceRefdesConventionWarning {
28845
+ type: "source_refdes_convention_warning";
28846
+ source_refdes_convention_warning_id: string;
28847
+ warning_type: "source_refdes_convention_warning";
28848
+ message: string;
28849
+ source_component_id: string;
28850
+ refdes: string;
28851
+ source_component_ftype: string;
28852
+ expected_prefixes: string[];
28853
+ actual_prefix?: string;
28854
+ subcircuit_id?: string;
28855
+ }
28856
+
28758
28857
  declare const source_simple_voltage_probe: z.ZodObject<{
28759
28858
  type: z.ZodLiteral<"source_component">;
28760
28859
  source_component_id: z.ZodString;
@@ -30544,6 +30643,39 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30544
30643
  subcircuit_id?: string | undefined;
30545
30644
  warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
30546
30645
  source_missing_manufacturer_part_number_warning_id?: string | undefined;
30646
+ }>, z.ZodObject<{
30647
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
30648
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
30649
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
30650
+ message: z.ZodString;
30651
+ source_component_id: z.ZodString;
30652
+ refdes: z.ZodString;
30653
+ source_component_ftype: z.ZodString;
30654
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
30655
+ actual_prefix: z.ZodOptional<z.ZodString>;
30656
+ subcircuit_id: z.ZodOptional<z.ZodString>;
30657
+ }, "strip", z.ZodTypeAny, {
30658
+ message: string;
30659
+ type: "source_refdes_convention_warning";
30660
+ source_component_id: string;
30661
+ warning_type: "source_refdes_convention_warning";
30662
+ source_refdes_convention_warning_id: string;
30663
+ refdes: string;
30664
+ source_component_ftype: string;
30665
+ expected_prefixes: string[];
30666
+ subcircuit_id?: string | undefined;
30667
+ actual_prefix?: string | undefined;
30668
+ }, {
30669
+ message: string;
30670
+ type: "source_refdes_convention_warning";
30671
+ source_component_id: string;
30672
+ refdes: string;
30673
+ source_component_ftype: string;
30674
+ expected_prefixes: string[];
30675
+ subcircuit_id?: string | undefined;
30676
+ warning_type?: "source_refdes_convention_warning" | undefined;
30677
+ source_refdes_convention_warning_id?: string | undefined;
30678
+ actual_prefix?: string | undefined;
30547
30679
  }>, z.ZodObject<{
30548
30680
  message: z.ZodString;
30549
30681
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -30596,7 +30728,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30596
30728
  * Deprecated: use `AnySourceElement` instead
30597
30729
  */
30598
30730
  type AnySourceComponent = z.infer<typeof any_source_component>;
30599
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30731
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceRefdesConventionWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30600
30732
 
30601
30733
  declare const source_port: z.ZodObject<{
30602
30734
  type: z.ZodLiteral<"source_port">;
@@ -35922,6 +36054,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35922
36054
  subcircuit_id?: string | undefined;
35923
36055
  warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
35924
36056
  source_missing_manufacturer_part_number_warning_id?: string | undefined;
36057
+ }>, z.ZodObject<{
36058
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
36059
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
36060
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
36061
+ message: z.ZodString;
36062
+ source_component_id: z.ZodString;
36063
+ refdes: z.ZodString;
36064
+ source_component_ftype: z.ZodString;
36065
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
36066
+ actual_prefix: z.ZodOptional<z.ZodString>;
36067
+ subcircuit_id: z.ZodOptional<z.ZodString>;
36068
+ }, "strip", z.ZodTypeAny, {
36069
+ message: string;
36070
+ type: "source_refdes_convention_warning";
36071
+ source_component_id: string;
36072
+ warning_type: "source_refdes_convention_warning";
36073
+ source_refdes_convention_warning_id: string;
36074
+ refdes: string;
36075
+ source_component_ftype: string;
36076
+ expected_prefixes: string[];
36077
+ subcircuit_id?: string | undefined;
36078
+ actual_prefix?: string | undefined;
36079
+ }, {
36080
+ message: string;
36081
+ type: "source_refdes_convention_warning";
36082
+ source_component_id: string;
36083
+ refdes: string;
36084
+ source_component_ftype: string;
36085
+ expected_prefixes: string[];
36086
+ subcircuit_id?: string | undefined;
36087
+ warning_type?: "source_refdes_convention_warning" | undefined;
36088
+ source_refdes_convention_warning_id?: string | undefined;
36089
+ actual_prefix?: string | undefined;
35925
36090
  }>, z.ZodObject<{
35926
36091
  message: z.ZodString;
35927
36092
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -37054,6 +37219,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37054
37219
  subcircuit_id?: string | undefined;
37055
37220
  warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
37056
37221
  source_missing_manufacturer_part_number_warning_id?: string | undefined;
37222
+ }>, z.ZodObject<{
37223
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
37224
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
37225
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
37226
+ message: z.ZodString;
37227
+ source_component_id: z.ZodString;
37228
+ refdes: z.ZodString;
37229
+ source_component_ftype: z.ZodString;
37230
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
37231
+ actual_prefix: z.ZodOptional<z.ZodString>;
37232
+ subcircuit_id: z.ZodOptional<z.ZodString>;
37233
+ }, "strip", z.ZodTypeAny, {
37234
+ message: string;
37235
+ type: "source_refdes_convention_warning";
37236
+ source_component_id: string;
37237
+ warning_type: "source_refdes_convention_warning";
37238
+ source_refdes_convention_warning_id: string;
37239
+ refdes: string;
37240
+ source_component_ftype: string;
37241
+ expected_prefixes: string[];
37242
+ subcircuit_id?: string | undefined;
37243
+ actual_prefix?: string | undefined;
37244
+ }, {
37245
+ message: string;
37246
+ type: "source_refdes_convention_warning";
37247
+ source_component_id: string;
37248
+ refdes: string;
37249
+ source_component_ftype: string;
37250
+ expected_prefixes: string[];
37251
+ subcircuit_id?: string | undefined;
37252
+ warning_type?: "source_refdes_convention_warning" | undefined;
37253
+ source_refdes_convention_warning_id?: string | undefined;
37254
+ actual_prefix?: string | undefined;
37057
37255
  }>, z.ZodObject<{
37058
37256
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
37059
37257
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -54842,6 +55040,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54842
55040
  subcircuit_id?: string | undefined;
54843
55041
  warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
54844
55042
  source_missing_manufacturer_part_number_warning_id?: string | undefined;
55043
+ }>, z.ZodObject<{
55044
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
55045
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
55046
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
55047
+ message: z.ZodString;
55048
+ source_component_id: z.ZodString;
55049
+ refdes: z.ZodString;
55050
+ source_component_ftype: z.ZodString;
55051
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
55052
+ actual_prefix: z.ZodOptional<z.ZodString>;
55053
+ subcircuit_id: z.ZodOptional<z.ZodString>;
55054
+ }, "strip", z.ZodTypeAny, {
55055
+ message: string;
55056
+ type: "source_refdes_convention_warning";
55057
+ source_component_id: string;
55058
+ warning_type: "source_refdes_convention_warning";
55059
+ source_refdes_convention_warning_id: string;
55060
+ refdes: string;
55061
+ source_component_ftype: string;
55062
+ expected_prefixes: string[];
55063
+ subcircuit_id?: string | undefined;
55064
+ actual_prefix?: string | undefined;
55065
+ }, {
55066
+ message: string;
55067
+ type: "source_refdes_convention_warning";
55068
+ source_component_id: string;
55069
+ refdes: string;
55070
+ source_component_ftype: string;
55071
+ expected_prefixes: string[];
55072
+ subcircuit_id?: string | undefined;
55073
+ warning_type?: "source_refdes_convention_warning" | undefined;
55074
+ source_refdes_convention_warning_id?: string | undefined;
55075
+ actual_prefix?: string | undefined;
54845
55076
  }>, z.ZodObject<{
54846
55077
  message: z.ZodString;
54847
55078
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -55974,6 +56205,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55974
56205
  subcircuit_id?: string | undefined;
55975
56206
  warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
55976
56207
  source_missing_manufacturer_part_number_warning_id?: string | undefined;
56208
+ }>, z.ZodObject<{
56209
+ type: z.ZodLiteral<"source_refdes_convention_warning">;
56210
+ source_refdes_convention_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
56211
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_refdes_convention_warning">>;
56212
+ message: z.ZodString;
56213
+ source_component_id: z.ZodString;
56214
+ refdes: z.ZodString;
56215
+ source_component_ftype: z.ZodString;
56216
+ expected_prefixes: z.ZodArray<z.ZodString, "many">;
56217
+ actual_prefix: z.ZodOptional<z.ZodString>;
56218
+ subcircuit_id: z.ZodOptional<z.ZodString>;
56219
+ }, "strip", z.ZodTypeAny, {
56220
+ message: string;
56221
+ type: "source_refdes_convention_warning";
56222
+ source_component_id: string;
56223
+ warning_type: "source_refdes_convention_warning";
56224
+ source_refdes_convention_warning_id: string;
56225
+ refdes: string;
56226
+ source_component_ftype: string;
56227
+ expected_prefixes: string[];
56228
+ subcircuit_id?: string | undefined;
56229
+ actual_prefix?: string | undefined;
56230
+ }, {
56231
+ message: string;
56232
+ type: "source_refdes_convention_warning";
56233
+ source_component_id: string;
56234
+ refdes: string;
56235
+ source_component_ftype: string;
56236
+ expected_prefixes: string[];
56237
+ subcircuit_id?: string | undefined;
56238
+ warning_type?: "source_refdes_convention_warning" | undefined;
56239
+ source_refdes_convention_warning_id?: string | undefined;
56240
+ actual_prefix?: string | undefined;
55977
56241
  }>, z.ZodObject<{
55978
56242
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
55979
56243
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -72053,4 +72317,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
72053
72317
  */
72054
72318
  type CircuitJson = AnyCircuitElement[];
72055
72319
 
72056
- 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 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 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_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_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 };
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 };