circuit-json 0.0.226 → 0.0.228

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -72,7 +72,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
72
72
  - [SourceSimpleTestPoint](#sourcesimpletestpoint)
73
73
  - [SourceSimpleTransistor](#sourcesimpletransistor)
74
74
  - [SourceTrace](#sourcetrace)
75
- - [SourceTraceNotConnected](#sourcetracenotconnected)
75
+ - [SourceTraceNotConnectedError](#sourcetracenotconnectederror)
76
76
  - [PCB Elements](#pcb-elements)
77
77
  - [PcbAutoroutingError](#pcbautoroutingerror)
78
78
  - [PcbBoard](#pcbboard)
@@ -106,6 +106,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
106
106
  - [PcbTrace](#pcbtrace)
107
107
  - [PcbTraceError](#pcbtraceerror)
108
108
  - [PcbTraceHint](#pcbtracehint)
109
+ - [PcbTraceMissingError](#pcbtracemissingerror)
109
110
  - [PcbVia](#pcbvia)
110
111
  - [Schematic Elements](#schematic-elements)
111
112
  - [SchematicBox](#schematicbox)
@@ -617,18 +618,18 @@ interface SourceTrace {
617
618
  }
618
619
  ```
619
620
 
620
- ### SourceTraceNotConnected
621
+ ### SourceTraceNotConnectedError
621
622
 
622
- [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_trace_not_connected.ts)
623
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_trace_not_connected_error.ts)
623
624
 
624
625
  Occurs when a source trace selector does not match any ports
625
626
 
626
627
  ```typescript
627
628
  /** Occurs when a source trace selector does not match any ports */
628
- interface SourceTraceNotConnected {
629
- type: "source_trace_not_connected"
630
- source_trace_not_connected_id: string
631
- error_type: "source_trace_not_connected"
629
+ interface SourceTraceNotConnectedError {
630
+ type: "source_trace_not_connected_error"
631
+ source_trace_not_connected_error_id: string
632
+ error_type: "source_trace_not_connected_error"
632
633
  message: string
633
634
  subcircuit_id?: string
634
635
  source_group_id?: string
@@ -1373,6 +1374,27 @@ interface PcbTraceHint {
1373
1374
  }
1374
1375
  ```
1375
1376
 
1377
+ ### PcbTraceMissingError
1378
+
1379
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_trace_missing_error.ts)
1380
+
1381
+ Defines an error when a source trace has no corresponding PCB trace
1382
+
1383
+ ```typescript
1384
+ /** Defines an error when a source trace has no corresponding PCB trace */
1385
+ interface PcbTraceMissingError {
1386
+ type: "pcb_trace_missing_error"
1387
+ pcb_trace_missing_error_id: string
1388
+ error_type: "pcb_trace_missing_error"
1389
+ message: string
1390
+ center?: Point
1391
+ source_trace_id: string
1392
+ pcb_component_ids: string[]
1393
+ pcb_port_ids: string[]
1394
+ subcircuit_id?: string
1395
+ }
1396
+ ```
1397
+
1376
1398
  ### PcbVia
1377
1399
 
1378
1400
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_via.ts)
package/dist/index.d.mts CHANGED
@@ -2289,6 +2289,72 @@ interface PcbTraceError {
2289
2289
  */
2290
2290
  type PCBTraceError = PcbTraceError;
2291
2291
 
2292
+ declare const pcb_trace_missing_error: z.ZodObject<{
2293
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
2294
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2295
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
2296
+ message: z.ZodString;
2297
+ center: z.ZodOptional<z.ZodObject<{
2298
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
2299
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
2300
+ }, "strip", z.ZodTypeAny, {
2301
+ x: number;
2302
+ y: number;
2303
+ }, {
2304
+ x: string | number;
2305
+ y: string | number;
2306
+ }>>;
2307
+ source_trace_id: z.ZodString;
2308
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
2309
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
2310
+ subcircuit_id: z.ZodOptional<z.ZodString>;
2311
+ }, "strip", z.ZodTypeAny, {
2312
+ message: string;
2313
+ type: "pcb_trace_missing_error";
2314
+ source_trace_id: string;
2315
+ error_type: "pcb_trace_missing_error";
2316
+ pcb_component_ids: string[];
2317
+ pcb_port_ids: string[];
2318
+ pcb_trace_missing_error_id: string;
2319
+ center?: {
2320
+ x: number;
2321
+ y: number;
2322
+ } | undefined;
2323
+ subcircuit_id?: string | undefined;
2324
+ }, {
2325
+ message: string;
2326
+ type: "pcb_trace_missing_error";
2327
+ source_trace_id: string;
2328
+ pcb_component_ids: string[];
2329
+ pcb_port_ids: string[];
2330
+ center?: {
2331
+ x: string | number;
2332
+ y: string | number;
2333
+ } | undefined;
2334
+ subcircuit_id?: string | undefined;
2335
+ error_type?: "pcb_trace_missing_error" | undefined;
2336
+ pcb_trace_missing_error_id?: string | undefined;
2337
+ }>;
2338
+ type PcbTraceMissingErrorInput = z.input<typeof pcb_trace_missing_error>;
2339
+ /**
2340
+ * Defines an error when a source trace has no corresponding PCB trace
2341
+ */
2342
+ interface PcbTraceMissingError {
2343
+ type: "pcb_trace_missing_error";
2344
+ pcb_trace_missing_error_id: string;
2345
+ error_type: "pcb_trace_missing_error";
2346
+ message: string;
2347
+ center?: Point;
2348
+ source_trace_id: string;
2349
+ pcb_component_ids: string[];
2350
+ pcb_port_ids: string[];
2351
+ subcircuit_id?: string;
2352
+ }
2353
+ /**
2354
+ * @deprecated use PcbTraceMissingError
2355
+ */
2356
+ type PCBTraceMissingError = PcbTraceMissingError;
2357
+
2292
2358
  declare const pcb_port_not_matched_error: z.ZodObject<{
2293
2359
  type: z.ZodLiteral<"pcb_port_not_matched_error">;
2294
2360
  pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -4077,7 +4143,7 @@ interface PcbThermalSpoke {
4077
4143
  subcircuit_id?: string;
4078
4144
  }
4079
4145
 
4080
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke;
4146
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke;
4081
4147
 
4082
4148
  interface SchematicBox {
4083
4149
  type: "schematic_box";
@@ -6907,10 +6973,10 @@ interface SourceFailedToCreateComponentError {
6907
6973
  };
6908
6974
  }
6909
6975
 
6910
- declare const source_trace_not_connected: z.ZodObject<{
6911
- type: z.ZodLiteral<"source_trace_not_connected">;
6912
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6913
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
6976
+ declare const source_trace_not_connected_error: z.ZodObject<{
6977
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
6978
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6979
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
6914
6980
  message: z.ZodString;
6915
6981
  subcircuit_id: z.ZodOptional<z.ZodString>;
6916
6982
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -6919,9 +6985,9 @@ declare const source_trace_not_connected: z.ZodObject<{
6919
6985
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6920
6986
  }, "strip", z.ZodTypeAny, {
6921
6987
  message: string;
6922
- type: "source_trace_not_connected";
6923
- error_type: "source_trace_not_connected";
6924
- source_trace_not_connected_id: string;
6988
+ type: "source_trace_not_connected_error";
6989
+ error_type: "source_trace_not_connected_error";
6990
+ source_trace_not_connected_error_id: string;
6925
6991
  subcircuit_id?: string | undefined;
6926
6992
  source_trace_id?: string | undefined;
6927
6993
  source_group_id?: string | undefined;
@@ -6929,23 +6995,23 @@ declare const source_trace_not_connected: z.ZodObject<{
6929
6995
  selectors_not_found?: string[] | undefined;
6930
6996
  }, {
6931
6997
  message: string;
6932
- type: "source_trace_not_connected";
6998
+ type: "source_trace_not_connected_error";
6933
6999
  subcircuit_id?: string | undefined;
6934
7000
  source_trace_id?: string | undefined;
6935
- error_type?: "source_trace_not_connected" | undefined;
7001
+ error_type?: "source_trace_not_connected_error" | undefined;
6936
7002
  source_group_id?: string | undefined;
6937
- source_trace_not_connected_id?: string | undefined;
7003
+ source_trace_not_connected_error_id?: string | undefined;
6938
7004
  connected_source_port_ids?: string[] | undefined;
6939
7005
  selectors_not_found?: string[] | undefined;
6940
7006
  }>;
6941
- type SourceTraceNotConnectedInput = z.input<typeof source_trace_not_connected>;
7007
+ type SourceTraceNotConnectedErrorInput = z.input<typeof source_trace_not_connected_error>;
6942
7008
  /**
6943
7009
  * Occurs when a source trace selector does not match any ports
6944
7010
  */
6945
- interface SourceTraceNotConnected {
6946
- type: "source_trace_not_connected";
6947
- source_trace_not_connected_id: string;
6948
- error_type: "source_trace_not_connected";
7011
+ interface SourceTraceNotConnectedError {
7012
+ type: "source_trace_not_connected_error";
7013
+ source_trace_not_connected_error_id: string;
7014
+ error_type: "source_trace_not_connected_error";
6949
7015
  message: string;
6950
7016
  subcircuit_id?: string;
6951
7017
  source_group_id?: string;
@@ -7853,9 +7919,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7853
7919
  y?: number | undefined;
7854
7920
  } | undefined;
7855
7921
  }>, z.ZodObject<{
7856
- type: z.ZodLiteral<"source_trace_not_connected">;
7857
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7858
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
7922
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
7923
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7924
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
7859
7925
  message: z.ZodString;
7860
7926
  subcircuit_id: z.ZodOptional<z.ZodString>;
7861
7927
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -7864,9 +7930,9 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7864
7930
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7865
7931
  }, "strip", z.ZodTypeAny, {
7866
7932
  message: string;
7867
- type: "source_trace_not_connected";
7868
- error_type: "source_trace_not_connected";
7869
- source_trace_not_connected_id: string;
7933
+ type: "source_trace_not_connected_error";
7934
+ error_type: "source_trace_not_connected_error";
7935
+ source_trace_not_connected_error_id: string;
7870
7936
  subcircuit_id?: string | undefined;
7871
7937
  source_trace_id?: string | undefined;
7872
7938
  source_group_id?: string | undefined;
@@ -7874,12 +7940,12 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7874
7940
  selectors_not_found?: string[] | undefined;
7875
7941
  }, {
7876
7942
  message: string;
7877
- type: "source_trace_not_connected";
7943
+ type: "source_trace_not_connected_error";
7878
7944
  subcircuit_id?: string | undefined;
7879
7945
  source_trace_id?: string | undefined;
7880
- error_type?: "source_trace_not_connected" | undefined;
7946
+ error_type?: "source_trace_not_connected_error" | undefined;
7881
7947
  source_group_id?: string | undefined;
7882
- source_trace_not_connected_id?: string | undefined;
7948
+ source_trace_not_connected_error_id?: string | undefined;
7883
7949
  connected_source_port_ids?: string[] | undefined;
7884
7950
  selectors_not_found?: string[] | undefined;
7885
7951
  }>]>;
@@ -7887,7 +7953,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7887
7953
  * Deprecated: use `AnySourceElement` instead
7888
7954
  */
7889
7955
  type AnySourceComponent = z.infer<typeof any_source_component>;
7890
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnected;
7956
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError;
7891
7957
 
7892
7958
  declare const source_port: z.ZodObject<{
7893
7959
  type: z.ZodLiteral<"source_port">;
@@ -9224,9 +9290,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9224
9290
  y?: number | undefined;
9225
9291
  } | undefined;
9226
9292
  }>, z.ZodObject<{
9227
- type: z.ZodLiteral<"source_trace_not_connected">;
9228
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9229
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
9293
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
9294
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9295
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
9230
9296
  message: z.ZodString;
9231
9297
  subcircuit_id: z.ZodOptional<z.ZodString>;
9232
9298
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -9235,9 +9301,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9235
9301
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9236
9302
  }, "strip", z.ZodTypeAny, {
9237
9303
  message: string;
9238
- type: "source_trace_not_connected";
9239
- error_type: "source_trace_not_connected";
9240
- source_trace_not_connected_id: string;
9304
+ type: "source_trace_not_connected_error";
9305
+ error_type: "source_trace_not_connected_error";
9306
+ source_trace_not_connected_error_id: string;
9241
9307
  subcircuit_id?: string | undefined;
9242
9308
  source_trace_id?: string | undefined;
9243
9309
  source_group_id?: string | undefined;
@@ -9245,12 +9311,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9245
9311
  selectors_not_found?: string[] | undefined;
9246
9312
  }, {
9247
9313
  message: string;
9248
- type: "source_trace_not_connected";
9314
+ type: "source_trace_not_connected_error";
9249
9315
  subcircuit_id?: string | undefined;
9250
9316
  source_trace_id?: string | undefined;
9251
- error_type?: "source_trace_not_connected" | undefined;
9317
+ error_type?: "source_trace_not_connected_error" | undefined;
9252
9318
  source_group_id?: string | undefined;
9253
- source_trace_not_connected_id?: string | undefined;
9319
+ source_trace_not_connected_error_id?: string | undefined;
9254
9320
  connected_source_port_ids?: string[] | undefined;
9255
9321
  selectors_not_found?: string[] | undefined;
9256
9322
  }>]>, z.ZodObject<{
@@ -10023,9 +10089,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10023
10089
  project_url?: string | undefined;
10024
10090
  created_at?: string | undefined;
10025
10091
  }>, z.ZodObject<{
10026
- type: z.ZodLiteral<"source_trace_not_connected">;
10027
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10028
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
10092
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
10093
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
10094
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
10029
10095
  message: z.ZodString;
10030
10096
  subcircuit_id: z.ZodOptional<z.ZodString>;
10031
10097
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -10034,9 +10100,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10034
10100
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
10035
10101
  }, "strip", z.ZodTypeAny, {
10036
10102
  message: string;
10037
- type: "source_trace_not_connected";
10038
- error_type: "source_trace_not_connected";
10039
- source_trace_not_connected_id: string;
10103
+ type: "source_trace_not_connected_error";
10104
+ error_type: "source_trace_not_connected_error";
10105
+ source_trace_not_connected_error_id: string;
10040
10106
  subcircuit_id?: string | undefined;
10041
10107
  source_trace_id?: string | undefined;
10042
10108
  source_group_id?: string | undefined;
@@ -10044,12 +10110,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
10044
10110
  selectors_not_found?: string[] | undefined;
10045
10111
  }, {
10046
10112
  message: string;
10047
- type: "source_trace_not_connected";
10113
+ type: "source_trace_not_connected_error";
10048
10114
  subcircuit_id?: string | undefined;
10049
10115
  source_trace_id?: string | undefined;
10050
- error_type?: "source_trace_not_connected" | undefined;
10116
+ error_type?: "source_trace_not_connected_error" | undefined;
10051
10117
  source_group_id?: string | undefined;
10052
- source_trace_not_connected_id?: string | undefined;
10118
+ source_trace_not_connected_error_id?: string | undefined;
10053
10119
  connected_source_port_ids?: string[] | undefined;
10054
10120
  selectors_not_found?: string[] | undefined;
10055
10121
  }>, z.ZodObject<{
@@ -12038,6 +12104,51 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
12038
12104
  subcircuit_id?: string | undefined;
12039
12105
  pcb_trace_error_id?: string | undefined;
12040
12106
  error_type?: "pcb_trace_error" | undefined;
12107
+ }>, z.ZodObject<{
12108
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
12109
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
12110
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
12111
+ message: z.ZodString;
12112
+ center: z.ZodOptional<z.ZodObject<{
12113
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12114
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
12115
+ }, "strip", z.ZodTypeAny, {
12116
+ x: number;
12117
+ y: number;
12118
+ }, {
12119
+ x: string | number;
12120
+ y: string | number;
12121
+ }>>;
12122
+ source_trace_id: z.ZodString;
12123
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
12124
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
12125
+ subcircuit_id: z.ZodOptional<z.ZodString>;
12126
+ }, "strip", z.ZodTypeAny, {
12127
+ message: string;
12128
+ type: "pcb_trace_missing_error";
12129
+ source_trace_id: string;
12130
+ error_type: "pcb_trace_missing_error";
12131
+ pcb_component_ids: string[];
12132
+ pcb_port_ids: string[];
12133
+ pcb_trace_missing_error_id: string;
12134
+ center?: {
12135
+ x: number;
12136
+ y: number;
12137
+ } | undefined;
12138
+ subcircuit_id?: string | undefined;
12139
+ }, {
12140
+ message: string;
12141
+ type: "pcb_trace_missing_error";
12142
+ source_trace_id: string;
12143
+ pcb_component_ids: string[];
12144
+ pcb_port_ids: string[];
12145
+ center?: {
12146
+ x: string | number;
12147
+ y: string | number;
12148
+ } | undefined;
12149
+ subcircuit_id?: string | undefined;
12150
+ error_type?: "pcb_trace_missing_error" | undefined;
12151
+ pcb_trace_missing_error_id?: string | undefined;
12041
12152
  }>, z.ZodObject<{
12042
12153
  type: z.ZodLiteral<"pcb_placement_error">;
12043
12154
  pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -14591,9 +14702,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14591
14702
  y?: number | undefined;
14592
14703
  } | undefined;
14593
14704
  }>, z.ZodObject<{
14594
- type: z.ZodLiteral<"source_trace_not_connected">;
14595
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14596
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
14705
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
14706
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14707
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
14597
14708
  message: z.ZodString;
14598
14709
  subcircuit_id: z.ZodOptional<z.ZodString>;
14599
14710
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -14602,9 +14713,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14602
14713
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14603
14714
  }, "strip", z.ZodTypeAny, {
14604
14715
  message: string;
14605
- type: "source_trace_not_connected";
14606
- error_type: "source_trace_not_connected";
14607
- source_trace_not_connected_id: string;
14716
+ type: "source_trace_not_connected_error";
14717
+ error_type: "source_trace_not_connected_error";
14718
+ source_trace_not_connected_error_id: string;
14608
14719
  subcircuit_id?: string | undefined;
14609
14720
  source_trace_id?: string | undefined;
14610
14721
  source_group_id?: string | undefined;
@@ -14612,12 +14723,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14612
14723
  selectors_not_found?: string[] | undefined;
14613
14724
  }, {
14614
14725
  message: string;
14615
- type: "source_trace_not_connected";
14726
+ type: "source_trace_not_connected_error";
14616
14727
  subcircuit_id?: string | undefined;
14617
14728
  source_trace_id?: string | undefined;
14618
- error_type?: "source_trace_not_connected" | undefined;
14729
+ error_type?: "source_trace_not_connected_error" | undefined;
14619
14730
  source_group_id?: string | undefined;
14620
- source_trace_not_connected_id?: string | undefined;
14731
+ source_trace_not_connected_error_id?: string | undefined;
14621
14732
  connected_source_port_ids?: string[] | undefined;
14622
14733
  selectors_not_found?: string[] | undefined;
14623
14734
  }>]>, z.ZodObject<{
@@ -15390,9 +15501,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15390
15501
  project_url?: string | undefined;
15391
15502
  created_at?: string | undefined;
15392
15503
  }>, z.ZodObject<{
15393
- type: z.ZodLiteral<"source_trace_not_connected">;
15394
- source_trace_not_connected_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15395
- error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected">>;
15504
+ type: z.ZodLiteral<"source_trace_not_connected_error">;
15505
+ source_trace_not_connected_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15506
+ error_type: z.ZodDefault<z.ZodLiteral<"source_trace_not_connected_error">>;
15396
15507
  message: z.ZodString;
15397
15508
  subcircuit_id: z.ZodOptional<z.ZodString>;
15398
15509
  source_group_id: z.ZodOptional<z.ZodString>;
@@ -15401,9 +15512,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15401
15512
  selectors_not_found: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15402
15513
  }, "strip", z.ZodTypeAny, {
15403
15514
  message: string;
15404
- type: "source_trace_not_connected";
15405
- error_type: "source_trace_not_connected";
15406
- source_trace_not_connected_id: string;
15515
+ type: "source_trace_not_connected_error";
15516
+ error_type: "source_trace_not_connected_error";
15517
+ source_trace_not_connected_error_id: string;
15407
15518
  subcircuit_id?: string | undefined;
15408
15519
  source_trace_id?: string | undefined;
15409
15520
  source_group_id?: string | undefined;
@@ -15411,12 +15522,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
15411
15522
  selectors_not_found?: string[] | undefined;
15412
15523
  }, {
15413
15524
  message: string;
15414
- type: "source_trace_not_connected";
15525
+ type: "source_trace_not_connected_error";
15415
15526
  subcircuit_id?: string | undefined;
15416
15527
  source_trace_id?: string | undefined;
15417
- error_type?: "source_trace_not_connected" | undefined;
15528
+ error_type?: "source_trace_not_connected_error" | undefined;
15418
15529
  source_group_id?: string | undefined;
15419
- source_trace_not_connected_id?: string | undefined;
15530
+ source_trace_not_connected_error_id?: string | undefined;
15420
15531
  connected_source_port_ids?: string[] | undefined;
15421
15532
  selectors_not_found?: string[] | undefined;
15422
15533
  }>, z.ZodObject<{
@@ -17405,6 +17516,51 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
17405
17516
  subcircuit_id?: string | undefined;
17406
17517
  pcb_trace_error_id?: string | undefined;
17407
17518
  error_type?: "pcb_trace_error" | undefined;
17519
+ }>, z.ZodObject<{
17520
+ type: z.ZodLiteral<"pcb_trace_missing_error">;
17521
+ pcb_trace_missing_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
17522
+ error_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_missing_error">>;
17523
+ message: z.ZodString;
17524
+ center: z.ZodOptional<z.ZodObject<{
17525
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
17526
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
17527
+ }, "strip", z.ZodTypeAny, {
17528
+ x: number;
17529
+ y: number;
17530
+ }, {
17531
+ x: string | number;
17532
+ y: string | number;
17533
+ }>>;
17534
+ source_trace_id: z.ZodString;
17535
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
17536
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
17537
+ subcircuit_id: z.ZodOptional<z.ZodString>;
17538
+ }, "strip", z.ZodTypeAny, {
17539
+ message: string;
17540
+ type: "pcb_trace_missing_error";
17541
+ source_trace_id: string;
17542
+ error_type: "pcb_trace_missing_error";
17543
+ pcb_component_ids: string[];
17544
+ pcb_port_ids: string[];
17545
+ pcb_trace_missing_error_id: string;
17546
+ center?: {
17547
+ x: number;
17548
+ y: number;
17549
+ } | undefined;
17550
+ subcircuit_id?: string | undefined;
17551
+ }, {
17552
+ message: string;
17553
+ type: "pcb_trace_missing_error";
17554
+ source_trace_id: string;
17555
+ pcb_component_ids: string[];
17556
+ pcb_port_ids: string[];
17557
+ center?: {
17558
+ x: string | number;
17559
+ y: string | number;
17560
+ } | undefined;
17561
+ subcircuit_id?: string | undefined;
17562
+ error_type?: "pcb_trace_missing_error" | undefined;
17563
+ pcb_trace_missing_error_id?: string | undefined;
17408
17564
  }>, z.ZodObject<{
17409
17565
  type: z.ZodLiteral<"pcb_placement_error">;
17410
17566
  pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -19015,4 +19171,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
19015
19171
  */
19016
19172
  type CircuitJson = AnyCircuitElement[];
19017
19173
 
19018
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 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 PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceTrace, type SourceTraceNotConnected, type SourceTraceNotConnectedInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_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_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, 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_trace, source_trace_not_connected, supplier_name, time, visible_layer, voltage };
19174
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, 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 PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 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 PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_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, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, 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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage };