circuit-json 0.0.308 → 0.0.310
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 +17 -0
- package/dist/index.d.mts +195 -2
- package/dist/index.mjs +1122 -1108
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,6 +78,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
78
78
|
- [SourceSimpleSwitch](#sourcesimpleswitch)
|
|
79
79
|
- [SourceSimpleTestPoint](#sourcesimpletestpoint)
|
|
80
80
|
- [SourceSimpleTransistor](#sourcesimpletransistor)
|
|
81
|
+
- [SourceSimpleVoltageProbe](#sourcesimplevoltageprobe)
|
|
81
82
|
- [SourceTrace](#sourcetrace)
|
|
82
83
|
- [SourceTraceNotConnectedError](#sourcetracenotconnectederror)
|
|
83
84
|
- [UnknownErrorFindingPart](#unknownerrorfindingpart)
|
|
@@ -750,6 +751,19 @@ interface SourceSimpleTransistor extends SourceComponentBase {
|
|
|
750
751
|
}
|
|
751
752
|
```
|
|
752
753
|
|
|
754
|
+
### SourceSimpleVoltageProbe
|
|
755
|
+
|
|
756
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_voltage_probe.ts)
|
|
757
|
+
|
|
758
|
+
Defines a simple voltage probe component for simulation and measurement
|
|
759
|
+
|
|
760
|
+
```typescript
|
|
761
|
+
/** Defines a simple voltage probe component for simulation and measurement */
|
|
762
|
+
interface SourceSimpleVoltageProbe extends SourceComponentBase {
|
|
763
|
+
ftype: "simple_voltage_probe"
|
|
764
|
+
}
|
|
765
|
+
```
|
|
766
|
+
|
|
753
767
|
### SourceTrace
|
|
754
768
|
|
|
755
769
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_trace.ts)
|
|
@@ -2576,9 +2590,11 @@ interface SchematicTraceEdge {
|
|
|
2576
2590
|
interface SchematicVoltageProbe {
|
|
2577
2591
|
type: "schematic_voltage_probe"
|
|
2578
2592
|
schematic_voltage_probe_id: string
|
|
2593
|
+
source_component_id?: string
|
|
2579
2594
|
position: Point
|
|
2580
2595
|
schematic_trace_id: string
|
|
2581
2596
|
voltage?: number
|
|
2597
|
+
name?: string
|
|
2582
2598
|
subcircuit_id?: string
|
|
2583
2599
|
}
|
|
2584
2600
|
```
|
|
@@ -2667,6 +2683,7 @@ Defines a voltage probe for simulation, connected to a port or a net.
|
|
|
2667
2683
|
interface SimulationVoltageProbe {
|
|
2668
2684
|
type: "simulation_voltage_probe"
|
|
2669
2685
|
simulation_voltage_probe_id: string
|
|
2686
|
+
source_component_id?: string
|
|
2670
2687
|
source_port_id?: string
|
|
2671
2688
|
source_net_id?: string
|
|
2672
2689
|
name?: string
|
package/dist/index.d.mts
CHANGED
|
@@ -8671,14 +8671,17 @@ type SchematicDebugObjectInput = z.input<typeof schematic_debug_object>;
|
|
|
8671
8671
|
interface SchematicVoltageProbe {
|
|
8672
8672
|
type: "schematic_voltage_probe";
|
|
8673
8673
|
schematic_voltage_probe_id: string;
|
|
8674
|
+
source_component_id?: string;
|
|
8674
8675
|
position: Point;
|
|
8675
8676
|
schematic_trace_id: string;
|
|
8676
8677
|
voltage?: number;
|
|
8678
|
+
name?: string;
|
|
8677
8679
|
subcircuit_id?: string;
|
|
8678
8680
|
}
|
|
8679
8681
|
declare const schematic_voltage_probe: z.ZodObject<{
|
|
8680
8682
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
8681
8683
|
schematic_voltage_probe_id: z.ZodString;
|
|
8684
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
8682
8685
|
position: z.ZodObject<{
|
|
8683
8686
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8684
8687
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8691,6 +8694,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8691
8694
|
}>;
|
|
8692
8695
|
schematic_trace_id: z.ZodString;
|
|
8693
8696
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8697
|
+
name: z.ZodOptional<z.ZodString>;
|
|
8694
8698
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8695
8699
|
}, "strip", z.ZodTypeAny, {
|
|
8696
8700
|
type: "schematic_voltage_probe";
|
|
@@ -8700,6 +8704,8 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8700
8704
|
y: number;
|
|
8701
8705
|
};
|
|
8702
8706
|
schematic_voltage_probe_id: string;
|
|
8707
|
+
name?: string | undefined;
|
|
8708
|
+
source_component_id?: string | undefined;
|
|
8703
8709
|
subcircuit_id?: string | undefined;
|
|
8704
8710
|
voltage?: number | undefined;
|
|
8705
8711
|
}, {
|
|
@@ -8710,6 +8716,8 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8710
8716
|
y: string | number;
|
|
8711
8717
|
};
|
|
8712
8718
|
schematic_voltage_probe_id: string;
|
|
8719
|
+
name?: string | undefined;
|
|
8720
|
+
source_component_id?: string | undefined;
|
|
8713
8721
|
subcircuit_id?: string | undefined;
|
|
8714
8722
|
voltage?: string | number | undefined;
|
|
8715
8723
|
}>;
|
|
@@ -9323,6 +9331,7 @@ interface SimulationSwitch {
|
|
|
9323
9331
|
declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
9324
9332
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
9325
9333
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9334
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9326
9335
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
9327
9336
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
9328
9337
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9331,12 +9340,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9331
9340
|
type: "simulation_voltage_probe";
|
|
9332
9341
|
simulation_voltage_probe_id: string;
|
|
9333
9342
|
name?: string | undefined;
|
|
9343
|
+
source_component_id?: string | undefined;
|
|
9334
9344
|
subcircuit_id?: string | undefined;
|
|
9335
9345
|
source_port_id?: string | undefined;
|
|
9336
9346
|
source_net_id?: string | undefined;
|
|
9337
9347
|
}, {
|
|
9338
9348
|
type: "simulation_voltage_probe";
|
|
9339
9349
|
name?: string | undefined;
|
|
9350
|
+
source_component_id?: string | undefined;
|
|
9340
9351
|
subcircuit_id?: string | undefined;
|
|
9341
9352
|
source_port_id?: string | undefined;
|
|
9342
9353
|
source_net_id?: string | undefined;
|
|
@@ -9345,12 +9356,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9345
9356
|
type: "simulation_voltage_probe";
|
|
9346
9357
|
simulation_voltage_probe_id: string;
|
|
9347
9358
|
name?: string | undefined;
|
|
9359
|
+
source_component_id?: string | undefined;
|
|
9348
9360
|
subcircuit_id?: string | undefined;
|
|
9349
9361
|
source_port_id?: string | undefined;
|
|
9350
9362
|
source_net_id?: string | undefined;
|
|
9351
9363
|
}, {
|
|
9352
9364
|
type: "simulation_voltage_probe";
|
|
9353
9365
|
name?: string | undefined;
|
|
9366
|
+
source_component_id?: string | undefined;
|
|
9354
9367
|
subcircuit_id?: string | undefined;
|
|
9355
9368
|
source_port_id?: string | undefined;
|
|
9356
9369
|
source_net_id?: string | undefined;
|
|
@@ -9363,6 +9376,7 @@ type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
|
|
|
9363
9376
|
interface SimulationVoltageProbe {
|
|
9364
9377
|
type: "simulation_voltage_probe";
|
|
9365
9378
|
simulation_voltage_probe_id: string;
|
|
9379
|
+
source_component_id?: string;
|
|
9366
9380
|
source_port_id?: string;
|
|
9367
9381
|
source_net_id?: string;
|
|
9368
9382
|
name?: string;
|
|
@@ -10727,6 +10741,52 @@ interface SourcePinMissingTraceWarning {
|
|
|
10727
10741
|
subcircuit_id?: string;
|
|
10728
10742
|
}
|
|
10729
10743
|
|
|
10744
|
+
declare const source_simple_voltage_probe: z.ZodObject<{
|
|
10745
|
+
type: z.ZodLiteral<"source_component">;
|
|
10746
|
+
source_component_id: z.ZodString;
|
|
10747
|
+
name: z.ZodString;
|
|
10748
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10749
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10750
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10751
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10752
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10753
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10754
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10755
|
+
} & {
|
|
10756
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
10757
|
+
}, "strip", z.ZodTypeAny, {
|
|
10758
|
+
type: "source_component";
|
|
10759
|
+
name: string;
|
|
10760
|
+
source_component_id: string;
|
|
10761
|
+
ftype: "simple_voltage_probe";
|
|
10762
|
+
subcircuit_id?: string | undefined;
|
|
10763
|
+
source_group_id?: string | undefined;
|
|
10764
|
+
manufacturer_part_number?: string | undefined;
|
|
10765
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10766
|
+
display_value?: string | undefined;
|
|
10767
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10768
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10769
|
+
}, {
|
|
10770
|
+
type: "source_component";
|
|
10771
|
+
name: string;
|
|
10772
|
+
source_component_id: string;
|
|
10773
|
+
ftype: "simple_voltage_probe";
|
|
10774
|
+
subcircuit_id?: string | undefined;
|
|
10775
|
+
source_group_id?: string | undefined;
|
|
10776
|
+
manufacturer_part_number?: string | undefined;
|
|
10777
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10778
|
+
display_value?: string | undefined;
|
|
10779
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10780
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10781
|
+
}>;
|
|
10782
|
+
type SourceSimpleVoltageProbeInput = z.input<typeof source_simple_voltage_probe>;
|
|
10783
|
+
/**
|
|
10784
|
+
* Defines a simple voltage probe component for simulation and measurement
|
|
10785
|
+
*/
|
|
10786
|
+
interface SourceSimpleVoltageProbe extends SourceComponentBase {
|
|
10787
|
+
ftype: "simple_voltage_probe";
|
|
10788
|
+
}
|
|
10789
|
+
|
|
10730
10790
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
10731
10791
|
type: z.ZodLiteral<"source_component">;
|
|
10732
10792
|
source_component_id: z.ZodString;
|
|
@@ -11560,6 +11620,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11560
11620
|
display_value?: string | undefined;
|
|
11561
11621
|
are_pins_interchangeable?: boolean | undefined;
|
|
11562
11622
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11623
|
+
}>, z.ZodObject<{
|
|
11624
|
+
type: z.ZodLiteral<"source_component">;
|
|
11625
|
+
source_component_id: z.ZodString;
|
|
11626
|
+
name: z.ZodString;
|
|
11627
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11628
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11629
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11630
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11631
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11632
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11633
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11634
|
+
} & {
|
|
11635
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
11636
|
+
}, "strip", z.ZodTypeAny, {
|
|
11637
|
+
type: "source_component";
|
|
11638
|
+
name: string;
|
|
11639
|
+
source_component_id: string;
|
|
11640
|
+
ftype: "simple_voltage_probe";
|
|
11641
|
+
subcircuit_id?: string | undefined;
|
|
11642
|
+
source_group_id?: string | undefined;
|
|
11643
|
+
manufacturer_part_number?: string | undefined;
|
|
11644
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11645
|
+
display_value?: string | undefined;
|
|
11646
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11647
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11648
|
+
}, {
|
|
11649
|
+
type: "source_component";
|
|
11650
|
+
name: string;
|
|
11651
|
+
source_component_id: string;
|
|
11652
|
+
ftype: "simple_voltage_probe";
|
|
11653
|
+
subcircuit_id?: string | undefined;
|
|
11654
|
+
source_group_id?: string | undefined;
|
|
11655
|
+
manufacturer_part_number?: string | undefined;
|
|
11656
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11657
|
+
display_value?: string | undefined;
|
|
11658
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11659
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11563
11660
|
}>, z.ZodObject<{
|
|
11564
11661
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
11565
11662
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11745,7 +11842,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11745
11842
|
* Deprecated: use `AnySourceElement` instead
|
|
11746
11843
|
*/
|
|
11747
11844
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
11748
|
-
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;
|
|
11845
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
11749
11846
|
|
|
11750
11847
|
declare const source_port: z.ZodObject<{
|
|
11751
11848
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13116,6 +13213,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13116
13213
|
display_value?: string | undefined;
|
|
13117
13214
|
are_pins_interchangeable?: boolean | undefined;
|
|
13118
13215
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13216
|
+
}>, z.ZodObject<{
|
|
13217
|
+
type: z.ZodLiteral<"source_component">;
|
|
13218
|
+
source_component_id: z.ZodString;
|
|
13219
|
+
name: z.ZodString;
|
|
13220
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13221
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13222
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13223
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13224
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13225
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13226
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13227
|
+
} & {
|
|
13228
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
13229
|
+
}, "strip", z.ZodTypeAny, {
|
|
13230
|
+
type: "source_component";
|
|
13231
|
+
name: string;
|
|
13232
|
+
source_component_id: string;
|
|
13233
|
+
ftype: "simple_voltage_probe";
|
|
13234
|
+
subcircuit_id?: string | undefined;
|
|
13235
|
+
source_group_id?: string | undefined;
|
|
13236
|
+
manufacturer_part_number?: string | undefined;
|
|
13237
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13238
|
+
display_value?: string | undefined;
|
|
13239
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13240
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13241
|
+
}, {
|
|
13242
|
+
type: "source_component";
|
|
13243
|
+
name: string;
|
|
13244
|
+
source_component_id: string;
|
|
13245
|
+
ftype: "simple_voltage_probe";
|
|
13246
|
+
subcircuit_id?: string | undefined;
|
|
13247
|
+
source_group_id?: string | undefined;
|
|
13248
|
+
manufacturer_part_number?: string | undefined;
|
|
13249
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13250
|
+
display_value?: string | undefined;
|
|
13251
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13252
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13119
13253
|
}>, z.ZodObject<{
|
|
13120
13254
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13121
13255
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -19325,6 +19459,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19325
19459
|
}>]>, z.ZodObject<{
|
|
19326
19460
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
19327
19461
|
schematic_voltage_probe_id: z.ZodString;
|
|
19462
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19328
19463
|
position: z.ZodObject<{
|
|
19329
19464
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19330
19465
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19337,6 +19472,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19337
19472
|
}>;
|
|
19338
19473
|
schematic_trace_id: z.ZodString;
|
|
19339
19474
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19475
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19340
19476
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19341
19477
|
}, "strip", z.ZodTypeAny, {
|
|
19342
19478
|
type: "schematic_voltage_probe";
|
|
@@ -19346,6 +19482,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19346
19482
|
y: number;
|
|
19347
19483
|
};
|
|
19348
19484
|
schematic_voltage_probe_id: string;
|
|
19485
|
+
name?: string | undefined;
|
|
19486
|
+
source_component_id?: string | undefined;
|
|
19349
19487
|
subcircuit_id?: string | undefined;
|
|
19350
19488
|
voltage?: number | undefined;
|
|
19351
19489
|
}, {
|
|
@@ -19356,6 +19494,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19356
19494
|
y: string | number;
|
|
19357
19495
|
};
|
|
19358
19496
|
schematic_voltage_probe_id: string;
|
|
19497
|
+
name?: string | undefined;
|
|
19498
|
+
source_component_id?: string | undefined;
|
|
19359
19499
|
subcircuit_id?: string | undefined;
|
|
19360
19500
|
voltage?: string | number | undefined;
|
|
19361
19501
|
}>, z.ZodObject<{
|
|
@@ -19854,6 +19994,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19854
19994
|
}>, z.ZodEffects<z.ZodObject<{
|
|
19855
19995
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
19856
19996
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19997
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19857
19998
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
19858
19999
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
19859
20000
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -19862,12 +20003,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19862
20003
|
type: "simulation_voltage_probe";
|
|
19863
20004
|
simulation_voltage_probe_id: string;
|
|
19864
20005
|
name?: string | undefined;
|
|
20006
|
+
source_component_id?: string | undefined;
|
|
19865
20007
|
subcircuit_id?: string | undefined;
|
|
19866
20008
|
source_port_id?: string | undefined;
|
|
19867
20009
|
source_net_id?: string | undefined;
|
|
19868
20010
|
}, {
|
|
19869
20011
|
type: "simulation_voltage_probe";
|
|
19870
20012
|
name?: string | undefined;
|
|
20013
|
+
source_component_id?: string | undefined;
|
|
19871
20014
|
subcircuit_id?: string | undefined;
|
|
19872
20015
|
source_port_id?: string | undefined;
|
|
19873
20016
|
source_net_id?: string | undefined;
|
|
@@ -19876,12 +20019,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19876
20019
|
type: "simulation_voltage_probe";
|
|
19877
20020
|
simulation_voltage_probe_id: string;
|
|
19878
20021
|
name?: string | undefined;
|
|
20022
|
+
source_component_id?: string | undefined;
|
|
19879
20023
|
subcircuit_id?: string | undefined;
|
|
19880
20024
|
source_port_id?: string | undefined;
|
|
19881
20025
|
source_net_id?: string | undefined;
|
|
19882
20026
|
}, {
|
|
19883
20027
|
type: "simulation_voltage_probe";
|
|
19884
20028
|
name?: string | undefined;
|
|
20029
|
+
source_component_id?: string | undefined;
|
|
19885
20030
|
subcircuit_id?: string | undefined;
|
|
19886
20031
|
source_port_id?: string | undefined;
|
|
19887
20032
|
source_net_id?: string | undefined;
|
|
@@ -20804,6 +20949,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20804
20949
|
display_value?: string | undefined;
|
|
20805
20950
|
are_pins_interchangeable?: boolean | undefined;
|
|
20806
20951
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20952
|
+
}>, z.ZodObject<{
|
|
20953
|
+
type: z.ZodLiteral<"source_component">;
|
|
20954
|
+
source_component_id: z.ZodString;
|
|
20955
|
+
name: z.ZodString;
|
|
20956
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
20957
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
20958
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
20959
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
20960
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
20961
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
20962
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20963
|
+
} & {
|
|
20964
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
20965
|
+
}, "strip", z.ZodTypeAny, {
|
|
20966
|
+
type: "source_component";
|
|
20967
|
+
name: string;
|
|
20968
|
+
source_component_id: string;
|
|
20969
|
+
ftype: "simple_voltage_probe";
|
|
20970
|
+
subcircuit_id?: string | undefined;
|
|
20971
|
+
source_group_id?: string | undefined;
|
|
20972
|
+
manufacturer_part_number?: string | undefined;
|
|
20973
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20974
|
+
display_value?: string | undefined;
|
|
20975
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
20976
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20977
|
+
}, {
|
|
20978
|
+
type: "source_component";
|
|
20979
|
+
name: string;
|
|
20980
|
+
source_component_id: string;
|
|
20981
|
+
ftype: "simple_voltage_probe";
|
|
20982
|
+
subcircuit_id?: string | undefined;
|
|
20983
|
+
source_group_id?: string | undefined;
|
|
20984
|
+
manufacturer_part_number?: string | undefined;
|
|
20985
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20986
|
+
display_value?: string | undefined;
|
|
20987
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
20988
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20807
20989
|
}>, z.ZodObject<{
|
|
20808
20990
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
20809
20991
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -27013,6 +27195,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27013
27195
|
}>]>, z.ZodObject<{
|
|
27014
27196
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
27015
27197
|
schematic_voltage_probe_id: z.ZodString;
|
|
27198
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27016
27199
|
position: z.ZodObject<{
|
|
27017
27200
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27018
27201
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27025,6 +27208,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27025
27208
|
}>;
|
|
27026
27209
|
schematic_trace_id: z.ZodString;
|
|
27027
27210
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27211
|
+
name: z.ZodOptional<z.ZodString>;
|
|
27028
27212
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27029
27213
|
}, "strip", z.ZodTypeAny, {
|
|
27030
27214
|
type: "schematic_voltage_probe";
|
|
@@ -27034,6 +27218,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27034
27218
|
y: number;
|
|
27035
27219
|
};
|
|
27036
27220
|
schematic_voltage_probe_id: string;
|
|
27221
|
+
name?: string | undefined;
|
|
27222
|
+
source_component_id?: string | undefined;
|
|
27037
27223
|
subcircuit_id?: string | undefined;
|
|
27038
27224
|
voltage?: number | undefined;
|
|
27039
27225
|
}, {
|
|
@@ -27044,6 +27230,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27044
27230
|
y: string | number;
|
|
27045
27231
|
};
|
|
27046
27232
|
schematic_voltage_probe_id: string;
|
|
27233
|
+
name?: string | undefined;
|
|
27234
|
+
source_component_id?: string | undefined;
|
|
27047
27235
|
subcircuit_id?: string | undefined;
|
|
27048
27236
|
voltage?: string | number | undefined;
|
|
27049
27237
|
}>, z.ZodObject<{
|
|
@@ -27542,6 +27730,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27542
27730
|
}>, z.ZodEffects<z.ZodObject<{
|
|
27543
27731
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
27544
27732
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27733
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27545
27734
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
27546
27735
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
27547
27736
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -27550,12 +27739,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27550
27739
|
type: "simulation_voltage_probe";
|
|
27551
27740
|
simulation_voltage_probe_id: string;
|
|
27552
27741
|
name?: string | undefined;
|
|
27742
|
+
source_component_id?: string | undefined;
|
|
27553
27743
|
subcircuit_id?: string | undefined;
|
|
27554
27744
|
source_port_id?: string | undefined;
|
|
27555
27745
|
source_net_id?: string | undefined;
|
|
27556
27746
|
}, {
|
|
27557
27747
|
type: "simulation_voltage_probe";
|
|
27558
27748
|
name?: string | undefined;
|
|
27749
|
+
source_component_id?: string | undefined;
|
|
27559
27750
|
subcircuit_id?: string | undefined;
|
|
27560
27751
|
source_port_id?: string | undefined;
|
|
27561
27752
|
source_net_id?: string | undefined;
|
|
@@ -27564,12 +27755,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27564
27755
|
type: "simulation_voltage_probe";
|
|
27565
27756
|
simulation_voltage_probe_id: string;
|
|
27566
27757
|
name?: string | undefined;
|
|
27758
|
+
source_component_id?: string | undefined;
|
|
27567
27759
|
subcircuit_id?: string | undefined;
|
|
27568
27760
|
source_port_id?: string | undefined;
|
|
27569
27761
|
source_net_id?: string | undefined;
|
|
27570
27762
|
}, {
|
|
27571
27763
|
type: "simulation_voltage_probe";
|
|
27572
27764
|
name?: string | undefined;
|
|
27765
|
+
source_component_id?: string | undefined;
|
|
27573
27766
|
subcircuit_id?: string | undefined;
|
|
27574
27767
|
source_port_id?: string | undefined;
|
|
27575
27768
|
source_net_id?: string | undefined;
|
|
@@ -27612,4 +27805,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
27612
27805
|
*/
|
|
27613
27806
|
type CircuitJson = AnyCircuitElement[];
|
|
27614
27807
|
|
|
27615
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 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 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 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 SimulationExperiment, type SimulationExperimentInput, 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, 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 UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_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, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, 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, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
27808
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 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 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 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 SimulationExperiment, type SimulationExperimentInput, 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_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, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, 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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|