circuit-json 0.0.432 → 0.0.433

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
@@ -8813,6 +8813,358 @@ interface PcbSilkscreenOval {
8813
8813
  */
8814
8814
  type PcbSilkscreenOvalDeprecated = PcbSilkscreenOval;
8815
8815
 
8816
+ declare const pcb_silkscreen_graphic_brep: z.ZodObject<{
8817
+ type: z.ZodLiteral<"pcb_silkscreen_graphic">;
8818
+ pcb_silkscreen_graphic_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8819
+ pcb_component_id: z.ZodString;
8820
+ pcb_group_id: z.ZodOptional<z.ZodString>;
8821
+ subcircuit_id: z.ZodOptional<z.ZodString>;
8822
+ layer: z.ZodEnum<["top", "bottom"]>;
8823
+ image_asset: z.ZodOptional<z.ZodObject<{
8824
+ project_relative_path: z.ZodString;
8825
+ url: z.ZodString;
8826
+ mimetype: z.ZodString;
8827
+ }, "strip", z.ZodTypeAny, {
8828
+ project_relative_path: string;
8829
+ url: string;
8830
+ mimetype: string;
8831
+ }, {
8832
+ project_relative_path: string;
8833
+ url: string;
8834
+ mimetype: string;
8835
+ }>>;
8836
+ } & {
8837
+ shape: z.ZodLiteral<"brep">;
8838
+ brep_shape: z.ZodObject<{
8839
+ outer_ring: z.ZodObject<{
8840
+ vertices: z.ZodArray<z.ZodObject<{
8841
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8842
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8843
+ bulge: z.ZodOptional<z.ZodNumber>;
8844
+ }, "strip", z.ZodTypeAny, {
8845
+ x: number;
8846
+ y: number;
8847
+ bulge?: number | undefined;
8848
+ }, {
8849
+ x: string | number;
8850
+ y: string | number;
8851
+ bulge?: number | undefined;
8852
+ }>, "many">;
8853
+ }, "strip", z.ZodTypeAny, {
8854
+ vertices: {
8855
+ x: number;
8856
+ y: number;
8857
+ bulge?: number | undefined;
8858
+ }[];
8859
+ }, {
8860
+ vertices: {
8861
+ x: string | number;
8862
+ y: string | number;
8863
+ bulge?: number | undefined;
8864
+ }[];
8865
+ }>;
8866
+ inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
8867
+ vertices: z.ZodArray<z.ZodObject<{
8868
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8869
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8870
+ bulge: z.ZodOptional<z.ZodNumber>;
8871
+ }, "strip", z.ZodTypeAny, {
8872
+ x: number;
8873
+ y: number;
8874
+ bulge?: number | undefined;
8875
+ }, {
8876
+ x: string | number;
8877
+ y: string | number;
8878
+ bulge?: number | undefined;
8879
+ }>, "many">;
8880
+ }, "strip", z.ZodTypeAny, {
8881
+ vertices: {
8882
+ x: number;
8883
+ y: number;
8884
+ bulge?: number | undefined;
8885
+ }[];
8886
+ }, {
8887
+ vertices: {
8888
+ x: string | number;
8889
+ y: string | number;
8890
+ bulge?: number | undefined;
8891
+ }[];
8892
+ }>, "many">>;
8893
+ }, "strip", z.ZodTypeAny, {
8894
+ outer_ring: {
8895
+ vertices: {
8896
+ x: number;
8897
+ y: number;
8898
+ bulge?: number | undefined;
8899
+ }[];
8900
+ };
8901
+ inner_rings: {
8902
+ vertices: {
8903
+ x: number;
8904
+ y: number;
8905
+ bulge?: number | undefined;
8906
+ }[];
8907
+ }[];
8908
+ }, {
8909
+ outer_ring: {
8910
+ vertices: {
8911
+ x: string | number;
8912
+ y: string | number;
8913
+ bulge?: number | undefined;
8914
+ }[];
8915
+ };
8916
+ inner_rings?: {
8917
+ vertices: {
8918
+ x: string | number;
8919
+ y: string | number;
8920
+ bulge?: number | undefined;
8921
+ }[];
8922
+ }[] | undefined;
8923
+ }>;
8924
+ }, "strip", z.ZodTypeAny, {
8925
+ type: "pcb_silkscreen_graphic";
8926
+ layer: "top" | "bottom";
8927
+ shape: "brep";
8928
+ pcb_component_id: string;
8929
+ pcb_silkscreen_graphic_id: string;
8930
+ brep_shape: {
8931
+ outer_ring: {
8932
+ vertices: {
8933
+ x: number;
8934
+ y: number;
8935
+ bulge?: number | undefined;
8936
+ }[];
8937
+ };
8938
+ inner_rings: {
8939
+ vertices: {
8940
+ x: number;
8941
+ y: number;
8942
+ bulge?: number | undefined;
8943
+ }[];
8944
+ }[];
8945
+ };
8946
+ subcircuit_id?: string | undefined;
8947
+ pcb_group_id?: string | undefined;
8948
+ image_asset?: {
8949
+ project_relative_path: string;
8950
+ url: string;
8951
+ mimetype: string;
8952
+ } | undefined;
8953
+ }, {
8954
+ type: "pcb_silkscreen_graphic";
8955
+ layer: "top" | "bottom";
8956
+ shape: "brep";
8957
+ pcb_component_id: string;
8958
+ brep_shape: {
8959
+ outer_ring: {
8960
+ vertices: {
8961
+ x: string | number;
8962
+ y: string | number;
8963
+ bulge?: number | undefined;
8964
+ }[];
8965
+ };
8966
+ inner_rings?: {
8967
+ vertices: {
8968
+ x: string | number;
8969
+ y: string | number;
8970
+ bulge?: number | undefined;
8971
+ }[];
8972
+ }[] | undefined;
8973
+ };
8974
+ subcircuit_id?: string | undefined;
8975
+ pcb_group_id?: string | undefined;
8976
+ pcb_silkscreen_graphic_id?: string | undefined;
8977
+ image_asset?: {
8978
+ project_relative_path: string;
8979
+ url: string;
8980
+ mimetype: string;
8981
+ } | undefined;
8982
+ }>;
8983
+ type PcbSilkscreenGraphicBRepInput = z.input<typeof pcb_silkscreen_graphic_brep>;
8984
+ /**
8985
+ * Defines a BRep silkscreen graphic on the PCB
8986
+ */
8987
+ interface PcbSilkscreenGraphicBRep {
8988
+ type: "pcb_silkscreen_graphic";
8989
+ pcb_silkscreen_graphic_id: string;
8990
+ pcb_component_id: string;
8991
+ pcb_group_id?: string;
8992
+ subcircuit_id?: string;
8993
+ layer: VisibleLayer;
8994
+ image_asset?: Asset;
8995
+ shape: "brep";
8996
+ brep_shape: BRepShape;
8997
+ }
8998
+ declare const pcb_silkscreen_graphic: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
8999
+ type: z.ZodLiteral<"pcb_silkscreen_graphic">;
9000
+ pcb_silkscreen_graphic_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9001
+ pcb_component_id: z.ZodString;
9002
+ pcb_group_id: z.ZodOptional<z.ZodString>;
9003
+ subcircuit_id: z.ZodOptional<z.ZodString>;
9004
+ layer: z.ZodEnum<["top", "bottom"]>;
9005
+ image_asset: z.ZodOptional<z.ZodObject<{
9006
+ project_relative_path: z.ZodString;
9007
+ url: z.ZodString;
9008
+ mimetype: z.ZodString;
9009
+ }, "strip", z.ZodTypeAny, {
9010
+ project_relative_path: string;
9011
+ url: string;
9012
+ mimetype: string;
9013
+ }, {
9014
+ project_relative_path: string;
9015
+ url: string;
9016
+ mimetype: string;
9017
+ }>>;
9018
+ } & {
9019
+ shape: z.ZodLiteral<"brep">;
9020
+ brep_shape: z.ZodObject<{
9021
+ outer_ring: z.ZodObject<{
9022
+ vertices: z.ZodArray<z.ZodObject<{
9023
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9024
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9025
+ bulge: z.ZodOptional<z.ZodNumber>;
9026
+ }, "strip", z.ZodTypeAny, {
9027
+ x: number;
9028
+ y: number;
9029
+ bulge?: number | undefined;
9030
+ }, {
9031
+ x: string | number;
9032
+ y: string | number;
9033
+ bulge?: number | undefined;
9034
+ }>, "many">;
9035
+ }, "strip", z.ZodTypeAny, {
9036
+ vertices: {
9037
+ x: number;
9038
+ y: number;
9039
+ bulge?: number | undefined;
9040
+ }[];
9041
+ }, {
9042
+ vertices: {
9043
+ x: string | number;
9044
+ y: string | number;
9045
+ bulge?: number | undefined;
9046
+ }[];
9047
+ }>;
9048
+ inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
9049
+ vertices: z.ZodArray<z.ZodObject<{
9050
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9051
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9052
+ bulge: z.ZodOptional<z.ZodNumber>;
9053
+ }, "strip", z.ZodTypeAny, {
9054
+ x: number;
9055
+ y: number;
9056
+ bulge?: number | undefined;
9057
+ }, {
9058
+ x: string | number;
9059
+ y: string | number;
9060
+ bulge?: number | undefined;
9061
+ }>, "many">;
9062
+ }, "strip", z.ZodTypeAny, {
9063
+ vertices: {
9064
+ x: number;
9065
+ y: number;
9066
+ bulge?: number | undefined;
9067
+ }[];
9068
+ }, {
9069
+ vertices: {
9070
+ x: string | number;
9071
+ y: string | number;
9072
+ bulge?: number | undefined;
9073
+ }[];
9074
+ }>, "many">>;
9075
+ }, "strip", z.ZodTypeAny, {
9076
+ outer_ring: {
9077
+ vertices: {
9078
+ x: number;
9079
+ y: number;
9080
+ bulge?: number | undefined;
9081
+ }[];
9082
+ };
9083
+ inner_rings: {
9084
+ vertices: {
9085
+ x: number;
9086
+ y: number;
9087
+ bulge?: number | undefined;
9088
+ }[];
9089
+ }[];
9090
+ }, {
9091
+ outer_ring: {
9092
+ vertices: {
9093
+ x: string | number;
9094
+ y: string | number;
9095
+ bulge?: number | undefined;
9096
+ }[];
9097
+ };
9098
+ inner_rings?: {
9099
+ vertices: {
9100
+ x: string | number;
9101
+ y: string | number;
9102
+ bulge?: number | undefined;
9103
+ }[];
9104
+ }[] | undefined;
9105
+ }>;
9106
+ }, "strip", z.ZodTypeAny, {
9107
+ type: "pcb_silkscreen_graphic";
9108
+ layer: "top" | "bottom";
9109
+ shape: "brep";
9110
+ pcb_component_id: string;
9111
+ pcb_silkscreen_graphic_id: string;
9112
+ brep_shape: {
9113
+ outer_ring: {
9114
+ vertices: {
9115
+ x: number;
9116
+ y: number;
9117
+ bulge?: number | undefined;
9118
+ }[];
9119
+ };
9120
+ inner_rings: {
9121
+ vertices: {
9122
+ x: number;
9123
+ y: number;
9124
+ bulge?: number | undefined;
9125
+ }[];
9126
+ }[];
9127
+ };
9128
+ subcircuit_id?: string | undefined;
9129
+ pcb_group_id?: string | undefined;
9130
+ image_asset?: {
9131
+ project_relative_path: string;
9132
+ url: string;
9133
+ mimetype: string;
9134
+ } | undefined;
9135
+ }, {
9136
+ type: "pcb_silkscreen_graphic";
9137
+ layer: "top" | "bottom";
9138
+ shape: "brep";
9139
+ pcb_component_id: string;
9140
+ brep_shape: {
9141
+ outer_ring: {
9142
+ vertices: {
9143
+ x: string | number;
9144
+ y: string | number;
9145
+ bulge?: number | undefined;
9146
+ }[];
9147
+ };
9148
+ inner_rings?: {
9149
+ vertices: {
9150
+ x: string | number;
9151
+ y: string | number;
9152
+ bulge?: number | undefined;
9153
+ }[];
9154
+ }[] | undefined;
9155
+ };
9156
+ subcircuit_id?: string | undefined;
9157
+ pcb_group_id?: string | undefined;
9158
+ pcb_silkscreen_graphic_id?: string | undefined;
9159
+ image_asset?: {
9160
+ project_relative_path: string;
9161
+ url: string;
9162
+ mimetype: string;
9163
+ } | undefined;
9164
+ }>]>;
9165
+ type PcbSilkscreenGraphicInput = z.input<typeof pcb_silkscreen_graphic>;
9166
+ type PcbSilkscreenGraphic = PcbSilkscreenGraphicBRep;
9167
+
8816
9168
  declare const pcb_silkscreen_pill: z.ZodObject<{
8817
9169
  type: z.ZodLiteral<"pcb_silkscreen_pill">;
8818
9170
  pcb_silkscreen_pill_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -11258,7 +11610,6 @@ declare const pcb_copper_pour_brep: z.ZodObject<{
11258
11610
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
11259
11611
  shape: "brep";
11260
11612
  covered_with_solder_mask: boolean;
11261
- pcb_copper_pour_id: string;
11262
11613
  brep_shape: {
11263
11614
  outer_ring: {
11264
11615
  vertices: {
@@ -11275,6 +11626,7 @@ declare const pcb_copper_pour_brep: z.ZodObject<{
11275
11626
  }[];
11276
11627
  }[];
11277
11628
  };
11629
+ pcb_copper_pour_id: string;
11278
11630
  subcircuit_id?: string | undefined;
11279
11631
  pcb_group_id?: string | undefined;
11280
11632
  source_net_id?: string | undefined;
@@ -11568,7 +11920,6 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
11568
11920
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
11569
11921
  shape: "brep";
11570
11922
  covered_with_solder_mask: boolean;
11571
- pcb_copper_pour_id: string;
11572
11923
  brep_shape: {
11573
11924
  outer_ring: {
11574
11925
  vertices: {
@@ -11585,6 +11936,7 @@ declare const pcb_copper_pour: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
11585
11936
  }[];
11586
11937
  }[];
11587
11938
  };
11939
+ pcb_copper_pour_id: string;
11588
11940
  subcircuit_id?: string | undefined;
11589
11941
  pcb_group_id?: string | undefined;
11590
11942
  source_net_id?: string | undefined;
@@ -12491,7 +12843,7 @@ interface PcbCourtyardPill {
12491
12843
  color?: string;
12492
12844
  }
12493
12845
 
12494
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
12846
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | SupplierFootprintMismatchWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbSilkscreenGraphic | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbViaTraceClearanceError | PcbPadPadClearanceError | PcbPadTraceClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle | PcbCourtyardPill;
12495
12847
 
12496
12848
  interface SchematicBox {
12497
12849
  type: "schematic_box";
@@ -30420,12 +30772,12 @@ declare const asset: z.ZodObject<{
30420
30772
  url: z.ZodString;
30421
30773
  mimetype: z.ZodString;
30422
30774
  }, "strip", z.ZodTypeAny, {
30423
- url: string;
30424
30775
  project_relative_path: string;
30776
+ url: string;
30425
30777
  mimetype: string;
30426
30778
  }, {
30427
- url: string;
30428
30779
  project_relative_path: string;
30780
+ url: string;
30429
30781
  mimetype: string;
30430
30782
  }>;
30431
30783
  type AssetInput = z.input<typeof asset>;
@@ -33097,12 +33449,12 @@ declare const cad_component: z.ZodObject<{
33097
33449
  url: z.ZodString;
33098
33450
  mimetype: z.ZodString;
33099
33451
  }, "strip", z.ZodTypeAny, {
33100
- url: string;
33101
33452
  project_relative_path: string;
33453
+ url: string;
33102
33454
  mimetype: string;
33103
33455
  }, {
33104
- url: string;
33105
33456
  project_relative_path: string;
33457
+ url: string;
33106
33458
  mimetype: string;
33107
33459
  }>>;
33108
33460
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
@@ -33159,8 +33511,8 @@ declare const cad_component: z.ZodObject<{
33159
33511
  model_step_url?: string | undefined;
33160
33512
  model_wrl_url?: string | undefined;
33161
33513
  model_asset?: {
33162
- url: string;
33163
33514
  project_relative_path: string;
33515
+ url: string;
33164
33516
  mimetype: string;
33165
33517
  } | undefined;
33166
33518
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -33208,8 +33560,8 @@ declare const cad_component: z.ZodObject<{
33208
33560
  model_step_url?: string | undefined;
33209
33561
  model_wrl_url?: string | undefined;
33210
33562
  model_asset?: {
33211
- url: string;
33212
33563
  project_relative_path: string;
33564
+ url: string;
33213
33565
  mimetype: string;
33214
33566
  } | undefined;
33215
33567
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -40924,7 +41276,173 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40924
41276
  pcb_group_id?: string | undefined;
40925
41277
  ccw_rotation?: string | number | undefined;
40926
41278
  pcb_silkscreen_oval_id?: string | undefined;
40927
- }>, z.ZodObject<{
41279
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
41280
+ type: z.ZodLiteral<"pcb_silkscreen_graphic">;
41281
+ pcb_silkscreen_graphic_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
41282
+ pcb_component_id: z.ZodString;
41283
+ pcb_group_id: z.ZodOptional<z.ZodString>;
41284
+ subcircuit_id: z.ZodOptional<z.ZodString>;
41285
+ layer: z.ZodEnum<["top", "bottom"]>;
41286
+ image_asset: z.ZodOptional<z.ZodObject<{
41287
+ project_relative_path: z.ZodString;
41288
+ url: z.ZodString;
41289
+ mimetype: z.ZodString;
41290
+ }, "strip", z.ZodTypeAny, {
41291
+ project_relative_path: string;
41292
+ url: string;
41293
+ mimetype: string;
41294
+ }, {
41295
+ project_relative_path: string;
41296
+ url: string;
41297
+ mimetype: string;
41298
+ }>>;
41299
+ } & {
41300
+ shape: z.ZodLiteral<"brep">;
41301
+ brep_shape: z.ZodObject<{
41302
+ outer_ring: z.ZodObject<{
41303
+ vertices: z.ZodArray<z.ZodObject<{
41304
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
41305
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
41306
+ bulge: z.ZodOptional<z.ZodNumber>;
41307
+ }, "strip", z.ZodTypeAny, {
41308
+ x: number;
41309
+ y: number;
41310
+ bulge?: number | undefined;
41311
+ }, {
41312
+ x: string | number;
41313
+ y: string | number;
41314
+ bulge?: number | undefined;
41315
+ }>, "many">;
41316
+ }, "strip", z.ZodTypeAny, {
41317
+ vertices: {
41318
+ x: number;
41319
+ y: number;
41320
+ bulge?: number | undefined;
41321
+ }[];
41322
+ }, {
41323
+ vertices: {
41324
+ x: string | number;
41325
+ y: string | number;
41326
+ bulge?: number | undefined;
41327
+ }[];
41328
+ }>;
41329
+ inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
41330
+ vertices: z.ZodArray<z.ZodObject<{
41331
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
41332
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
41333
+ bulge: z.ZodOptional<z.ZodNumber>;
41334
+ }, "strip", z.ZodTypeAny, {
41335
+ x: number;
41336
+ y: number;
41337
+ bulge?: number | undefined;
41338
+ }, {
41339
+ x: string | number;
41340
+ y: string | number;
41341
+ bulge?: number | undefined;
41342
+ }>, "many">;
41343
+ }, "strip", z.ZodTypeAny, {
41344
+ vertices: {
41345
+ x: number;
41346
+ y: number;
41347
+ bulge?: number | undefined;
41348
+ }[];
41349
+ }, {
41350
+ vertices: {
41351
+ x: string | number;
41352
+ y: string | number;
41353
+ bulge?: number | undefined;
41354
+ }[];
41355
+ }>, "many">>;
41356
+ }, "strip", z.ZodTypeAny, {
41357
+ outer_ring: {
41358
+ vertices: {
41359
+ x: number;
41360
+ y: number;
41361
+ bulge?: number | undefined;
41362
+ }[];
41363
+ };
41364
+ inner_rings: {
41365
+ vertices: {
41366
+ x: number;
41367
+ y: number;
41368
+ bulge?: number | undefined;
41369
+ }[];
41370
+ }[];
41371
+ }, {
41372
+ outer_ring: {
41373
+ vertices: {
41374
+ x: string | number;
41375
+ y: string | number;
41376
+ bulge?: number | undefined;
41377
+ }[];
41378
+ };
41379
+ inner_rings?: {
41380
+ vertices: {
41381
+ x: string | number;
41382
+ y: string | number;
41383
+ bulge?: number | undefined;
41384
+ }[];
41385
+ }[] | undefined;
41386
+ }>;
41387
+ }, "strip", z.ZodTypeAny, {
41388
+ type: "pcb_silkscreen_graphic";
41389
+ layer: "top" | "bottom";
41390
+ shape: "brep";
41391
+ pcb_component_id: string;
41392
+ pcb_silkscreen_graphic_id: string;
41393
+ brep_shape: {
41394
+ outer_ring: {
41395
+ vertices: {
41396
+ x: number;
41397
+ y: number;
41398
+ bulge?: number | undefined;
41399
+ }[];
41400
+ };
41401
+ inner_rings: {
41402
+ vertices: {
41403
+ x: number;
41404
+ y: number;
41405
+ bulge?: number | undefined;
41406
+ }[];
41407
+ }[];
41408
+ };
41409
+ subcircuit_id?: string | undefined;
41410
+ pcb_group_id?: string | undefined;
41411
+ image_asset?: {
41412
+ project_relative_path: string;
41413
+ url: string;
41414
+ mimetype: string;
41415
+ } | undefined;
41416
+ }, {
41417
+ type: "pcb_silkscreen_graphic";
41418
+ layer: "top" | "bottom";
41419
+ shape: "brep";
41420
+ pcb_component_id: string;
41421
+ brep_shape: {
41422
+ outer_ring: {
41423
+ vertices: {
41424
+ x: string | number;
41425
+ y: string | number;
41426
+ bulge?: number | undefined;
41427
+ }[];
41428
+ };
41429
+ inner_rings?: {
41430
+ vertices: {
41431
+ x: string | number;
41432
+ y: string | number;
41433
+ bulge?: number | undefined;
41434
+ }[];
41435
+ }[] | undefined;
41436
+ };
41437
+ subcircuit_id?: string | undefined;
41438
+ pcb_group_id?: string | undefined;
41439
+ pcb_silkscreen_graphic_id?: string | undefined;
41440
+ image_asset?: {
41441
+ project_relative_path: string;
41442
+ url: string;
41443
+ mimetype: string;
41444
+ } | undefined;
41445
+ }>]>, z.ZodObject<{
40928
41446
  message: z.ZodString;
40929
41447
  is_fatal: z.ZodOptional<z.ZodBoolean>;
40930
41448
  } & {
@@ -42509,7 +43027,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
42509
43027
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
42510
43028
  shape: "brep";
42511
43029
  covered_with_solder_mask: boolean;
42512
- pcb_copper_pour_id: string;
42513
43030
  brep_shape: {
42514
43031
  outer_ring: {
42515
43032
  vertices: {
@@ -42526,6 +43043,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
42526
43043
  }[];
42527
43044
  }[];
42528
43045
  };
43046
+ pcb_copper_pour_id: string;
42529
43047
  subcircuit_id?: string | undefined;
42530
43048
  pcb_group_id?: string | undefined;
42531
43049
  source_net_id?: string | undefined;
@@ -51166,12 +51684,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
51166
51684
  url: z.ZodString;
51167
51685
  mimetype: z.ZodString;
51168
51686
  }, "strip", z.ZodTypeAny, {
51169
- url: string;
51170
51687
  project_relative_path: string;
51688
+ url: string;
51171
51689
  mimetype: string;
51172
51690
  }, {
51173
- url: string;
51174
51691
  project_relative_path: string;
51692
+ url: string;
51175
51693
  mimetype: string;
51176
51694
  }>>;
51177
51695
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
@@ -51228,8 +51746,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
51228
51746
  model_step_url?: string | undefined;
51229
51747
  model_wrl_url?: string | undefined;
51230
51748
  model_asset?: {
51231
- url: string;
51232
51749
  project_relative_path: string;
51750
+ url: string;
51233
51751
  mimetype: string;
51234
51752
  } | undefined;
51235
51753
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -51277,8 +51795,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
51277
51795
  model_step_url?: string | undefined;
51278
51796
  model_wrl_url?: string | undefined;
51279
51797
  model_asset?: {
51280
- url: string;
51281
51798
  project_relative_path: string;
51799
+ url: string;
51282
51800
  mimetype: string;
51283
51801
  } | undefined;
51284
51802
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -59313,7 +59831,173 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
59313
59831
  pcb_group_id?: string | undefined;
59314
59832
  ccw_rotation?: string | number | undefined;
59315
59833
  pcb_silkscreen_oval_id?: string | undefined;
59316
- }>, z.ZodObject<{
59834
+ }>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
59835
+ type: z.ZodLiteral<"pcb_silkscreen_graphic">;
59836
+ pcb_silkscreen_graphic_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
59837
+ pcb_component_id: z.ZodString;
59838
+ pcb_group_id: z.ZodOptional<z.ZodString>;
59839
+ subcircuit_id: z.ZodOptional<z.ZodString>;
59840
+ layer: z.ZodEnum<["top", "bottom"]>;
59841
+ image_asset: z.ZodOptional<z.ZodObject<{
59842
+ project_relative_path: z.ZodString;
59843
+ url: z.ZodString;
59844
+ mimetype: z.ZodString;
59845
+ }, "strip", z.ZodTypeAny, {
59846
+ project_relative_path: string;
59847
+ url: string;
59848
+ mimetype: string;
59849
+ }, {
59850
+ project_relative_path: string;
59851
+ url: string;
59852
+ mimetype: string;
59853
+ }>>;
59854
+ } & {
59855
+ shape: z.ZodLiteral<"brep">;
59856
+ brep_shape: z.ZodObject<{
59857
+ outer_ring: z.ZodObject<{
59858
+ vertices: z.ZodArray<z.ZodObject<{
59859
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
59860
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
59861
+ bulge: z.ZodOptional<z.ZodNumber>;
59862
+ }, "strip", z.ZodTypeAny, {
59863
+ x: number;
59864
+ y: number;
59865
+ bulge?: number | undefined;
59866
+ }, {
59867
+ x: string | number;
59868
+ y: string | number;
59869
+ bulge?: number | undefined;
59870
+ }>, "many">;
59871
+ }, "strip", z.ZodTypeAny, {
59872
+ vertices: {
59873
+ x: number;
59874
+ y: number;
59875
+ bulge?: number | undefined;
59876
+ }[];
59877
+ }, {
59878
+ vertices: {
59879
+ x: string | number;
59880
+ y: string | number;
59881
+ bulge?: number | undefined;
59882
+ }[];
59883
+ }>;
59884
+ inner_rings: z.ZodDefault<z.ZodArray<z.ZodObject<{
59885
+ vertices: z.ZodArray<z.ZodObject<{
59886
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
59887
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
59888
+ bulge: z.ZodOptional<z.ZodNumber>;
59889
+ }, "strip", z.ZodTypeAny, {
59890
+ x: number;
59891
+ y: number;
59892
+ bulge?: number | undefined;
59893
+ }, {
59894
+ x: string | number;
59895
+ y: string | number;
59896
+ bulge?: number | undefined;
59897
+ }>, "many">;
59898
+ }, "strip", z.ZodTypeAny, {
59899
+ vertices: {
59900
+ x: number;
59901
+ y: number;
59902
+ bulge?: number | undefined;
59903
+ }[];
59904
+ }, {
59905
+ vertices: {
59906
+ x: string | number;
59907
+ y: string | number;
59908
+ bulge?: number | undefined;
59909
+ }[];
59910
+ }>, "many">>;
59911
+ }, "strip", z.ZodTypeAny, {
59912
+ outer_ring: {
59913
+ vertices: {
59914
+ x: number;
59915
+ y: number;
59916
+ bulge?: number | undefined;
59917
+ }[];
59918
+ };
59919
+ inner_rings: {
59920
+ vertices: {
59921
+ x: number;
59922
+ y: number;
59923
+ bulge?: number | undefined;
59924
+ }[];
59925
+ }[];
59926
+ }, {
59927
+ outer_ring: {
59928
+ vertices: {
59929
+ x: string | number;
59930
+ y: string | number;
59931
+ bulge?: number | undefined;
59932
+ }[];
59933
+ };
59934
+ inner_rings?: {
59935
+ vertices: {
59936
+ x: string | number;
59937
+ y: string | number;
59938
+ bulge?: number | undefined;
59939
+ }[];
59940
+ }[] | undefined;
59941
+ }>;
59942
+ }, "strip", z.ZodTypeAny, {
59943
+ type: "pcb_silkscreen_graphic";
59944
+ layer: "top" | "bottom";
59945
+ shape: "brep";
59946
+ pcb_component_id: string;
59947
+ pcb_silkscreen_graphic_id: string;
59948
+ brep_shape: {
59949
+ outer_ring: {
59950
+ vertices: {
59951
+ x: number;
59952
+ y: number;
59953
+ bulge?: number | undefined;
59954
+ }[];
59955
+ };
59956
+ inner_rings: {
59957
+ vertices: {
59958
+ x: number;
59959
+ y: number;
59960
+ bulge?: number | undefined;
59961
+ }[];
59962
+ }[];
59963
+ };
59964
+ subcircuit_id?: string | undefined;
59965
+ pcb_group_id?: string | undefined;
59966
+ image_asset?: {
59967
+ project_relative_path: string;
59968
+ url: string;
59969
+ mimetype: string;
59970
+ } | undefined;
59971
+ }, {
59972
+ type: "pcb_silkscreen_graphic";
59973
+ layer: "top" | "bottom";
59974
+ shape: "brep";
59975
+ pcb_component_id: string;
59976
+ brep_shape: {
59977
+ outer_ring: {
59978
+ vertices: {
59979
+ x: string | number;
59980
+ y: string | number;
59981
+ bulge?: number | undefined;
59982
+ }[];
59983
+ };
59984
+ inner_rings?: {
59985
+ vertices: {
59986
+ x: string | number;
59987
+ y: string | number;
59988
+ bulge?: number | undefined;
59989
+ }[];
59990
+ }[] | undefined;
59991
+ };
59992
+ subcircuit_id?: string | undefined;
59993
+ pcb_group_id?: string | undefined;
59994
+ pcb_silkscreen_graphic_id?: string | undefined;
59995
+ image_asset?: {
59996
+ project_relative_path: string;
59997
+ url: string;
59998
+ mimetype: string;
59999
+ } | undefined;
60000
+ }>]>, z.ZodObject<{
59317
60001
  message: z.ZodString;
59318
60002
  is_fatal: z.ZodOptional<z.ZodBoolean>;
59319
60003
  } & {
@@ -60898,7 +61582,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
60898
61582
  layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
60899
61583
  shape: "brep";
60900
61584
  covered_with_solder_mask: boolean;
60901
- pcb_copper_pour_id: string;
60902
61585
  brep_shape: {
60903
61586
  outer_ring: {
60904
61587
  vertices: {
@@ -60915,6 +61598,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
60915
61598
  }[];
60916
61599
  }[];
60917
61600
  };
61601
+ pcb_copper_pour_id: string;
60918
61602
  subcircuit_id?: string | undefined;
60919
61603
  pcb_group_id?: string | undefined;
60920
61604
  source_net_id?: string | undefined;
@@ -69555,12 +70239,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
69555
70239
  url: z.ZodString;
69556
70240
  mimetype: z.ZodString;
69557
70241
  }, "strip", z.ZodTypeAny, {
69558
- url: string;
69559
70242
  project_relative_path: string;
70243
+ url: string;
69560
70244
  mimetype: string;
69561
70245
  }, {
69562
- url: string;
69563
70246
  project_relative_path: string;
70247
+ url: string;
69564
70248
  mimetype: string;
69565
70249
  }>>;
69566
70250
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
@@ -69617,8 +70301,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
69617
70301
  model_step_url?: string | undefined;
69618
70302
  model_wrl_url?: string | undefined;
69619
70303
  model_asset?: {
69620
- url: string;
69621
70304
  project_relative_path: string;
70305
+ url: string;
69622
70306
  mimetype: string;
69623
70307
  } | undefined;
69624
70308
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -69666,8 +70350,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
69666
70350
  model_step_url?: string | undefined;
69667
70351
  model_wrl_url?: string | undefined;
69668
70352
  model_asset?: {
69669
- url: string;
69670
70353
  project_relative_path: string;
70354
+ url: string;
69671
70355
  mimetype: string;
69672
70356
  } | undefined;
69673
70357
  model_unit_to_mm_scale_factor?: number | undefined;
@@ -70049,4 +70733,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
70049
70733
  */
70050
70734
  type CircuitJson = AnyCircuitElement[];
70051
70735
 
70052
- 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 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, 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 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 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 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_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_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, 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_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_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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
70736
+ 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, 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 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 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 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_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, 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_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_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_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };