circuit-json 0.0.435 → 0.0.437

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -26312,6 +26312,62 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
26312
26312
  }>;
26313
26313
  type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
26314
26314
 
26315
+ interface SimulationTransientCurrentGraph {
26316
+ type: "simulation_transient_current_graph";
26317
+ simulation_transient_current_graph_id: string;
26318
+ simulation_experiment_id: string;
26319
+ timestamps_ms?: number[];
26320
+ current_levels: number[];
26321
+ source_component_id?: string;
26322
+ subcircuit_connectivity_map_key?: string;
26323
+ time_per_step: number;
26324
+ start_time_ms: number;
26325
+ end_time_ms: number;
26326
+ name?: string;
26327
+ color?: string;
26328
+ }
26329
+ declare const simulation_transient_current_graph: z.ZodObject<{
26330
+ type: z.ZodLiteral<"simulation_transient_current_graph">;
26331
+ simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
26332
+ simulation_experiment_id: z.ZodString;
26333
+ timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
26334
+ current_levels: z.ZodArray<z.ZodNumber, "many">;
26335
+ source_component_id: z.ZodOptional<z.ZodString>;
26336
+ subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
26337
+ time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
26338
+ start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
26339
+ end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
26340
+ name: z.ZodOptional<z.ZodString>;
26341
+ color: z.ZodOptional<z.ZodString>;
26342
+ }, "strip", z.ZodTypeAny, {
26343
+ type: "simulation_transient_current_graph";
26344
+ simulation_experiment_id: string;
26345
+ time_per_step: number;
26346
+ start_time_ms: number;
26347
+ end_time_ms: number;
26348
+ simulation_transient_current_graph_id: string;
26349
+ current_levels: number[];
26350
+ name?: string | undefined;
26351
+ source_component_id?: string | undefined;
26352
+ subcircuit_connectivity_map_key?: string | undefined;
26353
+ color?: string | undefined;
26354
+ timestamps_ms?: number[] | undefined;
26355
+ }, {
26356
+ type: "simulation_transient_current_graph";
26357
+ simulation_experiment_id: string;
26358
+ time_per_step: string | number;
26359
+ start_time_ms: string | number;
26360
+ end_time_ms: string | number;
26361
+ current_levels: number[];
26362
+ name?: string | undefined;
26363
+ source_component_id?: string | undefined;
26364
+ subcircuit_connectivity_map_key?: string | undefined;
26365
+ color?: string | undefined;
26366
+ timestamps_ms?: number[] | undefined;
26367
+ simulation_transient_current_graph_id?: string | undefined;
26368
+ }>;
26369
+ type SimulationTransientCurrentGraphInput = z.input<typeof simulation_transient_current_graph>;
26370
+
26315
26371
  declare const simulation_switch: z.ZodObject<{
26316
26372
  type: z.ZodLiteral<"simulation_switch">;
26317
26373
  simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -26486,6 +26542,143 @@ interface SimulationVoltageProbeDisplayOptions {
26486
26542
  units_per_div?: number;
26487
26543
  }
26488
26544
 
26545
+ declare const simulation_current_probe_display_options: z.ZodObject<{
26546
+ label: z.ZodOptional<z.ZodString>;
26547
+ center: z.ZodOptional<z.ZodNumber>;
26548
+ offset_divs: z.ZodOptional<z.ZodNumber>;
26549
+ units_per_div: z.ZodOptional<z.ZodNumber>;
26550
+ }, "strip", z.ZodTypeAny, {
26551
+ center?: number | undefined;
26552
+ label?: string | undefined;
26553
+ offset_divs?: number | undefined;
26554
+ units_per_div?: number | undefined;
26555
+ }, {
26556
+ center?: number | undefined;
26557
+ label?: string | undefined;
26558
+ offset_divs?: number | undefined;
26559
+ units_per_div?: number | undefined;
26560
+ }>;
26561
+ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26562
+ type: z.ZodLiteral<"simulation_current_probe">;
26563
+ simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
26564
+ source_component_id: z.ZodOptional<z.ZodString>;
26565
+ name: z.ZodOptional<z.ZodString>;
26566
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
26567
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
26568
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
26569
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
26570
+ subcircuit_id: z.ZodOptional<z.ZodString>;
26571
+ color: z.ZodOptional<z.ZodString>;
26572
+ display_options: z.ZodOptional<z.ZodObject<{
26573
+ label: z.ZodOptional<z.ZodString>;
26574
+ center: z.ZodOptional<z.ZodNumber>;
26575
+ offset_divs: z.ZodOptional<z.ZodNumber>;
26576
+ units_per_div: z.ZodOptional<z.ZodNumber>;
26577
+ }, "strip", z.ZodTypeAny, {
26578
+ center?: number | undefined;
26579
+ label?: string | undefined;
26580
+ offset_divs?: number | undefined;
26581
+ units_per_div?: number | undefined;
26582
+ }, {
26583
+ center?: number | undefined;
26584
+ label?: string | undefined;
26585
+ offset_divs?: number | undefined;
26586
+ units_per_div?: number | undefined;
26587
+ }>>;
26588
+ }, "strip", z.ZodTypeAny, {
26589
+ type: "simulation_current_probe";
26590
+ simulation_current_probe_id: string;
26591
+ name?: string | undefined;
26592
+ source_component_id?: string | undefined;
26593
+ subcircuit_id?: string | undefined;
26594
+ color?: string | undefined;
26595
+ positive_source_port_id?: string | undefined;
26596
+ negative_source_port_id?: string | undefined;
26597
+ positive_source_net_id?: string | undefined;
26598
+ negative_source_net_id?: string | undefined;
26599
+ display_options?: {
26600
+ center?: number | undefined;
26601
+ label?: string | undefined;
26602
+ offset_divs?: number | undefined;
26603
+ units_per_div?: number | undefined;
26604
+ } | undefined;
26605
+ }, {
26606
+ type: "simulation_current_probe";
26607
+ name?: string | undefined;
26608
+ source_component_id?: string | undefined;
26609
+ subcircuit_id?: string | undefined;
26610
+ color?: string | undefined;
26611
+ positive_source_port_id?: string | undefined;
26612
+ negative_source_port_id?: string | undefined;
26613
+ positive_source_net_id?: string | undefined;
26614
+ negative_source_net_id?: string | undefined;
26615
+ display_options?: {
26616
+ center?: number | undefined;
26617
+ label?: string | undefined;
26618
+ offset_divs?: number | undefined;
26619
+ units_per_div?: number | undefined;
26620
+ } | undefined;
26621
+ simulation_current_probe_id?: string | undefined;
26622
+ }>, {
26623
+ type: "simulation_current_probe";
26624
+ simulation_current_probe_id: string;
26625
+ name?: string | undefined;
26626
+ source_component_id?: string | undefined;
26627
+ subcircuit_id?: string | undefined;
26628
+ color?: string | undefined;
26629
+ positive_source_port_id?: string | undefined;
26630
+ negative_source_port_id?: string | undefined;
26631
+ positive_source_net_id?: string | undefined;
26632
+ negative_source_net_id?: string | undefined;
26633
+ display_options?: {
26634
+ center?: number | undefined;
26635
+ label?: string | undefined;
26636
+ offset_divs?: number | undefined;
26637
+ units_per_div?: number | undefined;
26638
+ } | undefined;
26639
+ }, {
26640
+ type: "simulation_current_probe";
26641
+ name?: string | undefined;
26642
+ source_component_id?: string | undefined;
26643
+ subcircuit_id?: string | undefined;
26644
+ color?: string | undefined;
26645
+ positive_source_port_id?: string | undefined;
26646
+ negative_source_port_id?: string | undefined;
26647
+ positive_source_net_id?: string | undefined;
26648
+ negative_source_net_id?: string | undefined;
26649
+ display_options?: {
26650
+ center?: number | undefined;
26651
+ label?: string | undefined;
26652
+ offset_divs?: number | undefined;
26653
+ units_per_div?: number | undefined;
26654
+ } | undefined;
26655
+ simulation_current_probe_id?: string | undefined;
26656
+ }>;
26657
+ type SimulationCurrentProbeInput = z.input<typeof simulation_current_probe>;
26658
+ /**
26659
+ * Defines a current probe for simulation. It measures current flowing from the
26660
+ * positive endpoint to the negative endpoint.
26661
+ */
26662
+ interface SimulationCurrentProbe {
26663
+ type: "simulation_current_probe";
26664
+ simulation_current_probe_id: string;
26665
+ source_component_id?: string;
26666
+ name?: string;
26667
+ positive_source_port_id?: string;
26668
+ negative_source_port_id?: string;
26669
+ positive_source_net_id?: string;
26670
+ negative_source_net_id?: string;
26671
+ subcircuit_id?: string;
26672
+ color?: string;
26673
+ display_options?: SimulationCurrentProbeDisplayOptions;
26674
+ }
26675
+ interface SimulationCurrentProbeDisplayOptions {
26676
+ label?: string;
26677
+ center?: number;
26678
+ offset_divs?: number;
26679
+ units_per_div?: number;
26680
+ }
26681
+
26489
26682
  declare const simulation_unknown_experiment_error: z.ZodObject<{
26490
26683
  message: z.ZodString;
26491
26684
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -27163,6 +27356,55 @@ interface SourceSimpleCurrentSource extends SourceComponentBase {
27163
27356
  duty_cycle?: number;
27164
27357
  }
27165
27358
 
27359
+ declare const source_simple_ammeter: z.ZodObject<{
27360
+ type: z.ZodLiteral<"source_component">;
27361
+ source_component_id: z.ZodString;
27362
+ name: z.ZodString;
27363
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
27364
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
27365
+ display_value: z.ZodOptional<z.ZodString>;
27366
+ display_name: z.ZodOptional<z.ZodString>;
27367
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
27368
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
27369
+ source_group_id: z.ZodOptional<z.ZodString>;
27370
+ subcircuit_id: z.ZodOptional<z.ZodString>;
27371
+ } & {
27372
+ ftype: z.ZodLiteral<"simple_ammeter">;
27373
+ }, "strip", z.ZodTypeAny, {
27374
+ type: "source_component";
27375
+ name: string;
27376
+ source_component_id: string;
27377
+ ftype: "simple_ammeter";
27378
+ subcircuit_id?: string | undefined;
27379
+ source_group_id?: string | undefined;
27380
+ manufacturer_part_number?: string | undefined;
27381
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27382
+ display_value?: string | undefined;
27383
+ display_name?: string | undefined;
27384
+ are_pins_interchangeable?: boolean | undefined;
27385
+ internally_connected_source_port_ids?: string[][] | undefined;
27386
+ }, {
27387
+ type: "source_component";
27388
+ name: string;
27389
+ source_component_id: string;
27390
+ ftype: "simple_ammeter";
27391
+ subcircuit_id?: string | undefined;
27392
+ source_group_id?: string | undefined;
27393
+ manufacturer_part_number?: string | undefined;
27394
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27395
+ display_value?: string | undefined;
27396
+ display_name?: string | undefined;
27397
+ are_pins_interchangeable?: boolean | undefined;
27398
+ internally_connected_source_port_ids?: string[][] | undefined;
27399
+ }>;
27400
+ type SourceSimpleAmmeterInput = z.input<typeof source_simple_ammeter>;
27401
+ /**
27402
+ * Defines a simple ammeter component for simulation and measurement
27403
+ */
27404
+ interface SourceSimpleAmmeter extends SourceComponentBase {
27405
+ ftype: "simple_ammeter";
27406
+ }
27407
+
27166
27408
  declare const source_pin_attributes: z.ZodObject<{
27167
27409
  must_be_connected: z.ZodOptional<z.ZodBoolean>;
27168
27410
  provides_power: z.ZodOptional<z.ZodBoolean>;
@@ -29160,6 +29402,46 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29160
29402
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
29161
29403
  source_group_id: z.ZodOptional<z.ZodString>;
29162
29404
  subcircuit_id: z.ZodOptional<z.ZodString>;
29405
+ } & {
29406
+ ftype: z.ZodLiteral<"simple_ammeter">;
29407
+ }, "strip", z.ZodTypeAny, {
29408
+ type: "source_component";
29409
+ name: string;
29410
+ source_component_id: string;
29411
+ ftype: "simple_ammeter";
29412
+ subcircuit_id?: string | undefined;
29413
+ source_group_id?: string | undefined;
29414
+ manufacturer_part_number?: string | undefined;
29415
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29416
+ display_value?: string | undefined;
29417
+ display_name?: string | undefined;
29418
+ are_pins_interchangeable?: boolean | undefined;
29419
+ internally_connected_source_port_ids?: string[][] | undefined;
29420
+ }, {
29421
+ type: "source_component";
29422
+ name: string;
29423
+ source_component_id: string;
29424
+ ftype: "simple_ammeter";
29425
+ subcircuit_id?: string | undefined;
29426
+ source_group_id?: string | undefined;
29427
+ manufacturer_part_number?: string | undefined;
29428
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29429
+ display_value?: string | undefined;
29430
+ display_name?: string | undefined;
29431
+ are_pins_interchangeable?: boolean | undefined;
29432
+ internally_connected_source_port_ids?: string[][] | undefined;
29433
+ }>, z.ZodObject<{
29434
+ type: z.ZodLiteral<"source_component">;
29435
+ source_component_id: z.ZodString;
29436
+ name: z.ZodString;
29437
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
29438
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
29439
+ display_value: z.ZodOptional<z.ZodString>;
29440
+ display_name: z.ZodOptional<z.ZodString>;
29441
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
29442
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
29443
+ source_group_id: z.ZodOptional<z.ZodString>;
29444
+ subcircuit_id: z.ZodOptional<z.ZodString>;
29163
29445
  } & {
29164
29446
  ftype: z.ZodLiteral<"simple_battery">;
29165
29447
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -30281,7 +30563,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30281
30563
  * Deprecated: use `AnySourceElement` instead
30282
30564
  */
30283
30565
  type AnySourceComponent = z.infer<typeof any_source_component>;
30284
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30566
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30285
30567
 
30286
30568
  declare const source_port: z.ZodObject<{
30287
30569
  type: z.ZodLiteral<"source_port">;
@@ -34405,6 +34687,46 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34405
34687
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
34406
34688
  source_group_id: z.ZodOptional<z.ZodString>;
34407
34689
  subcircuit_id: z.ZodOptional<z.ZodString>;
34690
+ } & {
34691
+ ftype: z.ZodLiteral<"simple_ammeter">;
34692
+ }, "strip", z.ZodTypeAny, {
34693
+ type: "source_component";
34694
+ name: string;
34695
+ source_component_id: string;
34696
+ ftype: "simple_ammeter";
34697
+ subcircuit_id?: string | undefined;
34698
+ source_group_id?: string | undefined;
34699
+ manufacturer_part_number?: string | undefined;
34700
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34701
+ display_value?: string | undefined;
34702
+ display_name?: string | undefined;
34703
+ are_pins_interchangeable?: boolean | undefined;
34704
+ internally_connected_source_port_ids?: string[][] | undefined;
34705
+ }, {
34706
+ type: "source_component";
34707
+ name: string;
34708
+ source_component_id: string;
34709
+ ftype: "simple_ammeter";
34710
+ subcircuit_id?: string | undefined;
34711
+ source_group_id?: string | undefined;
34712
+ manufacturer_part_number?: string | undefined;
34713
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34714
+ display_value?: string | undefined;
34715
+ display_name?: string | undefined;
34716
+ are_pins_interchangeable?: boolean | undefined;
34717
+ internally_connected_source_port_ids?: string[][] | undefined;
34718
+ }>, z.ZodObject<{
34719
+ type: z.ZodLiteral<"source_component">;
34720
+ source_component_id: z.ZodString;
34721
+ name: z.ZodString;
34722
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
34723
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
34724
+ display_value: z.ZodOptional<z.ZodString>;
34725
+ display_name: z.ZodOptional<z.ZodString>;
34726
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
34727
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
34728
+ source_group_id: z.ZodOptional<z.ZodString>;
34729
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34408
34730
  } & {
34409
34731
  ftype: z.ZodLiteral<"simple_battery">;
34410
34732
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -52255,6 +52577,45 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52255
52577
  color?: string | undefined;
52256
52578
  simulation_transient_voltage_graph_id?: string | undefined;
52257
52579
  timestamps_ms?: number[] | undefined;
52580
+ }>, z.ZodObject<{
52581
+ type: z.ZodLiteral<"simulation_transient_current_graph">;
52582
+ simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52583
+ simulation_experiment_id: z.ZodString;
52584
+ timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
52585
+ current_levels: z.ZodArray<z.ZodNumber, "many">;
52586
+ source_component_id: z.ZodOptional<z.ZodString>;
52587
+ subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
52588
+ time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
52589
+ start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
52590
+ end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
52591
+ name: z.ZodOptional<z.ZodString>;
52592
+ color: z.ZodOptional<z.ZodString>;
52593
+ }, "strip", z.ZodTypeAny, {
52594
+ type: "simulation_transient_current_graph";
52595
+ simulation_experiment_id: string;
52596
+ time_per_step: number;
52597
+ start_time_ms: number;
52598
+ end_time_ms: number;
52599
+ simulation_transient_current_graph_id: string;
52600
+ current_levels: number[];
52601
+ name?: string | undefined;
52602
+ source_component_id?: string | undefined;
52603
+ subcircuit_connectivity_map_key?: string | undefined;
52604
+ color?: string | undefined;
52605
+ timestamps_ms?: number[] | undefined;
52606
+ }, {
52607
+ type: "simulation_transient_current_graph";
52608
+ simulation_experiment_id: string;
52609
+ time_per_step: string | number;
52610
+ start_time_ms: string | number;
52611
+ end_time_ms: string | number;
52612
+ current_levels: number[];
52613
+ name?: string | undefined;
52614
+ source_component_id?: string | undefined;
52615
+ subcircuit_connectivity_map_key?: string | undefined;
52616
+ color?: string | undefined;
52617
+ timestamps_ms?: number[] | undefined;
52618
+ simulation_transient_current_graph_id?: string | undefined;
52258
52619
  }>, z.ZodObject<{
52259
52620
  type: z.ZodLiteral<"simulation_switch">;
52260
52621
  simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -52374,6 +52735,101 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52374
52735
  offset_divs?: number | undefined;
52375
52736
  units_per_div?: number | undefined;
52376
52737
  } | undefined;
52738
+ }>, z.ZodEffects<z.ZodObject<{
52739
+ type: z.ZodLiteral<"simulation_current_probe">;
52740
+ simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52741
+ source_component_id: z.ZodOptional<z.ZodString>;
52742
+ name: z.ZodOptional<z.ZodString>;
52743
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
52744
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
52745
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
52746
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
52747
+ subcircuit_id: z.ZodOptional<z.ZodString>;
52748
+ color: z.ZodOptional<z.ZodString>;
52749
+ display_options: z.ZodOptional<z.ZodObject<{
52750
+ label: z.ZodOptional<z.ZodString>;
52751
+ center: z.ZodOptional<z.ZodNumber>;
52752
+ offset_divs: z.ZodOptional<z.ZodNumber>;
52753
+ units_per_div: z.ZodOptional<z.ZodNumber>;
52754
+ }, "strip", z.ZodTypeAny, {
52755
+ center?: number | undefined;
52756
+ label?: string | undefined;
52757
+ offset_divs?: number | undefined;
52758
+ units_per_div?: number | undefined;
52759
+ }, {
52760
+ center?: number | undefined;
52761
+ label?: string | undefined;
52762
+ offset_divs?: number | undefined;
52763
+ units_per_div?: number | undefined;
52764
+ }>>;
52765
+ }, "strip", z.ZodTypeAny, {
52766
+ type: "simulation_current_probe";
52767
+ simulation_current_probe_id: string;
52768
+ name?: string | undefined;
52769
+ source_component_id?: string | undefined;
52770
+ subcircuit_id?: string | undefined;
52771
+ color?: string | undefined;
52772
+ positive_source_port_id?: string | undefined;
52773
+ negative_source_port_id?: string | undefined;
52774
+ positive_source_net_id?: string | undefined;
52775
+ negative_source_net_id?: string | undefined;
52776
+ display_options?: {
52777
+ center?: number | undefined;
52778
+ label?: string | undefined;
52779
+ offset_divs?: number | undefined;
52780
+ units_per_div?: number | undefined;
52781
+ } | undefined;
52782
+ }, {
52783
+ type: "simulation_current_probe";
52784
+ name?: string | undefined;
52785
+ source_component_id?: string | undefined;
52786
+ subcircuit_id?: string | undefined;
52787
+ color?: string | undefined;
52788
+ positive_source_port_id?: string | undefined;
52789
+ negative_source_port_id?: string | undefined;
52790
+ positive_source_net_id?: string | undefined;
52791
+ negative_source_net_id?: string | undefined;
52792
+ display_options?: {
52793
+ center?: number | undefined;
52794
+ label?: string | undefined;
52795
+ offset_divs?: number | undefined;
52796
+ units_per_div?: number | undefined;
52797
+ } | undefined;
52798
+ simulation_current_probe_id?: string | undefined;
52799
+ }>, {
52800
+ type: "simulation_current_probe";
52801
+ simulation_current_probe_id: string;
52802
+ name?: string | undefined;
52803
+ source_component_id?: string | undefined;
52804
+ subcircuit_id?: string | undefined;
52805
+ color?: string | undefined;
52806
+ positive_source_port_id?: string | undefined;
52807
+ negative_source_port_id?: string | undefined;
52808
+ positive_source_net_id?: string | undefined;
52809
+ negative_source_net_id?: string | undefined;
52810
+ display_options?: {
52811
+ center?: number | undefined;
52812
+ label?: string | undefined;
52813
+ offset_divs?: number | undefined;
52814
+ units_per_div?: number | undefined;
52815
+ } | undefined;
52816
+ }, {
52817
+ type: "simulation_current_probe";
52818
+ name?: string | undefined;
52819
+ source_component_id?: string | undefined;
52820
+ subcircuit_id?: string | undefined;
52821
+ color?: string | undefined;
52822
+ positive_source_port_id?: string | undefined;
52823
+ negative_source_port_id?: string | undefined;
52824
+ positive_source_net_id?: string | undefined;
52825
+ negative_source_net_id?: string | undefined;
52826
+ display_options?: {
52827
+ center?: number | undefined;
52828
+ label?: string | undefined;
52829
+ offset_divs?: number | undefined;
52830
+ units_per_div?: number | undefined;
52831
+ } | undefined;
52832
+ simulation_current_probe_id?: string | undefined;
52377
52833
  }>, z.ZodObject<{
52378
52834
  message: z.ZodString;
52379
52835
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -53058,6 +53514,46 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53058
53514
  internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
53059
53515
  source_group_id: z.ZodOptional<z.ZodString>;
53060
53516
  subcircuit_id: z.ZodOptional<z.ZodString>;
53517
+ } & {
53518
+ ftype: z.ZodLiteral<"simple_ammeter">;
53519
+ }, "strip", z.ZodTypeAny, {
53520
+ type: "source_component";
53521
+ name: string;
53522
+ source_component_id: string;
53523
+ ftype: "simple_ammeter";
53524
+ subcircuit_id?: string | undefined;
53525
+ source_group_id?: string | undefined;
53526
+ manufacturer_part_number?: string | undefined;
53527
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53528
+ display_value?: string | undefined;
53529
+ display_name?: string | undefined;
53530
+ are_pins_interchangeable?: boolean | undefined;
53531
+ internally_connected_source_port_ids?: string[][] | undefined;
53532
+ }, {
53533
+ type: "source_component";
53534
+ name: string;
53535
+ source_component_id: string;
53536
+ ftype: "simple_ammeter";
53537
+ subcircuit_id?: string | undefined;
53538
+ source_group_id?: string | undefined;
53539
+ manufacturer_part_number?: string | undefined;
53540
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53541
+ display_value?: string | undefined;
53542
+ display_name?: string | undefined;
53543
+ are_pins_interchangeable?: boolean | undefined;
53544
+ internally_connected_source_port_ids?: string[][] | undefined;
53545
+ }>, z.ZodObject<{
53546
+ type: z.ZodLiteral<"source_component">;
53547
+ source_component_id: z.ZodString;
53548
+ name: z.ZodString;
53549
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
53550
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
53551
+ display_value: z.ZodOptional<z.ZodString>;
53552
+ display_name: z.ZodOptional<z.ZodString>;
53553
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
53554
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
53555
+ source_group_id: z.ZodOptional<z.ZodString>;
53556
+ subcircuit_id: z.ZodOptional<z.ZodString>;
53061
53557
  } & {
53062
53558
  ftype: z.ZodLiteral<"simple_battery">;
53063
53559
  capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
@@ -70908,6 +71404,45 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
70908
71404
  color?: string | undefined;
70909
71405
  simulation_transient_voltage_graph_id?: string | undefined;
70910
71406
  timestamps_ms?: number[] | undefined;
71407
+ }>, z.ZodObject<{
71408
+ type: z.ZodLiteral<"simulation_transient_current_graph">;
71409
+ simulation_transient_current_graph_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
71410
+ simulation_experiment_id: z.ZodString;
71411
+ timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
71412
+ current_levels: z.ZodArray<z.ZodNumber, "many">;
71413
+ source_component_id: z.ZodOptional<z.ZodString>;
71414
+ subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
71415
+ time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
71416
+ start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
71417
+ end_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
71418
+ name: z.ZodOptional<z.ZodString>;
71419
+ color: z.ZodOptional<z.ZodString>;
71420
+ }, "strip", z.ZodTypeAny, {
71421
+ type: "simulation_transient_current_graph";
71422
+ simulation_experiment_id: string;
71423
+ time_per_step: number;
71424
+ start_time_ms: number;
71425
+ end_time_ms: number;
71426
+ simulation_transient_current_graph_id: string;
71427
+ current_levels: number[];
71428
+ name?: string | undefined;
71429
+ source_component_id?: string | undefined;
71430
+ subcircuit_connectivity_map_key?: string | undefined;
71431
+ color?: string | undefined;
71432
+ timestamps_ms?: number[] | undefined;
71433
+ }, {
71434
+ type: "simulation_transient_current_graph";
71435
+ simulation_experiment_id: string;
71436
+ time_per_step: string | number;
71437
+ start_time_ms: string | number;
71438
+ end_time_ms: string | number;
71439
+ current_levels: number[];
71440
+ name?: string | undefined;
71441
+ source_component_id?: string | undefined;
71442
+ subcircuit_connectivity_map_key?: string | undefined;
71443
+ color?: string | undefined;
71444
+ timestamps_ms?: number[] | undefined;
71445
+ simulation_transient_current_graph_id?: string | undefined;
70911
71446
  }>, z.ZodObject<{
70912
71447
  type: z.ZodLiteral<"simulation_switch">;
70913
71448
  simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -71027,6 +71562,101 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71027
71562
  offset_divs?: number | undefined;
71028
71563
  units_per_div?: number | undefined;
71029
71564
  } | undefined;
71565
+ }>, z.ZodEffects<z.ZodObject<{
71566
+ type: z.ZodLiteral<"simulation_current_probe">;
71567
+ simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
71568
+ source_component_id: z.ZodOptional<z.ZodString>;
71569
+ name: z.ZodOptional<z.ZodString>;
71570
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
71571
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
71572
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
71573
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
71574
+ subcircuit_id: z.ZodOptional<z.ZodString>;
71575
+ color: z.ZodOptional<z.ZodString>;
71576
+ display_options: z.ZodOptional<z.ZodObject<{
71577
+ label: z.ZodOptional<z.ZodString>;
71578
+ center: z.ZodOptional<z.ZodNumber>;
71579
+ offset_divs: z.ZodOptional<z.ZodNumber>;
71580
+ units_per_div: z.ZodOptional<z.ZodNumber>;
71581
+ }, "strip", z.ZodTypeAny, {
71582
+ center?: number | undefined;
71583
+ label?: string | undefined;
71584
+ offset_divs?: number | undefined;
71585
+ units_per_div?: number | undefined;
71586
+ }, {
71587
+ center?: number | undefined;
71588
+ label?: string | undefined;
71589
+ offset_divs?: number | undefined;
71590
+ units_per_div?: number | undefined;
71591
+ }>>;
71592
+ }, "strip", z.ZodTypeAny, {
71593
+ type: "simulation_current_probe";
71594
+ simulation_current_probe_id: string;
71595
+ name?: string | undefined;
71596
+ source_component_id?: string | undefined;
71597
+ subcircuit_id?: string | undefined;
71598
+ color?: string | undefined;
71599
+ positive_source_port_id?: string | undefined;
71600
+ negative_source_port_id?: string | undefined;
71601
+ positive_source_net_id?: string | undefined;
71602
+ negative_source_net_id?: string | undefined;
71603
+ display_options?: {
71604
+ center?: number | undefined;
71605
+ label?: string | undefined;
71606
+ offset_divs?: number | undefined;
71607
+ units_per_div?: number | undefined;
71608
+ } | undefined;
71609
+ }, {
71610
+ type: "simulation_current_probe";
71611
+ name?: string | undefined;
71612
+ source_component_id?: string | undefined;
71613
+ subcircuit_id?: string | undefined;
71614
+ color?: string | undefined;
71615
+ positive_source_port_id?: string | undefined;
71616
+ negative_source_port_id?: string | undefined;
71617
+ positive_source_net_id?: string | undefined;
71618
+ negative_source_net_id?: string | undefined;
71619
+ display_options?: {
71620
+ center?: number | undefined;
71621
+ label?: string | undefined;
71622
+ offset_divs?: number | undefined;
71623
+ units_per_div?: number | undefined;
71624
+ } | undefined;
71625
+ simulation_current_probe_id?: string | undefined;
71626
+ }>, {
71627
+ type: "simulation_current_probe";
71628
+ simulation_current_probe_id: string;
71629
+ name?: string | undefined;
71630
+ source_component_id?: string | undefined;
71631
+ subcircuit_id?: string | undefined;
71632
+ color?: string | undefined;
71633
+ positive_source_port_id?: string | undefined;
71634
+ negative_source_port_id?: string | undefined;
71635
+ positive_source_net_id?: string | undefined;
71636
+ negative_source_net_id?: string | undefined;
71637
+ display_options?: {
71638
+ center?: number | undefined;
71639
+ label?: string | undefined;
71640
+ offset_divs?: number | undefined;
71641
+ units_per_div?: number | undefined;
71642
+ } | undefined;
71643
+ }, {
71644
+ type: "simulation_current_probe";
71645
+ name?: string | undefined;
71646
+ source_component_id?: string | undefined;
71647
+ subcircuit_id?: string | undefined;
71648
+ color?: string | undefined;
71649
+ positive_source_port_id?: string | undefined;
71650
+ negative_source_port_id?: string | undefined;
71651
+ positive_source_net_id?: string | undefined;
71652
+ negative_source_net_id?: string | undefined;
71653
+ display_options?: {
71654
+ center?: number | undefined;
71655
+ label?: string | undefined;
71656
+ offset_divs?: number | undefined;
71657
+ units_per_div?: number | undefined;
71658
+ } | undefined;
71659
+ simulation_current_probe_id?: string | undefined;
71030
71660
  }>, z.ZodObject<{
71031
71661
  message: z.ZodString;
71032
71662
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -71114,4 +71744,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
71114
71744
  */
71115
71745
  type CircuitJson = AnyCircuitElement[];
71116
71746
 
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 };
71747
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentProbe, type SimulationCurrentProbeDisplayOptions, type SimulationCurrentProbeInput, 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 SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, 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 SourceSimpleAmmeter, type SourceSimpleAmmeterInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_graphic, pcb_silkscreen_graphic_brep, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_probe_display_options, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, 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_ammeter, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };