circuit-json 0.0.231 → 0.0.233

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
@@ -54,6 +54,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
54
54
  - [SourcePcbGroundPlane](#sourcepcbgroundplane)
55
55
  - [SourcePort](#sourceport)
56
56
  - [SourceProjectMetadata](#sourceprojectmetadata)
57
+ - [SourcePropertyIgnoredWarning](#sourcepropertyignoredwarning)
57
58
  - [SourceSimpleBattery](#sourcesimplebattery)
58
59
  - [SourceSimpleCapacitor](#sourcesimplecapacitor)
59
60
  - [SourceSimpleChip](#sourcesimplechip)
@@ -355,6 +356,25 @@ interface SourceProjectMetadata {
355
356
  }
356
357
  ```
357
358
 
359
+ ### SourcePropertyIgnoredWarning
360
+
361
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_property_ignored_warning.ts)
362
+
363
+ The source property was ignored
364
+
365
+ ```typescript
366
+ /** The source property was ignored */
367
+ interface SourcePropertyIgnoredWarning {
368
+ type: "source_property_ignored_warning"
369
+ source_property_ignored_warning_id: string
370
+ source_component_id: string
371
+ property_name: string
372
+ subcircuit_id?: string
373
+ error_type: "source_property_ignored_warning"
374
+ message: string
375
+ }
376
+ ```
377
+
358
378
  ### SourceSimpleBattery
359
379
 
360
380
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_battery.ts)
@@ -1815,17 +1835,38 @@ interface SchematicVoltageProbe {
1815
1835
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_voltage_source.ts)
1816
1836
 
1817
1837
  ```typescript
1818
- /** Defines a voltage source for simulation purposes. It applies a voltage
1838
+ type SimulationVoltageSource =
1839
+ | SimulationDcVoltageSource
1840
+ | SimulationAcVoltageSource
1841
+
1842
+ /** Defines a DC voltage source for simulation purposes. It applies a voltage
1819
1843
  * difference between two source ports. */
1820
- interface SimulationVoltageSource {
1844
+ interface SimulationDcVoltageSource {
1821
1845
  type: "simulation_voltage_source"
1822
1846
  simulation_voltage_source_id: string
1823
- positive_source_port_id: string
1824
- positive_source_net_id: string
1825
- negative_source_port_id: string
1826
- negative_source_net_id: string
1847
+ is_dc_source: true
1848
+ positive_source_port_id?: string
1849
+ positive_source_net_id?: string
1850
+ negative_source_port_id?: string
1851
+ negative_source_net_id?: string
1827
1852
  voltage: number
1828
1853
  }
1854
+
1855
+ /** Defines an AC voltage source for simulation purposes. */
1856
+ interface SimulationAcVoltageSource {
1857
+ type: "simulation_voltage_source"
1858
+ simulation_voltage_source_id: string
1859
+ is_dc_source: false
1860
+ terminal1_source_port_id?: string
1861
+ terminal2_source_port_id?: string
1862
+ terminal1_source_net_id?: string
1863
+ terminal2_source_net_id?: string
1864
+ voltage?: number
1865
+ frequency?: number
1866
+ peak_to_peak_voltage?: number
1867
+ wave_shape?: WaveShape
1868
+ phase?: number
1869
+ }
1829
1870
  ```
1830
1871
 
1831
1872
  <!-- circuit-json-docs:end -->
package/dist/index.d.mts CHANGED
@@ -7059,6 +7059,45 @@ interface SourceTraceNotConnectedError {
7059
7059
  selectors_not_found?: string[];
7060
7060
  }
7061
7061
 
7062
+ declare const source_property_ignored_warning: z.ZodObject<{
7063
+ type: z.ZodLiteral<"source_property_ignored_warning">;
7064
+ source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7065
+ source_component_id: z.ZodString;
7066
+ property_name: z.ZodString;
7067
+ subcircuit_id: z.ZodOptional<z.ZodString>;
7068
+ error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
7069
+ message: z.ZodString;
7070
+ }, "strip", z.ZodTypeAny, {
7071
+ message: string;
7072
+ type: "source_property_ignored_warning";
7073
+ source_component_id: string;
7074
+ error_type: "source_property_ignored_warning";
7075
+ property_name: string;
7076
+ source_property_ignored_warning_id: string;
7077
+ subcircuit_id?: string | undefined;
7078
+ }, {
7079
+ message: string;
7080
+ type: "source_property_ignored_warning";
7081
+ source_component_id: string;
7082
+ property_name: string;
7083
+ subcircuit_id?: string | undefined;
7084
+ error_type?: "source_property_ignored_warning" | undefined;
7085
+ source_property_ignored_warning_id?: string | undefined;
7086
+ }>;
7087
+ type SourcePropertyIgnoredWarningInput = z.input<typeof source_property_ignored_warning>;
7088
+ /**
7089
+ * The source property was ignored
7090
+ */
7091
+ interface SourcePropertyIgnoredWarning {
7092
+ type: "source_property_ignored_warning";
7093
+ source_property_ignored_warning_id: string;
7094
+ source_component_id: string;
7095
+ property_name: string;
7096
+ subcircuit_id?: string;
7097
+ error_type: "source_property_ignored_warning";
7098
+ message: string;
7099
+ }
7100
+
7062
7101
  declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7063
7102
  type: z.ZodLiteral<"source_component">;
7064
7103
  source_component_id: z.ZodString;
@@ -7987,12 +8026,36 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
7987
8026
  source_trace_not_connected_error_id?: string | undefined;
7988
8027
  connected_source_port_ids?: string[] | undefined;
7989
8028
  selectors_not_found?: string[] | undefined;
8029
+ }>, z.ZodObject<{
8030
+ type: z.ZodLiteral<"source_property_ignored_warning">;
8031
+ source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8032
+ source_component_id: z.ZodString;
8033
+ property_name: z.ZodString;
8034
+ subcircuit_id: z.ZodOptional<z.ZodString>;
8035
+ error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
8036
+ message: z.ZodString;
8037
+ }, "strip", z.ZodTypeAny, {
8038
+ message: string;
8039
+ type: "source_property_ignored_warning";
8040
+ source_component_id: string;
8041
+ error_type: "source_property_ignored_warning";
8042
+ property_name: string;
8043
+ source_property_ignored_warning_id: string;
8044
+ subcircuit_id?: string | undefined;
8045
+ }, {
8046
+ message: string;
8047
+ type: "source_property_ignored_warning";
8048
+ source_component_id: string;
8049
+ property_name: string;
8050
+ subcircuit_id?: string | undefined;
8051
+ error_type?: "source_property_ignored_warning" | undefined;
8052
+ source_property_ignored_warning_id?: string | undefined;
7990
8053
  }>]>;
7991
8054
  /**
7992
8055
  * Deprecated: use `AnySourceElement` instead
7993
8056
  */
7994
8057
  type AnySourceComponent = z.infer<typeof any_source_component>;
7995
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError;
8058
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning;
7996
8059
 
7997
8060
  declare const source_port: z.ZodObject<{
7998
8061
  type: z.ZodLiteral<"source_port">;
@@ -8333,45 +8396,176 @@ interface CadComponent {
8333
8396
  model_jscad?: any;
8334
8397
  }
8335
8398
 
8336
- declare const simulation_voltage_source: z.ZodObject<{
8399
+ declare const wave_shape: z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>;
8400
+ type WaveShape = z.infer<typeof wave_shape>;
8401
+ declare const simulation_dc_voltage_source: z.ZodObject<{
8337
8402
  type: z.ZodLiteral<"simulation_voltage_source">;
8338
8403
  simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8339
- positive_source_port_id: z.ZodString;
8340
- negative_source_port_id: z.ZodString;
8341
- positive_source_net_id: z.ZodString;
8342
- negative_source_net_id: z.ZodString;
8404
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
8405
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
8406
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
8407
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
8408
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
8343
8409
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8344
8410
  }, "strip", z.ZodTypeAny, {
8345
8411
  type: "simulation_voltage_source";
8346
8412
  voltage: number;
8347
8413
  simulation_voltage_source_id: string;
8348
- positive_source_port_id: string;
8349
- negative_source_port_id: string;
8350
- positive_source_net_id: string;
8351
- negative_source_net_id: string;
8414
+ is_dc_source: true;
8415
+ positive_source_port_id?: string | undefined;
8416
+ negative_source_port_id?: string | undefined;
8417
+ positive_source_net_id?: string | undefined;
8418
+ negative_source_net_id?: string | undefined;
8352
8419
  }, {
8353
8420
  type: "simulation_voltage_source";
8354
8421
  voltage: string | number;
8355
- positive_source_port_id: string;
8356
- negative_source_port_id: string;
8357
- positive_source_net_id: string;
8358
- negative_source_net_id: string;
8359
8422
  simulation_voltage_source_id?: string | undefined;
8423
+ is_dc_source?: true | undefined;
8424
+ positive_source_port_id?: string | undefined;
8425
+ negative_source_port_id?: string | undefined;
8426
+ positive_source_net_id?: string | undefined;
8427
+ negative_source_net_id?: string | undefined;
8428
+ }>;
8429
+ declare const simulation_ac_voltage_source: z.ZodObject<{
8430
+ type: z.ZodLiteral<"simulation_voltage_source">;
8431
+ simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8432
+ is_dc_source: z.ZodLiteral<false>;
8433
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
8434
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
8435
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
8436
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
8437
+ voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8438
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8439
+ peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8440
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
8441
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8442
+ }, "strip", z.ZodTypeAny, {
8443
+ type: "simulation_voltage_source";
8444
+ simulation_voltage_source_id: string;
8445
+ is_dc_source: false;
8446
+ voltage?: number | undefined;
8447
+ frequency?: number | undefined;
8448
+ terminal1_source_port_id?: string | undefined;
8449
+ terminal2_source_port_id?: string | undefined;
8450
+ terminal1_source_net_id?: string | undefined;
8451
+ terminal2_source_net_id?: string | undefined;
8452
+ peak_to_peak_voltage?: number | undefined;
8453
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
8454
+ phase?: number | undefined;
8455
+ }, {
8456
+ type: "simulation_voltage_source";
8457
+ is_dc_source: false;
8458
+ voltage?: string | number | undefined;
8459
+ frequency?: string | number | undefined;
8460
+ simulation_voltage_source_id?: string | undefined;
8461
+ terminal1_source_port_id?: string | undefined;
8462
+ terminal2_source_port_id?: string | undefined;
8463
+ terminal1_source_net_id?: string | undefined;
8464
+ terminal2_source_net_id?: string | undefined;
8465
+ peak_to_peak_voltage?: string | number | undefined;
8466
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
8467
+ phase?: string | number | undefined;
8360
8468
  }>;
8469
+ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
8470
+ type: z.ZodLiteral<"simulation_voltage_source">;
8471
+ simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8472
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
8473
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
8474
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
8475
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
8476
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
8477
+ voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8478
+ }, "strip", z.ZodTypeAny, {
8479
+ type: "simulation_voltage_source";
8480
+ voltage: number;
8481
+ simulation_voltage_source_id: string;
8482
+ is_dc_source: true;
8483
+ positive_source_port_id?: string | undefined;
8484
+ negative_source_port_id?: string | undefined;
8485
+ positive_source_net_id?: string | undefined;
8486
+ negative_source_net_id?: string | undefined;
8487
+ }, {
8488
+ type: "simulation_voltage_source";
8489
+ voltage: string | number;
8490
+ simulation_voltage_source_id?: string | undefined;
8491
+ is_dc_source?: true | undefined;
8492
+ positive_source_port_id?: string | undefined;
8493
+ negative_source_port_id?: string | undefined;
8494
+ positive_source_net_id?: string | undefined;
8495
+ negative_source_net_id?: string | undefined;
8496
+ }>, z.ZodObject<{
8497
+ type: z.ZodLiteral<"simulation_voltage_source">;
8498
+ simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8499
+ is_dc_source: z.ZodLiteral<false>;
8500
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
8501
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
8502
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
8503
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
8504
+ voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8505
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8506
+ peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8507
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
8508
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8509
+ }, "strip", z.ZodTypeAny, {
8510
+ type: "simulation_voltage_source";
8511
+ simulation_voltage_source_id: string;
8512
+ is_dc_source: false;
8513
+ voltage?: number | undefined;
8514
+ frequency?: number | undefined;
8515
+ terminal1_source_port_id?: string | undefined;
8516
+ terminal2_source_port_id?: string | undefined;
8517
+ terminal1_source_net_id?: string | undefined;
8518
+ terminal2_source_net_id?: string | undefined;
8519
+ peak_to_peak_voltage?: number | undefined;
8520
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
8521
+ phase?: number | undefined;
8522
+ }, {
8523
+ type: "simulation_voltage_source";
8524
+ is_dc_source: false;
8525
+ voltage?: string | number | undefined;
8526
+ frequency?: string | number | undefined;
8527
+ simulation_voltage_source_id?: string | undefined;
8528
+ terminal1_source_port_id?: string | undefined;
8529
+ terminal2_source_port_id?: string | undefined;
8530
+ terminal1_source_net_id?: string | undefined;
8531
+ terminal2_source_net_id?: string | undefined;
8532
+ peak_to_peak_voltage?: string | number | undefined;
8533
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
8534
+ phase?: string | number | undefined;
8535
+ }>]>;
8361
8536
  type SimulationVoltageSourceInput = z.input<typeof simulation_voltage_source>;
8362
8537
  /**
8363
- * Defines a voltage source for simulation purposes. It applies a voltage
8538
+ * Defines a DC voltage source for simulation purposes. It applies a voltage
8364
8539
  * difference between two source ports.
8365
8540
  */
8366
- interface SimulationVoltageSource {
8541
+ interface SimulationDcVoltageSource {
8367
8542
  type: "simulation_voltage_source";
8368
8543
  simulation_voltage_source_id: string;
8369
- positive_source_port_id: string;
8370
- positive_source_net_id: string;
8371
- negative_source_port_id: string;
8372
- negative_source_net_id: string;
8544
+ is_dc_source: true;
8545
+ positive_source_port_id?: string;
8546
+ positive_source_net_id?: string;
8547
+ negative_source_port_id?: string;
8548
+ negative_source_net_id?: string;
8373
8549
  voltage: number;
8374
8550
  }
8551
+ /**
8552
+ * Defines an AC voltage source for simulation purposes.
8553
+ */
8554
+ interface SimulationAcVoltageSource {
8555
+ type: "simulation_voltage_source";
8556
+ simulation_voltage_source_id: string;
8557
+ is_dc_source: false;
8558
+ terminal1_source_port_id?: string;
8559
+ terminal2_source_port_id?: string;
8560
+ terminal1_source_net_id?: string;
8561
+ terminal2_source_net_id?: string;
8562
+ voltage?: number;
8563
+ frequency?: number;
8564
+ peak_to_peak_voltage?: number;
8565
+ wave_shape?: WaveShape;
8566
+ phase?: number;
8567
+ }
8568
+ type SimulationVoltageSource = SimulationDcVoltageSource | SimulationAcVoltageSource;
8375
8569
 
8376
8570
  declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
8377
8571
  type: z.ZodLiteral<"source_trace">;
@@ -9358,6 +9552,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
9358
9552
  source_trace_not_connected_error_id?: string | undefined;
9359
9553
  connected_source_port_ids?: string[] | undefined;
9360
9554
  selectors_not_found?: string[] | undefined;
9555
+ }>, z.ZodObject<{
9556
+ type: z.ZodLiteral<"source_property_ignored_warning">;
9557
+ source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9558
+ source_component_id: z.ZodString;
9559
+ property_name: z.ZodString;
9560
+ subcircuit_id: z.ZodOptional<z.ZodString>;
9561
+ error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
9562
+ message: z.ZodString;
9563
+ }, "strip", z.ZodTypeAny, {
9564
+ message: string;
9565
+ type: "source_property_ignored_warning";
9566
+ source_component_id: string;
9567
+ error_type: "source_property_ignored_warning";
9568
+ property_name: string;
9569
+ source_property_ignored_warning_id: string;
9570
+ subcircuit_id?: string | undefined;
9571
+ }, {
9572
+ message: string;
9573
+ type: "source_property_ignored_warning";
9574
+ source_component_id: string;
9575
+ property_name: string;
9576
+ subcircuit_id?: string | undefined;
9577
+ error_type?: "source_property_ignored_warning" | undefined;
9578
+ source_property_ignored_warning_id?: string | undefined;
9361
9579
  }>]>, z.ZodObject<{
9362
9580
  type: z.ZodLiteral<"source_net">;
9363
9581
  source_net_id: z.ZodString;
@@ -13781,31 +13999,73 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
13781
13999
  model_stl_url?: string | undefined;
13782
14000
  model_3mf_url?: string | undefined;
13783
14001
  model_jscad?: any;
13784
- }>, z.ZodObject<{
14002
+ }>, z.ZodUnion<[z.ZodObject<{
13785
14003
  type: z.ZodLiteral<"simulation_voltage_source">;
13786
14004
  simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
13787
- positive_source_port_id: z.ZodString;
13788
- negative_source_port_id: z.ZodString;
13789
- positive_source_net_id: z.ZodString;
13790
- negative_source_net_id: z.ZodString;
14005
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
14006
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
14007
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
14008
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
14009
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
13791
14010
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
13792
14011
  }, "strip", z.ZodTypeAny, {
13793
14012
  type: "simulation_voltage_source";
13794
14013
  voltage: number;
13795
14014
  simulation_voltage_source_id: string;
13796
- positive_source_port_id: string;
13797
- negative_source_port_id: string;
13798
- positive_source_net_id: string;
13799
- negative_source_net_id: string;
14015
+ is_dc_source: true;
14016
+ positive_source_port_id?: string | undefined;
14017
+ negative_source_port_id?: string | undefined;
14018
+ positive_source_net_id?: string | undefined;
14019
+ negative_source_net_id?: string | undefined;
13800
14020
  }, {
13801
14021
  type: "simulation_voltage_source";
13802
14022
  voltage: string | number;
13803
- positive_source_port_id: string;
13804
- negative_source_port_id: string;
13805
- positive_source_net_id: string;
13806
- negative_source_net_id: string;
13807
14023
  simulation_voltage_source_id?: string | undefined;
13808
- }>]>;
14024
+ is_dc_source?: true | undefined;
14025
+ positive_source_port_id?: string | undefined;
14026
+ negative_source_port_id?: string | undefined;
14027
+ positive_source_net_id?: string | undefined;
14028
+ negative_source_net_id?: string | undefined;
14029
+ }>, z.ZodObject<{
14030
+ type: z.ZodLiteral<"simulation_voltage_source">;
14031
+ simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14032
+ is_dc_source: z.ZodLiteral<false>;
14033
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
14034
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
14035
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
14036
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
14037
+ voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
14038
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
14039
+ peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
14040
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
14041
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
14042
+ }, "strip", z.ZodTypeAny, {
14043
+ type: "simulation_voltage_source";
14044
+ simulation_voltage_source_id: string;
14045
+ is_dc_source: false;
14046
+ voltage?: number | undefined;
14047
+ frequency?: number | undefined;
14048
+ terminal1_source_port_id?: string | undefined;
14049
+ terminal2_source_port_id?: string | undefined;
14050
+ terminal1_source_net_id?: string | undefined;
14051
+ terminal2_source_net_id?: string | undefined;
14052
+ peak_to_peak_voltage?: number | undefined;
14053
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
14054
+ phase?: number | undefined;
14055
+ }, {
14056
+ type: "simulation_voltage_source";
14057
+ is_dc_source: false;
14058
+ voltage?: string | number | undefined;
14059
+ frequency?: string | number | undefined;
14060
+ simulation_voltage_source_id?: string | undefined;
14061
+ terminal1_source_port_id?: string | undefined;
14062
+ terminal2_source_port_id?: string | undefined;
14063
+ terminal1_source_net_id?: string | undefined;
14064
+ terminal2_source_net_id?: string | undefined;
14065
+ peak_to_peak_voltage?: string | number | undefined;
14066
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
14067
+ phase?: string | number | undefined;
14068
+ }>]>]>;
13809
14069
  /**
13810
14070
  * @deprecated use any_circuit_element instead
13811
14071
  */
@@ -14794,6 +15054,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
14794
15054
  source_trace_not_connected_error_id?: string | undefined;
14795
15055
  connected_source_port_ids?: string[] | undefined;
14796
15056
  selectors_not_found?: string[] | undefined;
15057
+ }>, z.ZodObject<{
15058
+ type: z.ZodLiteral<"source_property_ignored_warning">;
15059
+ source_property_ignored_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15060
+ source_component_id: z.ZodString;
15061
+ property_name: z.ZodString;
15062
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15063
+ error_type: z.ZodDefault<z.ZodLiteral<"source_property_ignored_warning">>;
15064
+ message: z.ZodString;
15065
+ }, "strip", z.ZodTypeAny, {
15066
+ message: string;
15067
+ type: "source_property_ignored_warning";
15068
+ source_component_id: string;
15069
+ error_type: "source_property_ignored_warning";
15070
+ property_name: string;
15071
+ source_property_ignored_warning_id: string;
15072
+ subcircuit_id?: string | undefined;
15073
+ }, {
15074
+ message: string;
15075
+ type: "source_property_ignored_warning";
15076
+ source_component_id: string;
15077
+ property_name: string;
15078
+ subcircuit_id?: string | undefined;
15079
+ error_type?: "source_property_ignored_warning" | undefined;
15080
+ source_property_ignored_warning_id?: string | undefined;
14797
15081
  }>]>, z.ZodObject<{
14798
15082
  type: z.ZodLiteral<"source_net">;
14799
15083
  source_net_id: z.ZodString;
@@ -19217,31 +19501,73 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
19217
19501
  model_stl_url?: string | undefined;
19218
19502
  model_3mf_url?: string | undefined;
19219
19503
  model_jscad?: any;
19220
- }>, z.ZodObject<{
19504
+ }>, z.ZodUnion<[z.ZodObject<{
19221
19505
  type: z.ZodLiteral<"simulation_voltage_source">;
19222
19506
  simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
19223
- positive_source_port_id: z.ZodString;
19224
- negative_source_port_id: z.ZodString;
19225
- positive_source_net_id: z.ZodString;
19226
- negative_source_net_id: z.ZodString;
19507
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
19508
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
19509
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
19510
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
19511
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
19227
19512
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
19228
19513
  }, "strip", z.ZodTypeAny, {
19229
19514
  type: "simulation_voltage_source";
19230
19515
  voltage: number;
19231
19516
  simulation_voltage_source_id: string;
19232
- positive_source_port_id: string;
19233
- negative_source_port_id: string;
19234
- positive_source_net_id: string;
19235
- negative_source_net_id: string;
19517
+ is_dc_source: true;
19518
+ positive_source_port_id?: string | undefined;
19519
+ negative_source_port_id?: string | undefined;
19520
+ positive_source_net_id?: string | undefined;
19521
+ negative_source_net_id?: string | undefined;
19236
19522
  }, {
19237
19523
  type: "simulation_voltage_source";
19238
19524
  voltage: string | number;
19239
- positive_source_port_id: string;
19240
- negative_source_port_id: string;
19241
- positive_source_net_id: string;
19242
- negative_source_net_id: string;
19243
19525
  simulation_voltage_source_id?: string | undefined;
19244
- }>]>;
19526
+ is_dc_source?: true | undefined;
19527
+ positive_source_port_id?: string | undefined;
19528
+ negative_source_port_id?: string | undefined;
19529
+ positive_source_net_id?: string | undefined;
19530
+ negative_source_net_id?: string | undefined;
19531
+ }>, z.ZodObject<{
19532
+ type: z.ZodLiteral<"simulation_voltage_source">;
19533
+ simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
19534
+ is_dc_source: z.ZodLiteral<false>;
19535
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
19536
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
19537
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
19538
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
19539
+ voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
19540
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
19541
+ peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
19542
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
19543
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
19544
+ }, "strip", z.ZodTypeAny, {
19545
+ type: "simulation_voltage_source";
19546
+ simulation_voltage_source_id: string;
19547
+ is_dc_source: false;
19548
+ voltage?: number | undefined;
19549
+ frequency?: number | undefined;
19550
+ terminal1_source_port_id?: string | undefined;
19551
+ terminal2_source_port_id?: string | undefined;
19552
+ terminal1_source_net_id?: string | undefined;
19553
+ terminal2_source_net_id?: string | undefined;
19554
+ peak_to_peak_voltage?: number | undefined;
19555
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
19556
+ phase?: number | undefined;
19557
+ }, {
19558
+ type: "simulation_voltage_source";
19559
+ is_dc_source: false;
19560
+ voltage?: string | number | undefined;
19561
+ frequency?: string | number | undefined;
19562
+ simulation_voltage_source_id?: string | undefined;
19563
+ terminal1_source_port_id?: string | undefined;
19564
+ terminal2_source_port_id?: string | undefined;
19565
+ terminal1_source_net_id?: string | undefined;
19566
+ terminal2_source_net_id?: string | undefined;
19567
+ peak_to_peak_voltage?: string | number | undefined;
19568
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
19569
+ phase?: string | number | undefined;
19570
+ }>]>]>;
19245
19571
  type AnyCircuitElement = z.infer<typeof any_circuit_element>;
19246
19572
  type AnyCircuitElementInput = z.input<typeof any_circuit_element>;
19247
19573
  /**
@@ -19258,4 +19584,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
19258
19584
  */
19259
19585
  type CircuitJson = AnyCircuitElement[];
19260
19586
 
19261
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage };
19587
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };