circuit-json 0.0.391 → 0.0.392
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 +36 -0
- package/dist/index.d.mts +346 -25
- package/dist/index.mjs +1400 -1373
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -485,6 +485,42 @@ interface SourcePort {
|
|
|
485
485
|
subcircuit_id?: string
|
|
486
486
|
subcircuit_connectivity_map_key?: string
|
|
487
487
|
must_be_connected?: boolean
|
|
488
|
+
provides_power?: boolean
|
|
489
|
+
requires_power?: boolean
|
|
490
|
+
provides_ground?: boolean
|
|
491
|
+
requires_ground?: boolean
|
|
492
|
+
provides_voltage?: string | number
|
|
493
|
+
requires_voltage?: string | number
|
|
494
|
+
do_not_connect?: boolean
|
|
495
|
+
include_in_board_pinout?: boolean
|
|
496
|
+
can_use_internal_pullup?: boolean
|
|
497
|
+
is_using_internal_pullup?: boolean
|
|
498
|
+
needs_external_pullup?: boolean
|
|
499
|
+
can_use_internal_pulldown?: boolean
|
|
500
|
+
is_using_internal_pulldown?: boolean
|
|
501
|
+
needs_external_pulldown?: boolean
|
|
502
|
+
can_use_open_drain?: boolean
|
|
503
|
+
is_using_open_drain?: boolean
|
|
504
|
+
can_use_push_pull?: boolean
|
|
505
|
+
is_using_push_pull?: boolean
|
|
506
|
+
should_have_decoupling_capacitor?: boolean
|
|
507
|
+
recommended_decoupling_capacitor_capacitance?: string | number
|
|
508
|
+
is_configured_for_i2c_sda?: boolean
|
|
509
|
+
is_configured_for_i2c_scl?: boolean
|
|
510
|
+
is_configured_for_spi_mosi?: boolean
|
|
511
|
+
is_configured_for_spi_miso?: boolean
|
|
512
|
+
is_configured_for_spi_sck?: boolean
|
|
513
|
+
is_configured_for_spi_cs?: boolean
|
|
514
|
+
is_configured_for_uart_tx?: boolean
|
|
515
|
+
is_configured_for_uart_rx?: boolean
|
|
516
|
+
supports_i2c_sda?: boolean
|
|
517
|
+
supports_i2c_scl?: boolean
|
|
518
|
+
supports_spi_mosi?: boolean
|
|
519
|
+
supports_spi_miso?: boolean
|
|
520
|
+
supports_spi_sck?: boolean
|
|
521
|
+
supports_spi_cs?: boolean
|
|
522
|
+
supports_uart_tx?: boolean
|
|
523
|
+
supports_uart_rx?: boolean
|
|
488
524
|
}
|
|
489
525
|
```
|
|
490
526
|
|
package/dist/index.d.mts
CHANGED
|
@@ -25643,6 +25643,161 @@ interface SourceSimpleCurrentSource extends SourceComponentBase {
|
|
|
25643
25643
|
duty_cycle?: number;
|
|
25644
25644
|
}
|
|
25645
25645
|
|
|
25646
|
+
declare const source_pin_attributes: z.ZodObject<{
|
|
25647
|
+
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
25648
|
+
provides_power: z.ZodOptional<z.ZodBoolean>;
|
|
25649
|
+
requires_power: z.ZodOptional<z.ZodBoolean>;
|
|
25650
|
+
provides_ground: z.ZodOptional<z.ZodBoolean>;
|
|
25651
|
+
requires_ground: z.ZodOptional<z.ZodBoolean>;
|
|
25652
|
+
provides_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25653
|
+
requires_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25654
|
+
do_not_connect: z.ZodOptional<z.ZodBoolean>;
|
|
25655
|
+
include_in_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
25656
|
+
can_use_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
25657
|
+
is_using_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
25658
|
+
needs_external_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
25659
|
+
can_use_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
25660
|
+
is_using_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
25661
|
+
needs_external_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
25662
|
+
can_use_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
25663
|
+
is_using_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
25664
|
+
can_use_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
25665
|
+
is_using_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
25666
|
+
should_have_decoupling_capacitor: z.ZodOptional<z.ZodBoolean>;
|
|
25667
|
+
recommended_decoupling_capacitor_capacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25668
|
+
is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
|
|
25669
|
+
is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
|
|
25670
|
+
is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
|
|
25671
|
+
is_configured_for_spi_miso: z.ZodOptional<z.ZodBoolean>;
|
|
25672
|
+
is_configured_for_spi_sck: z.ZodOptional<z.ZodBoolean>;
|
|
25673
|
+
is_configured_for_spi_cs: z.ZodOptional<z.ZodBoolean>;
|
|
25674
|
+
is_configured_for_uart_tx: z.ZodOptional<z.ZodBoolean>;
|
|
25675
|
+
is_configured_for_uart_rx: z.ZodOptional<z.ZodBoolean>;
|
|
25676
|
+
supports_i2c_sda: z.ZodOptional<z.ZodBoolean>;
|
|
25677
|
+
supports_i2c_scl: z.ZodOptional<z.ZodBoolean>;
|
|
25678
|
+
supports_spi_mosi: z.ZodOptional<z.ZodBoolean>;
|
|
25679
|
+
supports_spi_miso: z.ZodOptional<z.ZodBoolean>;
|
|
25680
|
+
supports_spi_sck: z.ZodOptional<z.ZodBoolean>;
|
|
25681
|
+
supports_spi_cs: z.ZodOptional<z.ZodBoolean>;
|
|
25682
|
+
supports_uart_tx: z.ZodOptional<z.ZodBoolean>;
|
|
25683
|
+
supports_uart_rx: z.ZodOptional<z.ZodBoolean>;
|
|
25684
|
+
}, "strip", z.ZodTypeAny, {
|
|
25685
|
+
must_be_connected?: boolean | undefined;
|
|
25686
|
+
provides_power?: boolean | undefined;
|
|
25687
|
+
requires_power?: boolean | undefined;
|
|
25688
|
+
provides_ground?: boolean | undefined;
|
|
25689
|
+
requires_ground?: boolean | undefined;
|
|
25690
|
+
provides_voltage?: string | number | undefined;
|
|
25691
|
+
requires_voltage?: string | number | undefined;
|
|
25692
|
+
do_not_connect?: boolean | undefined;
|
|
25693
|
+
include_in_board_pinout?: boolean | undefined;
|
|
25694
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
25695
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
25696
|
+
needs_external_pullup?: boolean | undefined;
|
|
25697
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
25698
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
25699
|
+
needs_external_pulldown?: boolean | undefined;
|
|
25700
|
+
can_use_open_drain?: boolean | undefined;
|
|
25701
|
+
is_using_open_drain?: boolean | undefined;
|
|
25702
|
+
can_use_push_pull?: boolean | undefined;
|
|
25703
|
+
is_using_push_pull?: boolean | undefined;
|
|
25704
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
25705
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
25706
|
+
is_configured_for_i2c_sda?: boolean | undefined;
|
|
25707
|
+
is_configured_for_i2c_scl?: boolean | undefined;
|
|
25708
|
+
is_configured_for_spi_mosi?: boolean | undefined;
|
|
25709
|
+
is_configured_for_spi_miso?: boolean | undefined;
|
|
25710
|
+
is_configured_for_spi_sck?: boolean | undefined;
|
|
25711
|
+
is_configured_for_spi_cs?: boolean | undefined;
|
|
25712
|
+
is_configured_for_uart_tx?: boolean | undefined;
|
|
25713
|
+
is_configured_for_uart_rx?: boolean | undefined;
|
|
25714
|
+
supports_i2c_sda?: boolean | undefined;
|
|
25715
|
+
supports_i2c_scl?: boolean | undefined;
|
|
25716
|
+
supports_spi_mosi?: boolean | undefined;
|
|
25717
|
+
supports_spi_miso?: boolean | undefined;
|
|
25718
|
+
supports_spi_sck?: boolean | undefined;
|
|
25719
|
+
supports_spi_cs?: boolean | undefined;
|
|
25720
|
+
supports_uart_tx?: boolean | undefined;
|
|
25721
|
+
supports_uart_rx?: boolean | undefined;
|
|
25722
|
+
}, {
|
|
25723
|
+
must_be_connected?: boolean | undefined;
|
|
25724
|
+
provides_power?: boolean | undefined;
|
|
25725
|
+
requires_power?: boolean | undefined;
|
|
25726
|
+
provides_ground?: boolean | undefined;
|
|
25727
|
+
requires_ground?: boolean | undefined;
|
|
25728
|
+
provides_voltage?: string | number | undefined;
|
|
25729
|
+
requires_voltage?: string | number | undefined;
|
|
25730
|
+
do_not_connect?: boolean | undefined;
|
|
25731
|
+
include_in_board_pinout?: boolean | undefined;
|
|
25732
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
25733
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
25734
|
+
needs_external_pullup?: boolean | undefined;
|
|
25735
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
25736
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
25737
|
+
needs_external_pulldown?: boolean | undefined;
|
|
25738
|
+
can_use_open_drain?: boolean | undefined;
|
|
25739
|
+
is_using_open_drain?: boolean | undefined;
|
|
25740
|
+
can_use_push_pull?: boolean | undefined;
|
|
25741
|
+
is_using_push_pull?: boolean | undefined;
|
|
25742
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
25743
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
25744
|
+
is_configured_for_i2c_sda?: boolean | undefined;
|
|
25745
|
+
is_configured_for_i2c_scl?: boolean | undefined;
|
|
25746
|
+
is_configured_for_spi_mosi?: boolean | undefined;
|
|
25747
|
+
is_configured_for_spi_miso?: boolean | undefined;
|
|
25748
|
+
is_configured_for_spi_sck?: boolean | undefined;
|
|
25749
|
+
is_configured_for_spi_cs?: boolean | undefined;
|
|
25750
|
+
is_configured_for_uart_tx?: boolean | undefined;
|
|
25751
|
+
is_configured_for_uart_rx?: boolean | undefined;
|
|
25752
|
+
supports_i2c_sda?: boolean | undefined;
|
|
25753
|
+
supports_i2c_scl?: boolean | undefined;
|
|
25754
|
+
supports_spi_mosi?: boolean | undefined;
|
|
25755
|
+
supports_spi_miso?: boolean | undefined;
|
|
25756
|
+
supports_spi_sck?: boolean | undefined;
|
|
25757
|
+
supports_spi_cs?: boolean | undefined;
|
|
25758
|
+
supports_uart_tx?: boolean | undefined;
|
|
25759
|
+
supports_uart_rx?: boolean | undefined;
|
|
25760
|
+
}>;
|
|
25761
|
+
interface SourcePinAttributes {
|
|
25762
|
+
must_be_connected?: boolean;
|
|
25763
|
+
provides_power?: boolean;
|
|
25764
|
+
requires_power?: boolean;
|
|
25765
|
+
provides_ground?: boolean;
|
|
25766
|
+
requires_ground?: boolean;
|
|
25767
|
+
provides_voltage?: string | number;
|
|
25768
|
+
requires_voltage?: string | number;
|
|
25769
|
+
do_not_connect?: boolean;
|
|
25770
|
+
include_in_board_pinout?: boolean;
|
|
25771
|
+
can_use_internal_pullup?: boolean;
|
|
25772
|
+
is_using_internal_pullup?: boolean;
|
|
25773
|
+
needs_external_pullup?: boolean;
|
|
25774
|
+
can_use_internal_pulldown?: boolean;
|
|
25775
|
+
is_using_internal_pulldown?: boolean;
|
|
25776
|
+
needs_external_pulldown?: boolean;
|
|
25777
|
+
can_use_open_drain?: boolean;
|
|
25778
|
+
is_using_open_drain?: boolean;
|
|
25779
|
+
can_use_push_pull?: boolean;
|
|
25780
|
+
is_using_push_pull?: boolean;
|
|
25781
|
+
should_have_decoupling_capacitor?: boolean;
|
|
25782
|
+
recommended_decoupling_capacitor_capacitance?: string | number;
|
|
25783
|
+
is_configured_for_i2c_sda?: boolean;
|
|
25784
|
+
is_configured_for_i2c_scl?: boolean;
|
|
25785
|
+
is_configured_for_spi_mosi?: boolean;
|
|
25786
|
+
is_configured_for_spi_miso?: boolean;
|
|
25787
|
+
is_configured_for_spi_sck?: boolean;
|
|
25788
|
+
is_configured_for_spi_cs?: boolean;
|
|
25789
|
+
is_configured_for_uart_tx?: boolean;
|
|
25790
|
+
is_configured_for_uart_rx?: boolean;
|
|
25791
|
+
supports_i2c_sda?: boolean;
|
|
25792
|
+
supports_i2c_scl?: boolean;
|
|
25793
|
+
supports_spi_mosi?: boolean;
|
|
25794
|
+
supports_spi_miso?: boolean;
|
|
25795
|
+
supports_spi_sck?: boolean;
|
|
25796
|
+
supports_spi_cs?: boolean;
|
|
25797
|
+
supports_uart_tx?: boolean;
|
|
25798
|
+
supports_uart_rx?: boolean;
|
|
25799
|
+
}
|
|
25800
|
+
|
|
25646
25801
|
interface SourceSimpleFuse extends SourceComponentBase {
|
|
25647
25802
|
ftype: "simple_fuse";
|
|
25648
25803
|
current_rating_amps: number;
|
|
@@ -28367,7 +28522,28 @@ declare const source_port: z.ZodObject<{
|
|
|
28367
28522
|
most_frequently_referenced_by_name: z.ZodOptional<z.ZodString>;
|
|
28368
28523
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
28369
28524
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
28525
|
+
} & {
|
|
28370
28526
|
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
28527
|
+
provides_power: z.ZodOptional<z.ZodBoolean>;
|
|
28528
|
+
requires_power: z.ZodOptional<z.ZodBoolean>;
|
|
28529
|
+
provides_ground: z.ZodOptional<z.ZodBoolean>;
|
|
28530
|
+
requires_ground: z.ZodOptional<z.ZodBoolean>;
|
|
28531
|
+
provides_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28532
|
+
requires_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28533
|
+
do_not_connect: z.ZodOptional<z.ZodBoolean>;
|
|
28534
|
+
include_in_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
28535
|
+
can_use_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
28536
|
+
is_using_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
28537
|
+
needs_external_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
28538
|
+
can_use_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
28539
|
+
is_using_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
28540
|
+
needs_external_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
28541
|
+
can_use_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
28542
|
+
is_using_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
28543
|
+
can_use_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
28544
|
+
is_using_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
28545
|
+
should_have_decoupling_capacitor: z.ZodOptional<z.ZodBoolean>;
|
|
28546
|
+
recommended_decoupling_capacitor_capacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28371
28547
|
is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
|
|
28372
28548
|
is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
|
|
28373
28549
|
is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -28394,8 +28570,27 @@ declare const source_port: z.ZodObject<{
|
|
|
28394
28570
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
28395
28571
|
source_group_id?: string | undefined;
|
|
28396
28572
|
pin_number?: number | undefined;
|
|
28397
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
28398
28573
|
must_be_connected?: boolean | undefined;
|
|
28574
|
+
provides_power?: boolean | undefined;
|
|
28575
|
+
requires_power?: boolean | undefined;
|
|
28576
|
+
provides_ground?: boolean | undefined;
|
|
28577
|
+
requires_ground?: boolean | undefined;
|
|
28578
|
+
provides_voltage?: string | number | undefined;
|
|
28579
|
+
requires_voltage?: string | number | undefined;
|
|
28580
|
+
do_not_connect?: boolean | undefined;
|
|
28581
|
+
include_in_board_pinout?: boolean | undefined;
|
|
28582
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
28583
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
28584
|
+
needs_external_pullup?: boolean | undefined;
|
|
28585
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
28586
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
28587
|
+
needs_external_pulldown?: boolean | undefined;
|
|
28588
|
+
can_use_open_drain?: boolean | undefined;
|
|
28589
|
+
is_using_open_drain?: boolean | undefined;
|
|
28590
|
+
can_use_push_pull?: boolean | undefined;
|
|
28591
|
+
is_using_push_pull?: boolean | undefined;
|
|
28592
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
28593
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
28399
28594
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
28400
28595
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
28401
28596
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -28412,6 +28607,7 @@ declare const source_port: z.ZodObject<{
|
|
|
28412
28607
|
supports_spi_cs?: boolean | undefined;
|
|
28413
28608
|
supports_uart_tx?: boolean | undefined;
|
|
28414
28609
|
supports_uart_rx?: boolean | undefined;
|
|
28610
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
28415
28611
|
}, {
|
|
28416
28612
|
type: "source_port";
|
|
28417
28613
|
name: string;
|
|
@@ -28422,8 +28618,27 @@ declare const source_port: z.ZodObject<{
|
|
|
28422
28618
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
28423
28619
|
source_group_id?: string | undefined;
|
|
28424
28620
|
pin_number?: number | undefined;
|
|
28425
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
28426
28621
|
must_be_connected?: boolean | undefined;
|
|
28622
|
+
provides_power?: boolean | undefined;
|
|
28623
|
+
requires_power?: boolean | undefined;
|
|
28624
|
+
provides_ground?: boolean | undefined;
|
|
28625
|
+
requires_ground?: boolean | undefined;
|
|
28626
|
+
provides_voltage?: string | number | undefined;
|
|
28627
|
+
requires_voltage?: string | number | undefined;
|
|
28628
|
+
do_not_connect?: boolean | undefined;
|
|
28629
|
+
include_in_board_pinout?: boolean | undefined;
|
|
28630
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
28631
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
28632
|
+
needs_external_pullup?: boolean | undefined;
|
|
28633
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
28634
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
28635
|
+
needs_external_pulldown?: boolean | undefined;
|
|
28636
|
+
can_use_open_drain?: boolean | undefined;
|
|
28637
|
+
is_using_open_drain?: boolean | undefined;
|
|
28638
|
+
can_use_push_pull?: boolean | undefined;
|
|
28639
|
+
is_using_push_pull?: boolean | undefined;
|
|
28640
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
28641
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
28427
28642
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
28428
28643
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
28429
28644
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -28440,12 +28655,13 @@ declare const source_port: z.ZodObject<{
|
|
|
28440
28655
|
supports_spi_cs?: boolean | undefined;
|
|
28441
28656
|
supports_uart_tx?: boolean | undefined;
|
|
28442
28657
|
supports_uart_rx?: boolean | undefined;
|
|
28658
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
28443
28659
|
}>;
|
|
28444
28660
|
type SourcePortInput = z.input<typeof source_port>;
|
|
28445
28661
|
/**
|
|
28446
28662
|
* Defines a source port that can be connected to other components
|
|
28447
28663
|
*/
|
|
28448
|
-
interface SourcePort {
|
|
28664
|
+
interface SourcePort extends SourcePinAttributes {
|
|
28449
28665
|
type: "source_port";
|
|
28450
28666
|
pin_number?: number;
|
|
28451
28667
|
port_hints?: string[];
|
|
@@ -28456,23 +28672,6 @@ interface SourcePort {
|
|
|
28456
28672
|
most_frequently_referenced_by_name?: string;
|
|
28457
28673
|
subcircuit_id?: string;
|
|
28458
28674
|
subcircuit_connectivity_map_key?: string;
|
|
28459
|
-
must_be_connected?: boolean;
|
|
28460
|
-
is_configured_for_i2c_sda?: boolean;
|
|
28461
|
-
is_configured_for_i2c_scl?: boolean;
|
|
28462
|
-
is_configured_for_spi_mosi?: boolean;
|
|
28463
|
-
is_configured_for_spi_miso?: boolean;
|
|
28464
|
-
is_configured_for_spi_sck?: boolean;
|
|
28465
|
-
is_configured_for_spi_cs?: boolean;
|
|
28466
|
-
is_configured_for_uart_tx?: boolean;
|
|
28467
|
-
is_configured_for_uart_rx?: boolean;
|
|
28468
|
-
supports_i2c_sda?: boolean;
|
|
28469
|
-
supports_i2c_scl?: boolean;
|
|
28470
|
-
supports_spi_mosi?: boolean;
|
|
28471
|
-
supports_spi_miso?: boolean;
|
|
28472
|
-
supports_spi_sck?: boolean;
|
|
28473
|
-
supports_spi_cs?: boolean;
|
|
28474
|
-
supports_uart_tx?: boolean;
|
|
28475
|
-
supports_uart_rx?: boolean;
|
|
28476
28675
|
}
|
|
28477
28676
|
|
|
28478
28677
|
interface SourceComponentInternalConnection {
|
|
@@ -31655,7 +31854,28 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31655
31854
|
most_frequently_referenced_by_name: z.ZodOptional<z.ZodString>;
|
|
31656
31855
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
31657
31856
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
31857
|
+
} & {
|
|
31658
31858
|
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
31859
|
+
provides_power: z.ZodOptional<z.ZodBoolean>;
|
|
31860
|
+
requires_power: z.ZodOptional<z.ZodBoolean>;
|
|
31861
|
+
provides_ground: z.ZodOptional<z.ZodBoolean>;
|
|
31862
|
+
requires_ground: z.ZodOptional<z.ZodBoolean>;
|
|
31863
|
+
provides_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31864
|
+
requires_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31865
|
+
do_not_connect: z.ZodOptional<z.ZodBoolean>;
|
|
31866
|
+
include_in_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
31867
|
+
can_use_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
31868
|
+
is_using_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
31869
|
+
needs_external_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
31870
|
+
can_use_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31871
|
+
is_using_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31872
|
+
needs_external_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31873
|
+
can_use_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
31874
|
+
is_using_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
31875
|
+
can_use_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
31876
|
+
is_using_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
31877
|
+
should_have_decoupling_capacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31878
|
+
recommended_decoupling_capacitor_capacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31659
31879
|
is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
|
|
31660
31880
|
is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
|
|
31661
31881
|
is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31682,8 +31902,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31682
31902
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
31683
31903
|
source_group_id?: string | undefined;
|
|
31684
31904
|
pin_number?: number | undefined;
|
|
31685
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
31686
31905
|
must_be_connected?: boolean | undefined;
|
|
31906
|
+
provides_power?: boolean | undefined;
|
|
31907
|
+
requires_power?: boolean | undefined;
|
|
31908
|
+
provides_ground?: boolean | undefined;
|
|
31909
|
+
requires_ground?: boolean | undefined;
|
|
31910
|
+
provides_voltage?: string | number | undefined;
|
|
31911
|
+
requires_voltage?: string | number | undefined;
|
|
31912
|
+
do_not_connect?: boolean | undefined;
|
|
31913
|
+
include_in_board_pinout?: boolean | undefined;
|
|
31914
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
31915
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
31916
|
+
needs_external_pullup?: boolean | undefined;
|
|
31917
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
31918
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
31919
|
+
needs_external_pulldown?: boolean | undefined;
|
|
31920
|
+
can_use_open_drain?: boolean | undefined;
|
|
31921
|
+
is_using_open_drain?: boolean | undefined;
|
|
31922
|
+
can_use_push_pull?: boolean | undefined;
|
|
31923
|
+
is_using_push_pull?: boolean | undefined;
|
|
31924
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
31925
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
31687
31926
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
31688
31927
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
31689
31928
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -31700,6 +31939,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31700
31939
|
supports_spi_cs?: boolean | undefined;
|
|
31701
31940
|
supports_uart_tx?: boolean | undefined;
|
|
31702
31941
|
supports_uart_rx?: boolean | undefined;
|
|
31942
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
31703
31943
|
}, {
|
|
31704
31944
|
type: "source_port";
|
|
31705
31945
|
name: string;
|
|
@@ -31710,8 +31950,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31710
31950
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
31711
31951
|
source_group_id?: string | undefined;
|
|
31712
31952
|
pin_number?: number | undefined;
|
|
31713
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
31714
31953
|
must_be_connected?: boolean | undefined;
|
|
31954
|
+
provides_power?: boolean | undefined;
|
|
31955
|
+
requires_power?: boolean | undefined;
|
|
31956
|
+
provides_ground?: boolean | undefined;
|
|
31957
|
+
requires_ground?: boolean | undefined;
|
|
31958
|
+
provides_voltage?: string | number | undefined;
|
|
31959
|
+
requires_voltage?: string | number | undefined;
|
|
31960
|
+
do_not_connect?: boolean | undefined;
|
|
31961
|
+
include_in_board_pinout?: boolean | undefined;
|
|
31962
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
31963
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
31964
|
+
needs_external_pullup?: boolean | undefined;
|
|
31965
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
31966
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
31967
|
+
needs_external_pulldown?: boolean | undefined;
|
|
31968
|
+
can_use_open_drain?: boolean | undefined;
|
|
31969
|
+
is_using_open_drain?: boolean | undefined;
|
|
31970
|
+
can_use_push_pull?: boolean | undefined;
|
|
31971
|
+
is_using_push_pull?: boolean | undefined;
|
|
31972
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
31973
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
31715
31974
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
31716
31975
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
31717
31976
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -31728,6 +31987,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
31728
31987
|
supports_spi_cs?: boolean | undefined;
|
|
31729
31988
|
supports_uart_tx?: boolean | undefined;
|
|
31730
31989
|
supports_uart_rx?: boolean | undefined;
|
|
31990
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
31731
31991
|
}>, z.ZodObject<{
|
|
31732
31992
|
type: z.ZodLiteral<"source_component_internal_connection">;
|
|
31733
31993
|
source_component_internal_connection_id: z.ZodString;
|
|
@@ -49105,7 +49365,28 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49105
49365
|
most_frequently_referenced_by_name: z.ZodOptional<z.ZodString>;
|
|
49106
49366
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
49107
49367
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
49368
|
+
} & {
|
|
49108
49369
|
must_be_connected: z.ZodOptional<z.ZodBoolean>;
|
|
49370
|
+
provides_power: z.ZodOptional<z.ZodBoolean>;
|
|
49371
|
+
requires_power: z.ZodOptional<z.ZodBoolean>;
|
|
49372
|
+
provides_ground: z.ZodOptional<z.ZodBoolean>;
|
|
49373
|
+
requires_ground: z.ZodOptional<z.ZodBoolean>;
|
|
49374
|
+
provides_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49375
|
+
requires_voltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49376
|
+
do_not_connect: z.ZodOptional<z.ZodBoolean>;
|
|
49377
|
+
include_in_board_pinout: z.ZodOptional<z.ZodBoolean>;
|
|
49378
|
+
can_use_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
49379
|
+
is_using_internal_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
49380
|
+
needs_external_pullup: z.ZodOptional<z.ZodBoolean>;
|
|
49381
|
+
can_use_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49382
|
+
is_using_internal_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49383
|
+
needs_external_pulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49384
|
+
can_use_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
49385
|
+
is_using_open_drain: z.ZodOptional<z.ZodBoolean>;
|
|
49386
|
+
can_use_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
49387
|
+
is_using_push_pull: z.ZodOptional<z.ZodBoolean>;
|
|
49388
|
+
should_have_decoupling_capacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49389
|
+
recommended_decoupling_capacitor_capacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49109
49390
|
is_configured_for_i2c_sda: z.ZodOptional<z.ZodBoolean>;
|
|
49110
49391
|
is_configured_for_i2c_scl: z.ZodOptional<z.ZodBoolean>;
|
|
49111
49392
|
is_configured_for_spi_mosi: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49132,8 +49413,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49132
49413
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
49133
49414
|
source_group_id?: string | undefined;
|
|
49134
49415
|
pin_number?: number | undefined;
|
|
49135
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
49136
49416
|
must_be_connected?: boolean | undefined;
|
|
49417
|
+
provides_power?: boolean | undefined;
|
|
49418
|
+
requires_power?: boolean | undefined;
|
|
49419
|
+
provides_ground?: boolean | undefined;
|
|
49420
|
+
requires_ground?: boolean | undefined;
|
|
49421
|
+
provides_voltage?: string | number | undefined;
|
|
49422
|
+
requires_voltage?: string | number | undefined;
|
|
49423
|
+
do_not_connect?: boolean | undefined;
|
|
49424
|
+
include_in_board_pinout?: boolean | undefined;
|
|
49425
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
49426
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
49427
|
+
needs_external_pullup?: boolean | undefined;
|
|
49428
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
49429
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
49430
|
+
needs_external_pulldown?: boolean | undefined;
|
|
49431
|
+
can_use_open_drain?: boolean | undefined;
|
|
49432
|
+
is_using_open_drain?: boolean | undefined;
|
|
49433
|
+
can_use_push_pull?: boolean | undefined;
|
|
49434
|
+
is_using_push_pull?: boolean | undefined;
|
|
49435
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
49436
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
49137
49437
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
49138
49438
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
49139
49439
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -49150,6 +49450,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49150
49450
|
supports_spi_cs?: boolean | undefined;
|
|
49151
49451
|
supports_uart_tx?: boolean | undefined;
|
|
49152
49452
|
supports_uart_rx?: boolean | undefined;
|
|
49453
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
49153
49454
|
}, {
|
|
49154
49455
|
type: "source_port";
|
|
49155
49456
|
name: string;
|
|
@@ -49160,8 +49461,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49160
49461
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
49161
49462
|
source_group_id?: string | undefined;
|
|
49162
49463
|
pin_number?: number | undefined;
|
|
49163
|
-
most_frequently_referenced_by_name?: string | undefined;
|
|
49164
49464
|
must_be_connected?: boolean | undefined;
|
|
49465
|
+
provides_power?: boolean | undefined;
|
|
49466
|
+
requires_power?: boolean | undefined;
|
|
49467
|
+
provides_ground?: boolean | undefined;
|
|
49468
|
+
requires_ground?: boolean | undefined;
|
|
49469
|
+
provides_voltage?: string | number | undefined;
|
|
49470
|
+
requires_voltage?: string | number | undefined;
|
|
49471
|
+
do_not_connect?: boolean | undefined;
|
|
49472
|
+
include_in_board_pinout?: boolean | undefined;
|
|
49473
|
+
can_use_internal_pullup?: boolean | undefined;
|
|
49474
|
+
is_using_internal_pullup?: boolean | undefined;
|
|
49475
|
+
needs_external_pullup?: boolean | undefined;
|
|
49476
|
+
can_use_internal_pulldown?: boolean | undefined;
|
|
49477
|
+
is_using_internal_pulldown?: boolean | undefined;
|
|
49478
|
+
needs_external_pulldown?: boolean | undefined;
|
|
49479
|
+
can_use_open_drain?: boolean | undefined;
|
|
49480
|
+
is_using_open_drain?: boolean | undefined;
|
|
49481
|
+
can_use_push_pull?: boolean | undefined;
|
|
49482
|
+
is_using_push_pull?: boolean | undefined;
|
|
49483
|
+
should_have_decoupling_capacitor?: boolean | undefined;
|
|
49484
|
+
recommended_decoupling_capacitor_capacitance?: string | number | undefined;
|
|
49165
49485
|
is_configured_for_i2c_sda?: boolean | undefined;
|
|
49166
49486
|
is_configured_for_i2c_scl?: boolean | undefined;
|
|
49167
49487
|
is_configured_for_spi_mosi?: boolean | undefined;
|
|
@@ -49178,6 +49498,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
49178
49498
|
supports_spi_cs?: boolean | undefined;
|
|
49179
49499
|
supports_uart_tx?: boolean | undefined;
|
|
49180
49500
|
supports_uart_rx?: boolean | undefined;
|
|
49501
|
+
most_frequently_referenced_by_name?: string | undefined;
|
|
49181
49502
|
}>, z.ZodObject<{
|
|
49182
49503
|
type: z.ZodLiteral<"source_component_internal_connection">;
|
|
49183
49504
|
source_component_internal_connection_id: z.ZodString;
|
|
@@ -66527,4 +66848,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
66527
66848
|
*/
|
|
66528
66849
|
type CircuitJson = AnyCircuitElement[];
|
|
66529
66850
|
|
|
66530
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
66851
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|