circuit-json 0.0.434 → 0.0.435

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
@@ -1110,6 +1110,11 @@ interface SourceSimpleVoltageSource extends SourceComponentBase {
1110
1110
  wave_shape?: "sinewave" | "square" | "triangle" | "sawtooth"
1111
1111
  phase?: number
1112
1112
  duty_cycle?: number
1113
+ pulse_delay?: number // ms
1114
+ rise_time?: number // ms
1115
+ fall_time?: number // ms
1116
+ pulse_width?: number // ms
1117
+ period?: number // ms
1113
1118
  }
1114
1119
  ```
1115
1120
 
@@ -3293,6 +3298,14 @@ interface SimulationExperiment {
3293
3298
  time_per_step?: number // ms
3294
3299
  start_time_ms?: number // ms
3295
3300
  end_time_ms?: number // ms
3301
+ spice_options?: SpiceSimulationOptions
3302
+ }
3303
+
3304
+ interface SpiceSimulationOptions {
3305
+ method?: "trap" | "gear"
3306
+ reltol?: number | string
3307
+ abstol?: number | string
3308
+ vntol?: number | string
3296
3309
  }
3297
3310
  ```
3298
3311
 
@@ -3412,6 +3425,14 @@ interface SimulationVoltageProbe {
3412
3425
  reference_input_source_net_id?: string
3413
3426
  subcircuit_id?: string
3414
3427
  color?: string
3428
+ display_options?: SimulationVoltageProbeDisplayOptions
3429
+ }
3430
+
3431
+ interface SimulationVoltageProbeDisplayOptions {
3432
+ label?: string
3433
+ center?: number
3434
+ offset_divs?: number
3435
+ units_per_div?: number
3415
3436
  }
3416
3437
  ```
3417
3438
 
@@ -3452,6 +3473,11 @@ interface SimulationAcVoltageSource {
3452
3473
  wave_shape?: WaveShape
3453
3474
  phase?: number
3454
3475
  duty_cycle?: number
3476
+ pulse_delay?: number // ms
3477
+ rise_time?: number // ms
3478
+ fall_time?: number // ms
3479
+ pulse_width?: number // ms
3480
+ period?: number // ms
3455
3481
  }
3456
3482
  ```
3457
3483
 
package/dist/index.d.mts CHANGED
@@ -26348,6 +26348,22 @@ interface SimulationSwitch {
26348
26348
  switching_frequency?: number;
26349
26349
  }
26350
26350
 
26351
+ declare const simulation_voltage_probe_display_options: z.ZodObject<{
26352
+ label: z.ZodOptional<z.ZodString>;
26353
+ center: z.ZodOptional<z.ZodNumber>;
26354
+ offset_divs: z.ZodOptional<z.ZodNumber>;
26355
+ units_per_div: z.ZodOptional<z.ZodNumber>;
26356
+ }, "strip", z.ZodTypeAny, {
26357
+ center?: number | undefined;
26358
+ label?: string | undefined;
26359
+ offset_divs?: number | undefined;
26360
+ units_per_div?: number | undefined;
26361
+ }, {
26362
+ center?: number | undefined;
26363
+ label?: string | undefined;
26364
+ offset_divs?: number | undefined;
26365
+ units_per_div?: number | undefined;
26366
+ }>;
26351
26367
  declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26352
26368
  type: z.ZodLiteral<"simulation_voltage_probe">;
26353
26369
  simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -26359,6 +26375,22 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26359
26375
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
26360
26376
  subcircuit_id: z.ZodOptional<z.ZodString>;
26361
26377
  color: z.ZodOptional<z.ZodString>;
26378
+ display_options: z.ZodOptional<z.ZodObject<{
26379
+ label: z.ZodOptional<z.ZodString>;
26380
+ center: z.ZodOptional<z.ZodNumber>;
26381
+ offset_divs: z.ZodOptional<z.ZodNumber>;
26382
+ units_per_div: z.ZodOptional<z.ZodNumber>;
26383
+ }, "strip", z.ZodTypeAny, {
26384
+ center?: number | undefined;
26385
+ label?: string | undefined;
26386
+ offset_divs?: number | undefined;
26387
+ units_per_div?: number | undefined;
26388
+ }, {
26389
+ center?: number | undefined;
26390
+ label?: string | undefined;
26391
+ offset_divs?: number | undefined;
26392
+ units_per_div?: number | undefined;
26393
+ }>>;
26362
26394
  }, "strip", z.ZodTypeAny, {
26363
26395
  type: "simulation_voltage_probe";
26364
26396
  simulation_voltage_probe_id: string;
@@ -26370,6 +26402,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26370
26402
  signal_input_source_net_id?: string | undefined;
26371
26403
  reference_input_source_port_id?: string | undefined;
26372
26404
  reference_input_source_net_id?: string | undefined;
26405
+ display_options?: {
26406
+ center?: number | undefined;
26407
+ label?: string | undefined;
26408
+ offset_divs?: number | undefined;
26409
+ units_per_div?: number | undefined;
26410
+ } | undefined;
26373
26411
  }, {
26374
26412
  type: "simulation_voltage_probe";
26375
26413
  name?: string | undefined;
@@ -26381,6 +26419,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26381
26419
  signal_input_source_net_id?: string | undefined;
26382
26420
  reference_input_source_port_id?: string | undefined;
26383
26421
  reference_input_source_net_id?: string | undefined;
26422
+ display_options?: {
26423
+ center?: number | undefined;
26424
+ label?: string | undefined;
26425
+ offset_divs?: number | undefined;
26426
+ units_per_div?: number | undefined;
26427
+ } | undefined;
26384
26428
  }>, {
26385
26429
  type: "simulation_voltage_probe";
26386
26430
  simulation_voltage_probe_id: string;
@@ -26392,6 +26436,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26392
26436
  signal_input_source_net_id?: string | undefined;
26393
26437
  reference_input_source_port_id?: string | undefined;
26394
26438
  reference_input_source_net_id?: string | undefined;
26439
+ display_options?: {
26440
+ center?: number | undefined;
26441
+ label?: string | undefined;
26442
+ offset_divs?: number | undefined;
26443
+ units_per_div?: number | undefined;
26444
+ } | undefined;
26395
26445
  }, {
26396
26446
  type: "simulation_voltage_probe";
26397
26447
  name?: string | undefined;
@@ -26403,6 +26453,12 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26403
26453
  signal_input_source_net_id?: string | undefined;
26404
26454
  reference_input_source_port_id?: string | undefined;
26405
26455
  reference_input_source_net_id?: string | undefined;
26456
+ display_options?: {
26457
+ center?: number | undefined;
26458
+ label?: string | undefined;
26459
+ offset_divs?: number | undefined;
26460
+ units_per_div?: number | undefined;
26461
+ } | undefined;
26406
26462
  }>;
26407
26463
  type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
26408
26464
  /**
@@ -26421,6 +26477,13 @@ interface SimulationVoltageProbe {
26421
26477
  reference_input_source_net_id?: string;
26422
26478
  subcircuit_id?: string;
26423
26479
  color?: string;
26480
+ display_options?: SimulationVoltageProbeDisplayOptions;
26481
+ }
26482
+ interface SimulationVoltageProbeDisplayOptions {
26483
+ label?: string;
26484
+ center?: number;
26485
+ offset_divs?: number;
26486
+ units_per_div?: number;
26424
26487
  }
26425
26488
 
26426
26489
  declare const simulation_unknown_experiment_error: z.ZodObject<{
@@ -52227,6 +52290,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52227
52290
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
52228
52291
  subcircuit_id: z.ZodOptional<z.ZodString>;
52229
52292
  color: z.ZodOptional<z.ZodString>;
52293
+ display_options: z.ZodOptional<z.ZodObject<{
52294
+ label: z.ZodOptional<z.ZodString>;
52295
+ center: z.ZodOptional<z.ZodNumber>;
52296
+ offset_divs: z.ZodOptional<z.ZodNumber>;
52297
+ units_per_div: z.ZodOptional<z.ZodNumber>;
52298
+ }, "strip", z.ZodTypeAny, {
52299
+ center?: number | undefined;
52300
+ label?: string | undefined;
52301
+ offset_divs?: number | undefined;
52302
+ units_per_div?: number | undefined;
52303
+ }, {
52304
+ center?: number | undefined;
52305
+ label?: string | undefined;
52306
+ offset_divs?: number | undefined;
52307
+ units_per_div?: number | undefined;
52308
+ }>>;
52230
52309
  }, "strip", z.ZodTypeAny, {
52231
52310
  type: "simulation_voltage_probe";
52232
52311
  simulation_voltage_probe_id: string;
@@ -52238,6 +52317,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52238
52317
  signal_input_source_net_id?: string | undefined;
52239
52318
  reference_input_source_port_id?: string | undefined;
52240
52319
  reference_input_source_net_id?: string | undefined;
52320
+ display_options?: {
52321
+ center?: number | undefined;
52322
+ label?: string | undefined;
52323
+ offset_divs?: number | undefined;
52324
+ units_per_div?: number | undefined;
52325
+ } | undefined;
52241
52326
  }, {
52242
52327
  type: "simulation_voltage_probe";
52243
52328
  name?: string | undefined;
@@ -52249,6 +52334,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52249
52334
  signal_input_source_net_id?: string | undefined;
52250
52335
  reference_input_source_port_id?: string | undefined;
52251
52336
  reference_input_source_net_id?: string | undefined;
52337
+ display_options?: {
52338
+ center?: number | undefined;
52339
+ label?: string | undefined;
52340
+ offset_divs?: number | undefined;
52341
+ units_per_div?: number | undefined;
52342
+ } | undefined;
52252
52343
  }>, {
52253
52344
  type: "simulation_voltage_probe";
52254
52345
  simulation_voltage_probe_id: string;
@@ -52260,6 +52351,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52260
52351
  signal_input_source_net_id?: string | undefined;
52261
52352
  reference_input_source_port_id?: string | undefined;
52262
52353
  reference_input_source_net_id?: string | undefined;
52354
+ display_options?: {
52355
+ center?: number | undefined;
52356
+ label?: string | undefined;
52357
+ offset_divs?: number | undefined;
52358
+ units_per_div?: number | undefined;
52359
+ } | undefined;
52263
52360
  }, {
52264
52361
  type: "simulation_voltage_probe";
52265
52362
  name?: string | undefined;
@@ -52271,6 +52368,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52271
52368
  signal_input_source_net_id?: string | undefined;
52272
52369
  reference_input_source_port_id?: string | undefined;
52273
52370
  reference_input_source_net_id?: string | undefined;
52371
+ display_options?: {
52372
+ center?: number | undefined;
52373
+ label?: string | undefined;
52374
+ offset_divs?: number | undefined;
52375
+ units_per_div?: number | undefined;
52376
+ } | undefined;
52274
52377
  }>, z.ZodObject<{
52275
52378
  message: z.ZodString;
52276
52379
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -70840,6 +70943,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70840
70943
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
70841
70944
  subcircuit_id: z.ZodOptional<z.ZodString>;
70842
70945
  color: z.ZodOptional<z.ZodString>;
70946
+ display_options: z.ZodOptional<z.ZodObject<{
70947
+ label: z.ZodOptional<z.ZodString>;
70948
+ center: z.ZodOptional<z.ZodNumber>;
70949
+ offset_divs: z.ZodOptional<z.ZodNumber>;
70950
+ units_per_div: z.ZodOptional<z.ZodNumber>;
70951
+ }, "strip", z.ZodTypeAny, {
70952
+ center?: number | undefined;
70953
+ label?: string | undefined;
70954
+ offset_divs?: number | undefined;
70955
+ units_per_div?: number | undefined;
70956
+ }, {
70957
+ center?: number | undefined;
70958
+ label?: string | undefined;
70959
+ offset_divs?: number | undefined;
70960
+ units_per_div?: number | undefined;
70961
+ }>>;
70843
70962
  }, "strip", z.ZodTypeAny, {
70844
70963
  type: "simulation_voltage_probe";
70845
70964
  simulation_voltage_probe_id: string;
@@ -70851,6 +70970,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70851
70970
  signal_input_source_net_id?: string | undefined;
70852
70971
  reference_input_source_port_id?: string | undefined;
70853
70972
  reference_input_source_net_id?: string | undefined;
70973
+ display_options?: {
70974
+ center?: number | undefined;
70975
+ label?: string | undefined;
70976
+ offset_divs?: number | undefined;
70977
+ units_per_div?: number | undefined;
70978
+ } | undefined;
70854
70979
  }, {
70855
70980
  type: "simulation_voltage_probe";
70856
70981
  name?: string | undefined;
@@ -70862,6 +70987,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70862
70987
  signal_input_source_net_id?: string | undefined;
70863
70988
  reference_input_source_port_id?: string | undefined;
70864
70989
  reference_input_source_net_id?: string | undefined;
70990
+ display_options?: {
70991
+ center?: number | undefined;
70992
+ label?: string | undefined;
70993
+ offset_divs?: number | undefined;
70994
+ units_per_div?: number | undefined;
70995
+ } | undefined;
70865
70996
  }>, {
70866
70997
  type: "simulation_voltage_probe";
70867
70998
  simulation_voltage_probe_id: string;
@@ -70873,6 +71004,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70873
71004
  signal_input_source_net_id?: string | undefined;
70874
71005
  reference_input_source_port_id?: string | undefined;
70875
71006
  reference_input_source_net_id?: string | undefined;
71007
+ display_options?: {
71008
+ center?: number | undefined;
71009
+ label?: string | undefined;
71010
+ offset_divs?: number | undefined;
71011
+ units_per_div?: number | undefined;
71012
+ } | undefined;
70876
71013
  }, {
70877
71014
  type: "simulation_voltage_probe";
70878
71015
  name?: string | undefined;
@@ -70884,6 +71021,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70884
71021
  signal_input_source_net_id?: string | undefined;
70885
71022
  reference_input_source_port_id?: string | undefined;
70886
71023
  reference_input_source_net_id?: string | undefined;
71024
+ display_options?: {
71025
+ center?: number | undefined;
71026
+ label?: string | undefined;
71027
+ offset_divs?: number | undefined;
71028
+ units_per_div?: number | undefined;
71029
+ } | undefined;
70887
71030
  }>, z.ZodObject<{
70888
71031
  message: z.ZodString;
70889
71032
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -70971,4 +71114,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
70971
71114
  */
70972
71115
  type CircuitJson = AnyCircuitElement[];
70973
71116
 
70974
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
71117
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeDisplayOptions, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_probe_display_options, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
package/dist/index.mjs CHANGED
@@ -3575,6 +3575,12 @@ expectTypesMatch(true);
3575
3575
 
3576
3576
  // src/simulation/simulation_voltage_probe.ts
3577
3577
  import { z as z167 } from "zod";
3578
+ var simulation_voltage_probe_display_options = z167.object({
3579
+ label: z167.string().optional(),
3580
+ center: z167.number().optional(),
3581
+ offset_divs: z167.number().optional(),
3582
+ units_per_div: z167.number().optional()
3583
+ });
3578
3584
  var simulation_voltage_probe = z167.object({
3579
3585
  type: z167.literal("simulation_voltage_probe"),
3580
3586
  simulation_voltage_probe_id: getZodPrefixedIdWithDefault(
@@ -3587,7 +3593,8 @@ var simulation_voltage_probe = z167.object({
3587
3593
  reference_input_source_port_id: z167.string().optional(),
3588
3594
  reference_input_source_net_id: z167.string().optional(),
3589
3595
  subcircuit_id: z167.string().optional(),
3590
- color: z167.string().optional()
3596
+ color: z167.string().optional(),
3597
+ display_options: simulation_voltage_probe_display_options.optional()
3591
3598
  }).describe(
3592
3599
  "Defines a voltage probe for simulation. If a reference input is not provided, it measures against ground. If a reference input is provided, it measures the differential voltage between two points."
3593
3600
  ).superRefine((data, ctx) => {
@@ -3625,6 +3632,7 @@ var simulation_voltage_probe = z167.object({
3625
3632
  }
3626
3633
  });
3627
3634
  expectTypesMatch(true);
3635
+ expectTypesMatch(true);
3628
3636
 
3629
3637
  // src/simulation/simulation_unknown_experiment_error.ts
3630
3638
  import { z as z168 } from "zod";
@@ -3994,6 +4002,7 @@ export {
3994
4002
  simulation_transient_voltage_graph,
3995
4003
  simulation_unknown_experiment_error,
3996
4004
  simulation_voltage_probe,
4005
+ simulation_voltage_probe_display_options,
3997
4006
  simulation_voltage_source,
3998
4007
  size,
3999
4008
  source_ambiguous_port_reference,