circuit-json 0.0.236 → 0.0.238
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 +14 -0
- package/dist/index.d.mts +260 -18
- package/dist/index.mjs +820 -808
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
66
66
|
- [SourceSimpleInductor](#sourcesimpleinductor)
|
|
67
67
|
- [SourceSimpleLed](#sourcesimpleled)
|
|
68
68
|
- [SourceSimpleMosfet](#sourcesimplemosfet)
|
|
69
|
+
- [SourceSimplePinout](#sourcesimplepinout)
|
|
69
70
|
- [SourceSimplePowerSource](#sourcesimplepowersource)
|
|
70
71
|
- [SourceSimplePushButton](#sourcesimplepushbutton)
|
|
71
72
|
- [SourceSimpleResistor](#sourcesimpleresistor)
|
|
@@ -537,6 +538,19 @@ interface SourceSimpleMosfet extends SourceComponentBase {
|
|
|
537
538
|
}
|
|
538
539
|
```
|
|
539
540
|
|
|
541
|
+
### SourceSimplePinout
|
|
542
|
+
|
|
543
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_pinout.ts)
|
|
544
|
+
|
|
545
|
+
Defines a simple pinout component
|
|
546
|
+
|
|
547
|
+
```typescript
|
|
548
|
+
/** Defines a simple pinout component */
|
|
549
|
+
interface SourceSimplePinout extends SourceComponentBase {
|
|
550
|
+
ftype: "simple_pinout"
|
|
551
|
+
}
|
|
552
|
+
```
|
|
553
|
+
|
|
540
554
|
### SourceSimplePowerSource
|
|
541
555
|
|
|
542
556
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_power_source.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -4810,18 +4810,20 @@ interface SchematicTraceEdge {
|
|
|
4810
4810
|
interface SchematicTrace {
|
|
4811
4811
|
type: "schematic_trace";
|
|
4812
4812
|
schematic_trace_id: string;
|
|
4813
|
-
source_trace_id
|
|
4813
|
+
source_trace_id?: string;
|
|
4814
4814
|
junctions: {
|
|
4815
4815
|
x: number;
|
|
4816
4816
|
y: number;
|
|
4817
4817
|
}[];
|
|
4818
4818
|
edges: SchematicTraceEdge[];
|
|
4819
4819
|
subcircuit_id?: string;
|
|
4820
|
+
/** Optional for now, but will be required in a future release */
|
|
4821
|
+
subcircuit_connectivity_map_key?: string;
|
|
4820
4822
|
}
|
|
4821
4823
|
declare const schematic_trace: z.ZodObject<{
|
|
4822
4824
|
type: z.ZodLiteral<"schematic_trace">;
|
|
4823
4825
|
schematic_trace_id: z.ZodString;
|
|
4824
|
-
source_trace_id: z.ZodString
|
|
4826
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
4825
4827
|
junctions: z.ZodArray<z.ZodObject<{
|
|
4826
4828
|
x: z.ZodNumber;
|
|
4827
4829
|
y: z.ZodNumber;
|
|
@@ -4882,9 +4884,9 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
4882
4884
|
to_schematic_port_id?: string | undefined;
|
|
4883
4885
|
}>, "many">;
|
|
4884
4886
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
4887
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
4885
4888
|
}, "strip", z.ZodTypeAny, {
|
|
4886
4889
|
type: "schematic_trace";
|
|
4887
|
-
source_trace_id: string;
|
|
4888
4890
|
schematic_trace_id: string;
|
|
4889
4891
|
junctions: {
|
|
4890
4892
|
x: number;
|
|
@@ -4904,9 +4906,10 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
4904
4906
|
to_schematic_port_id?: string | undefined;
|
|
4905
4907
|
}[];
|
|
4906
4908
|
subcircuit_id?: string | undefined;
|
|
4909
|
+
source_trace_id?: string | undefined;
|
|
4910
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
4907
4911
|
}, {
|
|
4908
4912
|
type: "schematic_trace";
|
|
4909
|
-
source_trace_id: string;
|
|
4910
4913
|
schematic_trace_id: string;
|
|
4911
4914
|
junctions: {
|
|
4912
4915
|
x: number;
|
|
@@ -4926,6 +4929,8 @@ declare const schematic_trace: z.ZodObject<{
|
|
|
4926
4929
|
to_schematic_port_id?: string | undefined;
|
|
4927
4930
|
}[];
|
|
4928
4931
|
subcircuit_id?: string | undefined;
|
|
4932
|
+
source_trace_id?: string | undefined;
|
|
4933
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
4929
4934
|
}>;
|
|
4930
4935
|
type SchematicTraceInput = z.input<typeof schematic_trace>;
|
|
4931
4936
|
|
|
@@ -6585,6 +6590,52 @@ interface SourceSimplePinHeader extends SourceSimplePinHeaderInput {
|
|
|
6585
6590
|
gender: "male" | "female";
|
|
6586
6591
|
}
|
|
6587
6592
|
|
|
6593
|
+
declare const source_simple_pinout: z.ZodObject<{
|
|
6594
|
+
type: z.ZodLiteral<"source_component">;
|
|
6595
|
+
source_component_id: z.ZodString;
|
|
6596
|
+
name: z.ZodString;
|
|
6597
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6598
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6599
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6600
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6601
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6602
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6603
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6604
|
+
} & {
|
|
6605
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
6606
|
+
}, "strip", z.ZodTypeAny, {
|
|
6607
|
+
type: "source_component";
|
|
6608
|
+
name: string;
|
|
6609
|
+
source_component_id: string;
|
|
6610
|
+
ftype: "simple_pinout";
|
|
6611
|
+
subcircuit_id?: string | undefined;
|
|
6612
|
+
source_group_id?: string | undefined;
|
|
6613
|
+
manufacturer_part_number?: string | undefined;
|
|
6614
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6615
|
+
display_value?: string | undefined;
|
|
6616
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6617
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6618
|
+
}, {
|
|
6619
|
+
type: "source_component";
|
|
6620
|
+
name: string;
|
|
6621
|
+
source_component_id: string;
|
|
6622
|
+
ftype: "simple_pinout";
|
|
6623
|
+
subcircuit_id?: string | undefined;
|
|
6624
|
+
source_group_id?: string | undefined;
|
|
6625
|
+
manufacturer_part_number?: string | undefined;
|
|
6626
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6627
|
+
display_value?: string | undefined;
|
|
6628
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6629
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6630
|
+
}>;
|
|
6631
|
+
type SourceSimplePinoutInput = z.input<typeof source_simple_pinout>;
|
|
6632
|
+
/**
|
|
6633
|
+
* Defines a simple pinout component
|
|
6634
|
+
*/
|
|
6635
|
+
interface SourceSimplePinout extends SourceComponentBase {
|
|
6636
|
+
ftype: "simple_pinout";
|
|
6637
|
+
}
|
|
6638
|
+
|
|
6588
6639
|
declare const source_simple_resonator: z.ZodObject<{
|
|
6589
6640
|
type: z.ZodLiteral<"source_component">;
|
|
6590
6641
|
source_component_id: z.ZodString;
|
|
@@ -7688,6 +7739,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
7688
7739
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7689
7740
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7690
7741
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7742
|
+
} & {
|
|
7743
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
7744
|
+
}, "strip", z.ZodTypeAny, {
|
|
7745
|
+
type: "source_component";
|
|
7746
|
+
name: string;
|
|
7747
|
+
source_component_id: string;
|
|
7748
|
+
ftype: "simple_pinout";
|
|
7749
|
+
subcircuit_id?: string | undefined;
|
|
7750
|
+
source_group_id?: string | undefined;
|
|
7751
|
+
manufacturer_part_number?: string | undefined;
|
|
7752
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7753
|
+
display_value?: string | undefined;
|
|
7754
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7755
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7756
|
+
}, {
|
|
7757
|
+
type: "source_component";
|
|
7758
|
+
name: string;
|
|
7759
|
+
source_component_id: string;
|
|
7760
|
+
ftype: "simple_pinout";
|
|
7761
|
+
subcircuit_id?: string | undefined;
|
|
7762
|
+
source_group_id?: string | undefined;
|
|
7763
|
+
manufacturer_part_number?: string | undefined;
|
|
7764
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7765
|
+
display_value?: string | undefined;
|
|
7766
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7767
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7768
|
+
}>, z.ZodObject<{
|
|
7769
|
+
type: z.ZodLiteral<"source_component">;
|
|
7770
|
+
source_component_id: z.ZodString;
|
|
7771
|
+
name: z.ZodString;
|
|
7772
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7773
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7774
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
7775
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7776
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7777
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7778
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7691
7779
|
} & {
|
|
7692
7780
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
7693
7781
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -8126,7 +8214,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8126
8214
|
* Deprecated: use `AnySourceElement` instead
|
|
8127
8215
|
*/
|
|
8128
8216
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
8129
|
-
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 | SourcePinMissingTraceWarning;
|
|
8217
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
8130
8218
|
|
|
8131
8219
|
declare const source_port: z.ZodObject<{
|
|
8132
8220
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -8144,8 +8232,8 @@ declare const source_port: z.ZodObject<{
|
|
|
8144
8232
|
source_port_id: string;
|
|
8145
8233
|
subcircuit_id?: string | undefined;
|
|
8146
8234
|
port_hints?: string[] | undefined;
|
|
8147
|
-
pin_number?: number | undefined;
|
|
8148
8235
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
8236
|
+
pin_number?: number | undefined;
|
|
8149
8237
|
}, {
|
|
8150
8238
|
type: "source_port";
|
|
8151
8239
|
name: string;
|
|
@@ -8153,8 +8241,8 @@ declare const source_port: z.ZodObject<{
|
|
|
8153
8241
|
source_port_id: string;
|
|
8154
8242
|
subcircuit_id?: string | undefined;
|
|
8155
8243
|
port_hints?: string[] | undefined;
|
|
8156
|
-
pin_number?: number | undefined;
|
|
8157
8244
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
8245
|
+
pin_number?: number | undefined;
|
|
8158
8246
|
}>;
|
|
8159
8247
|
type SourcePortInput = z.input<typeof source_port>;
|
|
8160
8248
|
/**
|
|
@@ -8692,8 +8780,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8692
8780
|
source_port_id: string;
|
|
8693
8781
|
subcircuit_id?: string | undefined;
|
|
8694
8782
|
port_hints?: string[] | undefined;
|
|
8695
|
-
pin_number?: number | undefined;
|
|
8696
8783
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
8784
|
+
pin_number?: number | undefined;
|
|
8697
8785
|
}, {
|
|
8698
8786
|
type: "source_port";
|
|
8699
8787
|
name: string;
|
|
@@ -8701,8 +8789,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8701
8789
|
source_port_id: string;
|
|
8702
8790
|
subcircuit_id?: string | undefined;
|
|
8703
8791
|
port_hints?: string[] | undefined;
|
|
8704
|
-
pin_number?: number | undefined;
|
|
8705
8792
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
8793
|
+
pin_number?: number | undefined;
|
|
8706
8794
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
8707
8795
|
type: z.ZodLiteral<"source_component">;
|
|
8708
8796
|
source_component_id: z.ZodString;
|
|
@@ -9246,6 +9334,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9246
9334
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9247
9335
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9248
9336
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9337
|
+
} & {
|
|
9338
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
9339
|
+
}, "strip", z.ZodTypeAny, {
|
|
9340
|
+
type: "source_component";
|
|
9341
|
+
name: string;
|
|
9342
|
+
source_component_id: string;
|
|
9343
|
+
ftype: "simple_pinout";
|
|
9344
|
+
subcircuit_id?: string | undefined;
|
|
9345
|
+
source_group_id?: string | undefined;
|
|
9346
|
+
manufacturer_part_number?: string | undefined;
|
|
9347
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9348
|
+
display_value?: string | undefined;
|
|
9349
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9350
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9351
|
+
}, {
|
|
9352
|
+
type: "source_component";
|
|
9353
|
+
name: string;
|
|
9354
|
+
source_component_id: string;
|
|
9355
|
+
ftype: "simple_pinout";
|
|
9356
|
+
subcircuit_id?: string | undefined;
|
|
9357
|
+
source_group_id?: string | undefined;
|
|
9358
|
+
manufacturer_part_number?: string | undefined;
|
|
9359
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9360
|
+
display_value?: string | undefined;
|
|
9361
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9362
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9363
|
+
}>, z.ZodObject<{
|
|
9364
|
+
type: z.ZodLiteral<"source_component">;
|
|
9365
|
+
source_component_id: z.ZodString;
|
|
9366
|
+
name: z.ZodString;
|
|
9367
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9368
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9369
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
9370
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9371
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9372
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9373
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9249
9374
|
} & {
|
|
9250
9375
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
9251
9376
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10125,6 +10250,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10125
10250
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10126
10251
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10127
10252
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10253
|
+
} & {
|
|
10254
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
10255
|
+
}, "strip", z.ZodTypeAny, {
|
|
10256
|
+
type: "source_component";
|
|
10257
|
+
name: string;
|
|
10258
|
+
source_component_id: string;
|
|
10259
|
+
ftype: "simple_pinout";
|
|
10260
|
+
subcircuit_id?: string | undefined;
|
|
10261
|
+
source_group_id?: string | undefined;
|
|
10262
|
+
manufacturer_part_number?: string | undefined;
|
|
10263
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10264
|
+
display_value?: string | undefined;
|
|
10265
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10266
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10267
|
+
}, {
|
|
10268
|
+
type: "source_component";
|
|
10269
|
+
name: string;
|
|
10270
|
+
source_component_id: string;
|
|
10271
|
+
ftype: "simple_pinout";
|
|
10272
|
+
subcircuit_id?: string | undefined;
|
|
10273
|
+
source_group_id?: string | undefined;
|
|
10274
|
+
manufacturer_part_number?: string | undefined;
|
|
10275
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10276
|
+
display_value?: string | undefined;
|
|
10277
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10278
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10279
|
+
}>, z.ZodObject<{
|
|
10280
|
+
type: z.ZodLiteral<"source_component">;
|
|
10281
|
+
source_component_id: z.ZodString;
|
|
10282
|
+
name: z.ZodString;
|
|
10283
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10284
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10285
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10286
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10287
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10288
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10289
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10128
10290
|
} & {
|
|
10129
10291
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10130
10292
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -13402,7 +13564,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13402
13564
|
}>, z.ZodObject<{
|
|
13403
13565
|
type: z.ZodLiteral<"schematic_trace">;
|
|
13404
13566
|
schematic_trace_id: z.ZodString;
|
|
13405
|
-
source_trace_id: z.ZodString
|
|
13567
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
13406
13568
|
junctions: z.ZodArray<z.ZodObject<{
|
|
13407
13569
|
x: z.ZodNumber;
|
|
13408
13570
|
y: z.ZodNumber;
|
|
@@ -13463,9 +13625,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13463
13625
|
to_schematic_port_id?: string | undefined;
|
|
13464
13626
|
}>, "many">;
|
|
13465
13627
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13628
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
13466
13629
|
}, "strip", z.ZodTypeAny, {
|
|
13467
13630
|
type: "schematic_trace";
|
|
13468
|
-
source_trace_id: string;
|
|
13469
13631
|
schematic_trace_id: string;
|
|
13470
13632
|
junctions: {
|
|
13471
13633
|
x: number;
|
|
@@ -13485,9 +13647,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13485
13647
|
to_schematic_port_id?: string | undefined;
|
|
13486
13648
|
}[];
|
|
13487
13649
|
subcircuit_id?: string | undefined;
|
|
13650
|
+
source_trace_id?: string | undefined;
|
|
13651
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
13488
13652
|
}, {
|
|
13489
13653
|
type: "schematic_trace";
|
|
13490
|
-
source_trace_id: string;
|
|
13491
13654
|
schematic_trace_id: string;
|
|
13492
13655
|
junctions: {
|
|
13493
13656
|
x: number;
|
|
@@ -13507,6 +13670,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13507
13670
|
to_schematic_port_id?: string | undefined;
|
|
13508
13671
|
}[];
|
|
13509
13672
|
subcircuit_id?: string | undefined;
|
|
13673
|
+
source_trace_id?: string | undefined;
|
|
13674
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
13510
13675
|
}>, z.ZodObject<{
|
|
13511
13676
|
type: z.ZodLiteral<"schematic_path">;
|
|
13512
13677
|
schematic_component_id: z.ZodString;
|
|
@@ -14251,8 +14416,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14251
14416
|
source_port_id: string;
|
|
14252
14417
|
subcircuit_id?: string | undefined;
|
|
14253
14418
|
port_hints?: string[] | undefined;
|
|
14254
|
-
pin_number?: number | undefined;
|
|
14255
14419
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
14420
|
+
pin_number?: number | undefined;
|
|
14256
14421
|
}, {
|
|
14257
14422
|
type: "source_port";
|
|
14258
14423
|
name: string;
|
|
@@ -14260,8 +14425,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14260
14425
|
source_port_id: string;
|
|
14261
14426
|
subcircuit_id?: string | undefined;
|
|
14262
14427
|
port_hints?: string[] | undefined;
|
|
14263
|
-
pin_number?: number | undefined;
|
|
14264
14428
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
14429
|
+
pin_number?: number | undefined;
|
|
14265
14430
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
14266
14431
|
type: z.ZodLiteral<"source_component">;
|
|
14267
14432
|
source_component_id: z.ZodString;
|
|
@@ -14805,6 +14970,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14805
14970
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
14806
14971
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
14807
14972
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14973
|
+
} & {
|
|
14974
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
14975
|
+
}, "strip", z.ZodTypeAny, {
|
|
14976
|
+
type: "source_component";
|
|
14977
|
+
name: string;
|
|
14978
|
+
source_component_id: string;
|
|
14979
|
+
ftype: "simple_pinout";
|
|
14980
|
+
subcircuit_id?: string | undefined;
|
|
14981
|
+
source_group_id?: string | undefined;
|
|
14982
|
+
manufacturer_part_number?: string | undefined;
|
|
14983
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14984
|
+
display_value?: string | undefined;
|
|
14985
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
14986
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
14987
|
+
}, {
|
|
14988
|
+
type: "source_component";
|
|
14989
|
+
name: string;
|
|
14990
|
+
source_component_id: string;
|
|
14991
|
+
ftype: "simple_pinout";
|
|
14992
|
+
subcircuit_id?: string | undefined;
|
|
14993
|
+
source_group_id?: string | undefined;
|
|
14994
|
+
manufacturer_part_number?: string | undefined;
|
|
14995
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14996
|
+
display_value?: string | undefined;
|
|
14997
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
14998
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
14999
|
+
}>, z.ZodObject<{
|
|
15000
|
+
type: z.ZodLiteral<"source_component">;
|
|
15001
|
+
source_component_id: z.ZodString;
|
|
15002
|
+
name: z.ZodString;
|
|
15003
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
15004
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
15005
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
15006
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
15007
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
15008
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15009
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14808
15010
|
} & {
|
|
14809
15011
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
14810
15012
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -15684,6 +15886,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15684
15886
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
15685
15887
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15686
15888
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15889
|
+
} & {
|
|
15890
|
+
ftype: z.ZodLiteral<"simple_pinout">;
|
|
15891
|
+
}, "strip", z.ZodTypeAny, {
|
|
15892
|
+
type: "source_component";
|
|
15893
|
+
name: string;
|
|
15894
|
+
source_component_id: string;
|
|
15895
|
+
ftype: "simple_pinout";
|
|
15896
|
+
subcircuit_id?: string | undefined;
|
|
15897
|
+
source_group_id?: string | undefined;
|
|
15898
|
+
manufacturer_part_number?: string | undefined;
|
|
15899
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15900
|
+
display_value?: string | undefined;
|
|
15901
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
15902
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
15903
|
+
}, {
|
|
15904
|
+
type: "source_component";
|
|
15905
|
+
name: string;
|
|
15906
|
+
source_component_id: string;
|
|
15907
|
+
ftype: "simple_pinout";
|
|
15908
|
+
subcircuit_id?: string | undefined;
|
|
15909
|
+
source_group_id?: string | undefined;
|
|
15910
|
+
manufacturer_part_number?: string | undefined;
|
|
15911
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15912
|
+
display_value?: string | undefined;
|
|
15913
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
15914
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
15915
|
+
}>, z.ZodObject<{
|
|
15916
|
+
type: z.ZodLiteral<"source_component">;
|
|
15917
|
+
source_component_id: z.ZodString;
|
|
15918
|
+
name: z.ZodString;
|
|
15919
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
15920
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
15921
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
15922
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
15923
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
15924
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15925
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15687
15926
|
} & {
|
|
15688
15927
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
15689
15928
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -18961,7 +19200,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18961
19200
|
}>, z.ZodObject<{
|
|
18962
19201
|
type: z.ZodLiteral<"schematic_trace">;
|
|
18963
19202
|
schematic_trace_id: z.ZodString;
|
|
18964
|
-
source_trace_id: z.ZodString
|
|
19203
|
+
source_trace_id: z.ZodOptional<z.ZodString>;
|
|
18965
19204
|
junctions: z.ZodArray<z.ZodObject<{
|
|
18966
19205
|
x: z.ZodNumber;
|
|
18967
19206
|
y: z.ZodNumber;
|
|
@@ -19022,9 +19261,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19022
19261
|
to_schematic_port_id?: string | undefined;
|
|
19023
19262
|
}>, "many">;
|
|
19024
19263
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19264
|
+
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
19025
19265
|
}, "strip", z.ZodTypeAny, {
|
|
19026
19266
|
type: "schematic_trace";
|
|
19027
|
-
source_trace_id: string;
|
|
19028
19267
|
schematic_trace_id: string;
|
|
19029
19268
|
junctions: {
|
|
19030
19269
|
x: number;
|
|
@@ -19044,9 +19283,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19044
19283
|
to_schematic_port_id?: string | undefined;
|
|
19045
19284
|
}[];
|
|
19046
19285
|
subcircuit_id?: string | undefined;
|
|
19286
|
+
source_trace_id?: string | undefined;
|
|
19287
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
19047
19288
|
}, {
|
|
19048
19289
|
type: "schematic_trace";
|
|
19049
|
-
source_trace_id: string;
|
|
19050
19290
|
schematic_trace_id: string;
|
|
19051
19291
|
junctions: {
|
|
19052
19292
|
x: number;
|
|
@@ -19066,6 +19306,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19066
19306
|
to_schematic_port_id?: string | undefined;
|
|
19067
19307
|
}[];
|
|
19068
19308
|
subcircuit_id?: string | undefined;
|
|
19309
|
+
source_trace_id?: string | undefined;
|
|
19310
|
+
subcircuit_connectivity_map_key?: string | undefined;
|
|
19069
19311
|
}>, z.ZodObject<{
|
|
19070
19312
|
type: z.ZodLiteral<"schematic_path">;
|
|
19071
19313
|
schematic_component_id: z.ZodString;
|
|
@@ -19777,4 +20019,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
19777
20019
|
*/
|
|
19778
20020
|
type CircuitJson = AnyCircuitElement[];
|
|
19779
20021
|
|
|
19780
|
-
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 SimulationAcVoltageSourceInput, 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 SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, 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_pin_missing_trace_warning, 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 };
|
|
20022
|
+
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 SimulationAcVoltageSourceInput, 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 SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, 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 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 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_pin_missing_trace_warning, 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_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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|