circuit-json 0.0.393 → 0.0.395

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
@@ -28976,6 +28976,123 @@ interface SourceManuallyPlacedVia {
28976
28976
  source_trace_id?: string;
28977
28977
  }
28978
28978
 
28979
+ declare const source_no_power_pin_defined_warning: z.ZodObject<{
28980
+ type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
28981
+ source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28982
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
28983
+ message: z.ZodString;
28984
+ source_component_id: z.ZodString;
28985
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
28986
+ subcircuit_id: z.ZodOptional<z.ZodString>;
28987
+ }, "strip", z.ZodTypeAny, {
28988
+ message: string;
28989
+ type: "source_no_power_pin_defined_warning";
28990
+ source_component_id: string;
28991
+ warning_type: "source_no_power_pin_defined_warning";
28992
+ source_port_ids: string[];
28993
+ source_no_power_pin_defined_warning_id: string;
28994
+ subcircuit_id?: string | undefined;
28995
+ }, {
28996
+ message: string;
28997
+ type: "source_no_power_pin_defined_warning";
28998
+ source_component_id: string;
28999
+ source_port_ids: string[];
29000
+ subcircuit_id?: string | undefined;
29001
+ warning_type?: "source_no_power_pin_defined_warning" | undefined;
29002
+ source_no_power_pin_defined_warning_id?: string | undefined;
29003
+ }>;
29004
+ type SourceNoPowerPinDefinedWarningInput = z.input<typeof source_no_power_pin_defined_warning>;
29005
+ /**
29006
+ * Warning emitted when a chip has no source ports with requires_power=true
29007
+ */
29008
+ interface SourceNoPowerPinDefinedWarning {
29009
+ type: "source_no_power_pin_defined_warning";
29010
+ source_no_power_pin_defined_warning_id: string;
29011
+ warning_type: "source_no_power_pin_defined_warning";
29012
+ message: string;
29013
+ source_component_id: string;
29014
+ source_port_ids: string[];
29015
+ subcircuit_id?: string;
29016
+ }
29017
+
29018
+ declare const source_no_ground_pin_defined_warning: z.ZodObject<{
29019
+ type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
29020
+ source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29021
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
29022
+ message: z.ZodString;
29023
+ source_component_id: z.ZodString;
29024
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
29025
+ subcircuit_id: z.ZodOptional<z.ZodString>;
29026
+ }, "strip", z.ZodTypeAny, {
29027
+ message: string;
29028
+ type: "source_no_ground_pin_defined_warning";
29029
+ source_component_id: string;
29030
+ warning_type: "source_no_ground_pin_defined_warning";
29031
+ source_port_ids: string[];
29032
+ source_no_ground_pin_defined_warning_id: string;
29033
+ subcircuit_id?: string | undefined;
29034
+ }, {
29035
+ message: string;
29036
+ type: "source_no_ground_pin_defined_warning";
29037
+ source_component_id: string;
29038
+ source_port_ids: string[];
29039
+ subcircuit_id?: string | undefined;
29040
+ warning_type?: "source_no_ground_pin_defined_warning" | undefined;
29041
+ source_no_ground_pin_defined_warning_id?: string | undefined;
29042
+ }>;
29043
+ type SourceNoGroundPinDefinedWarningInput = z.input<typeof source_no_ground_pin_defined_warning>;
29044
+ /**
29045
+ * Warning emitted when a chip has no source ports marked as ground pins
29046
+ */
29047
+ interface SourceNoGroundPinDefinedWarning {
29048
+ type: "source_no_ground_pin_defined_warning";
29049
+ source_no_ground_pin_defined_warning_id: string;
29050
+ warning_type: "source_no_ground_pin_defined_warning";
29051
+ message: string;
29052
+ source_component_id: string;
29053
+ source_port_ids: string[];
29054
+ subcircuit_id?: string;
29055
+ }
29056
+
29057
+ declare const source_component_pins_underspecified_warning: z.ZodObject<{
29058
+ type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
29059
+ source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29060
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
29061
+ message: z.ZodString;
29062
+ source_component_id: z.ZodString;
29063
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
29064
+ subcircuit_id: z.ZodOptional<z.ZodString>;
29065
+ }, "strip", z.ZodTypeAny, {
29066
+ message: string;
29067
+ type: "source_component_pins_underspecified_warning";
29068
+ source_component_id: string;
29069
+ warning_type: "source_component_pins_underspecified_warning";
29070
+ source_port_ids: string[];
29071
+ source_component_pins_underspecified_warning_id: string;
29072
+ subcircuit_id?: string | undefined;
29073
+ }, {
29074
+ message: string;
29075
+ type: "source_component_pins_underspecified_warning";
29076
+ source_component_id: string;
29077
+ source_port_ids: string[];
29078
+ subcircuit_id?: string | undefined;
29079
+ warning_type?: "source_component_pins_underspecified_warning" | undefined;
29080
+ source_component_pins_underspecified_warning_id?: string | undefined;
29081
+ }>;
29082
+ type SourceComponentPinsUnderspecifiedWarningInput = z.input<typeof source_component_pins_underspecified_warning>;
29083
+ /**
29084
+ * Warning emitted when all ports on a source component are underspecified
29085
+ */
29086
+ interface SourceComponentPinsUnderspecifiedWarning {
29087
+ type: "source_component_pins_underspecified_warning";
29088
+ source_component_pins_underspecified_warning_id: string;
29089
+ warning_type: "source_component_pins_underspecified_warning";
29090
+ message: string;
29091
+ source_component_id: string;
29092
+ source_port_ids: string[];
29093
+ subcircuit_id?: string;
29094
+ }
29095
+
28979
29096
  declare const source_pin_must_be_connected_error: z.ZodObject<{
28980
29097
  message: z.ZodString;
28981
29098
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -31740,6 +31857,22 @@ declare const cad_component: z.ZodObject<{
31740
31857
  mimetype: string;
31741
31858
  }>>;
31742
31859
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
31860
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
31861
+ model_origin_position: z.ZodOptional<z.ZodObject<{
31862
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31863
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31864
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31865
+ }, "strip", z.ZodTypeAny, {
31866
+ x: number;
31867
+ y: number;
31868
+ z: number;
31869
+ }, {
31870
+ x: string | number;
31871
+ y: string | number;
31872
+ z: string | number;
31873
+ }>>;
31874
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
31875
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
31743
31876
  model_jscad: z.ZodOptional<z.ZodAny>;
31744
31877
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
31745
31878
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -31754,6 +31887,7 @@ declare const cad_component: z.ZodObject<{
31754
31887
  z: number;
31755
31888
  };
31756
31889
  cad_component_id: string;
31890
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
31757
31891
  rotation?: {
31758
31892
  x: number;
31759
31893
  y: number;
@@ -31780,6 +31914,13 @@ declare const cad_component: z.ZodObject<{
31780
31914
  mimetype: string;
31781
31915
  } | undefined;
31782
31916
  model_unit_to_mm_scale_factor?: number | undefined;
31917
+ model_board_normal_direction?: "y+" | "z+" | undefined;
31918
+ model_origin_position?: {
31919
+ x: number;
31920
+ y: number;
31921
+ z: number;
31922
+ } | undefined;
31923
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
31783
31924
  model_jscad?: any;
31784
31925
  show_as_translucent_model?: boolean | undefined;
31785
31926
  }, {
@@ -31821,6 +31962,14 @@ declare const cad_component: z.ZodObject<{
31821
31962
  mimetype: string;
31822
31963
  } | undefined;
31823
31964
  model_unit_to_mm_scale_factor?: number | undefined;
31965
+ model_board_normal_direction?: "y+" | "z+" | undefined;
31966
+ model_origin_position?: {
31967
+ x: string | number;
31968
+ y: string | number;
31969
+ z: string | number;
31970
+ } | undefined;
31971
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
31972
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
31824
31973
  model_jscad?: any;
31825
31974
  show_as_translucent_model?: boolean | undefined;
31826
31975
  }>;
@@ -31847,6 +31996,10 @@ interface CadComponent {
31847
31996
  model_wrl_url?: string;
31848
31997
  model_asset?: Asset;
31849
31998
  model_unit_to_mm_scale_factor?: number;
31999
+ model_board_normal_direction?: "y+" | "z+";
32000
+ model_origin_position?: Point3;
32001
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface";
32002
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
31850
32003
  model_jscad?: any;
31851
32004
  show_as_translucent_model?: boolean;
31852
32005
  anchor_alignment: CadComponentAnchorAlignment;
@@ -34480,6 +34633,78 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34480
34633
  subcircuit_id?: string | undefined;
34481
34634
  warning_type?: "source_pin_missing_trace_warning" | undefined;
34482
34635
  source_pin_missing_trace_warning_id?: string | undefined;
34636
+ }>, z.ZodObject<{
34637
+ type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
34638
+ source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34639
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
34640
+ message: z.ZodString;
34641
+ source_component_id: z.ZodString;
34642
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
34643
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34644
+ }, "strip", z.ZodTypeAny, {
34645
+ message: string;
34646
+ type: "source_no_power_pin_defined_warning";
34647
+ source_component_id: string;
34648
+ warning_type: "source_no_power_pin_defined_warning";
34649
+ source_port_ids: string[];
34650
+ source_no_power_pin_defined_warning_id: string;
34651
+ subcircuit_id?: string | undefined;
34652
+ }, {
34653
+ message: string;
34654
+ type: "source_no_power_pin_defined_warning";
34655
+ source_component_id: string;
34656
+ source_port_ids: string[];
34657
+ subcircuit_id?: string | undefined;
34658
+ warning_type?: "source_no_power_pin_defined_warning" | undefined;
34659
+ source_no_power_pin_defined_warning_id?: string | undefined;
34660
+ }>, z.ZodObject<{
34661
+ type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
34662
+ source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34663
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
34664
+ message: z.ZodString;
34665
+ source_component_id: z.ZodString;
34666
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
34667
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34668
+ }, "strip", z.ZodTypeAny, {
34669
+ message: string;
34670
+ type: "source_no_ground_pin_defined_warning";
34671
+ source_component_id: string;
34672
+ warning_type: "source_no_ground_pin_defined_warning";
34673
+ source_port_ids: string[];
34674
+ source_no_ground_pin_defined_warning_id: string;
34675
+ subcircuit_id?: string | undefined;
34676
+ }, {
34677
+ message: string;
34678
+ type: "source_no_ground_pin_defined_warning";
34679
+ source_component_id: string;
34680
+ source_port_ids: string[];
34681
+ subcircuit_id?: string | undefined;
34682
+ warning_type?: "source_no_ground_pin_defined_warning" | undefined;
34683
+ source_no_ground_pin_defined_warning_id?: string | undefined;
34684
+ }>, z.ZodObject<{
34685
+ type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
34686
+ source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34687
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
34688
+ message: z.ZodString;
34689
+ source_component_id: z.ZodString;
34690
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
34691
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34692
+ }, "strip", z.ZodTypeAny, {
34693
+ message: string;
34694
+ type: "source_component_pins_underspecified_warning";
34695
+ source_component_id: string;
34696
+ warning_type: "source_component_pins_underspecified_warning";
34697
+ source_port_ids: string[];
34698
+ source_component_pins_underspecified_warning_id: string;
34699
+ subcircuit_id?: string | undefined;
34700
+ }, {
34701
+ message: string;
34702
+ type: "source_component_pins_underspecified_warning";
34703
+ source_component_id: string;
34704
+ source_port_ids: string[];
34705
+ subcircuit_id?: string | undefined;
34706
+ warning_type?: "source_component_pins_underspecified_warning" | undefined;
34707
+ source_component_pins_underspecified_warning_id?: string | undefined;
34483
34708
  }>, z.ZodObject<{
34484
34709
  message: z.ZodString;
34485
34710
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -48969,6 +49194,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48969
49194
  mimetype: string;
48970
49195
  }>>;
48971
49196
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
49197
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
49198
+ model_origin_position: z.ZodOptional<z.ZodObject<{
49199
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49200
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49201
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49202
+ }, "strip", z.ZodTypeAny, {
49203
+ x: number;
49204
+ y: number;
49205
+ z: number;
49206
+ }, {
49207
+ x: string | number;
49208
+ y: string | number;
49209
+ z: string | number;
49210
+ }>>;
49211
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
49212
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
48972
49213
  model_jscad: z.ZodOptional<z.ZodAny>;
48973
49214
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
48974
49215
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -48983,6 +49224,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48983
49224
  z: number;
48984
49225
  };
48985
49226
  cad_component_id: string;
49227
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
48986
49228
  rotation?: {
48987
49229
  x: number;
48988
49230
  y: number;
@@ -49009,6 +49251,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
49009
49251
  mimetype: string;
49010
49252
  } | undefined;
49011
49253
  model_unit_to_mm_scale_factor?: number | undefined;
49254
+ model_board_normal_direction?: "y+" | "z+" | undefined;
49255
+ model_origin_position?: {
49256
+ x: number;
49257
+ y: number;
49258
+ z: number;
49259
+ } | undefined;
49260
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
49012
49261
  model_jscad?: any;
49013
49262
  show_as_translucent_model?: boolean | undefined;
49014
49263
  }, {
@@ -49050,6 +49299,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
49050
49299
  mimetype: string;
49051
49300
  } | undefined;
49052
49301
  model_unit_to_mm_scale_factor?: number | undefined;
49302
+ model_board_normal_direction?: "y+" | "z+" | undefined;
49303
+ model_origin_position?: {
49304
+ x: string | number;
49305
+ y: string | number;
49306
+ z: string | number;
49307
+ } | undefined;
49308
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
49309
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
49053
49310
  model_jscad?: any;
49054
49311
  show_as_translucent_model?: boolean | undefined;
49055
49312
  }>, z.ZodUnion<[z.ZodObject<{
@@ -52016,6 +52273,78 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52016
52273
  subcircuit_id?: string | undefined;
52017
52274
  warning_type?: "source_pin_missing_trace_warning" | undefined;
52018
52275
  source_pin_missing_trace_warning_id?: string | undefined;
52276
+ }>, z.ZodObject<{
52277
+ type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
52278
+ source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52279
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_power_pin_defined_warning">>;
52280
+ message: z.ZodString;
52281
+ source_component_id: z.ZodString;
52282
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
52283
+ subcircuit_id: z.ZodOptional<z.ZodString>;
52284
+ }, "strip", z.ZodTypeAny, {
52285
+ message: string;
52286
+ type: "source_no_power_pin_defined_warning";
52287
+ source_component_id: string;
52288
+ warning_type: "source_no_power_pin_defined_warning";
52289
+ source_port_ids: string[];
52290
+ source_no_power_pin_defined_warning_id: string;
52291
+ subcircuit_id?: string | undefined;
52292
+ }, {
52293
+ message: string;
52294
+ type: "source_no_power_pin_defined_warning";
52295
+ source_component_id: string;
52296
+ source_port_ids: string[];
52297
+ subcircuit_id?: string | undefined;
52298
+ warning_type?: "source_no_power_pin_defined_warning" | undefined;
52299
+ source_no_power_pin_defined_warning_id?: string | undefined;
52300
+ }>, z.ZodObject<{
52301
+ type: z.ZodLiteral<"source_no_ground_pin_defined_warning">;
52302
+ source_no_ground_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52303
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_no_ground_pin_defined_warning">>;
52304
+ message: z.ZodString;
52305
+ source_component_id: z.ZodString;
52306
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
52307
+ subcircuit_id: z.ZodOptional<z.ZodString>;
52308
+ }, "strip", z.ZodTypeAny, {
52309
+ message: string;
52310
+ type: "source_no_ground_pin_defined_warning";
52311
+ source_component_id: string;
52312
+ warning_type: "source_no_ground_pin_defined_warning";
52313
+ source_port_ids: string[];
52314
+ source_no_ground_pin_defined_warning_id: string;
52315
+ subcircuit_id?: string | undefined;
52316
+ }, {
52317
+ message: string;
52318
+ type: "source_no_ground_pin_defined_warning";
52319
+ source_component_id: string;
52320
+ source_port_ids: string[];
52321
+ subcircuit_id?: string | undefined;
52322
+ warning_type?: "source_no_ground_pin_defined_warning" | undefined;
52323
+ source_no_ground_pin_defined_warning_id?: string | undefined;
52324
+ }>, z.ZodObject<{
52325
+ type: z.ZodLiteral<"source_component_pins_underspecified_warning">;
52326
+ source_component_pins_underspecified_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52327
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_component_pins_underspecified_warning">>;
52328
+ message: z.ZodString;
52329
+ source_component_id: z.ZodString;
52330
+ source_port_ids: z.ZodArray<z.ZodString, "many">;
52331
+ subcircuit_id: z.ZodOptional<z.ZodString>;
52332
+ }, "strip", z.ZodTypeAny, {
52333
+ message: string;
52334
+ type: "source_component_pins_underspecified_warning";
52335
+ source_component_id: string;
52336
+ warning_type: "source_component_pins_underspecified_warning";
52337
+ source_port_ids: string[];
52338
+ source_component_pins_underspecified_warning_id: string;
52339
+ subcircuit_id?: string | undefined;
52340
+ }, {
52341
+ message: string;
52342
+ type: "source_component_pins_underspecified_warning";
52343
+ source_component_id: string;
52344
+ source_port_ids: string[];
52345
+ subcircuit_id?: string | undefined;
52346
+ warning_type?: "source_component_pins_underspecified_warning" | undefined;
52347
+ source_component_pins_underspecified_warning_id?: string | undefined;
52019
52348
  }>, z.ZodObject<{
52020
52349
  message: z.ZodString;
52021
52350
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -66505,6 +66834,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66505
66834
  mimetype: string;
66506
66835
  }>>;
66507
66836
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
66837
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
66838
+ model_origin_position: z.ZodOptional<z.ZodObject<{
66839
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66840
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66841
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66842
+ }, "strip", z.ZodTypeAny, {
66843
+ x: number;
66844
+ y: number;
66845
+ z: number;
66846
+ }, {
66847
+ x: string | number;
66848
+ y: string | number;
66849
+ z: string | number;
66850
+ }>>;
66851
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
66852
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
66508
66853
  model_jscad: z.ZodOptional<z.ZodAny>;
66509
66854
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
66510
66855
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -66519,6 +66864,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66519
66864
  z: number;
66520
66865
  };
66521
66866
  cad_component_id: string;
66867
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
66522
66868
  rotation?: {
66523
66869
  x: number;
66524
66870
  y: number;
@@ -66545,6 +66891,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66545
66891
  mimetype: string;
66546
66892
  } | undefined;
66547
66893
  model_unit_to_mm_scale_factor?: number | undefined;
66894
+ model_board_normal_direction?: "y+" | "z+" | undefined;
66895
+ model_origin_position?: {
66896
+ x: number;
66897
+ y: number;
66898
+ z: number;
66899
+ } | undefined;
66900
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
66548
66901
  model_jscad?: any;
66549
66902
  show_as_translucent_model?: boolean | undefined;
66550
66903
  }, {
@@ -66586,6 +66939,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66586
66939
  mimetype: string;
66587
66940
  } | undefined;
66588
66941
  model_unit_to_mm_scale_factor?: number | undefined;
66942
+ model_board_normal_direction?: "y+" | "z+" | undefined;
66943
+ model_origin_position?: {
66944
+ x: string | number;
66945
+ y: string | number;
66946
+ z: string | number;
66947
+ } | undefined;
66948
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
66949
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
66589
66950
  model_jscad?: any;
66590
66951
  show_as_translucent_model?: boolean | undefined;
66591
66952
  }>, z.ZodUnion<[z.ZodObject<{
@@ -66937,4 +67298,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
66937
67298
  */
66938
67299
  type CircuitJson = AnyCircuitElement[];
66939
67300
 
66940
- 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 CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
67301
+ 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 CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };