circuit-json 0.0.309 → 0.0.311
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 -4
- package/dist/index.d.mts +195 -48
- package/dist/index.mjs +1119 -1109
- 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,10 +2590,10 @@ 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
|
|
2582
|
-
name?: string
|
|
2583
2597
|
subcircuit_id?: string
|
|
2584
2598
|
}
|
|
2585
2599
|
```
|
|
@@ -2629,8 +2643,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
2629
2643
|
simulation_experiment_id: string
|
|
2630
2644
|
timestamps_ms?: number[]
|
|
2631
2645
|
voltage_levels: number[]
|
|
2632
|
-
|
|
2633
|
-
simulation_voltage_probe_id?: string
|
|
2646
|
+
source_component_id?: string
|
|
2634
2647
|
subcircuit_connectivity_map_key?: string
|
|
2635
2648
|
time_per_step: number
|
|
2636
2649
|
start_time_ms: number
|
|
@@ -2668,9 +2681,9 @@ Defines a voltage probe for simulation, connected to a port or a net.
|
|
|
2668
2681
|
interface SimulationVoltageProbe {
|
|
2669
2682
|
type: "simulation_voltage_probe"
|
|
2670
2683
|
simulation_voltage_probe_id: string
|
|
2684
|
+
source_component_id?: string
|
|
2671
2685
|
source_port_id?: string
|
|
2672
2686
|
source_net_id?: string
|
|
2673
|
-
name?: string
|
|
2674
2687
|
subcircuit_id?: string
|
|
2675
2688
|
}
|
|
2676
2689
|
```
|
package/dist/index.d.mts
CHANGED
|
@@ -8671,15 +8671,16 @@ 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;
|
|
8677
|
-
name?: string;
|
|
8678
8678
|
subcircuit_id?: string;
|
|
8679
8679
|
}
|
|
8680
8680
|
declare const schematic_voltage_probe: z.ZodObject<{
|
|
8681
8681
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
8682
8682
|
schematic_voltage_probe_id: z.ZodString;
|
|
8683
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
8683
8684
|
position: z.ZodObject<{
|
|
8684
8685
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8685
8686
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8692,7 +8693,6 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8692
8693
|
}>;
|
|
8693
8694
|
schematic_trace_id: z.ZodString;
|
|
8694
8695
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8695
|
-
name: z.ZodOptional<z.ZodString>;
|
|
8696
8696
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8697
8697
|
}, "strip", z.ZodTypeAny, {
|
|
8698
8698
|
type: "schematic_voltage_probe";
|
|
@@ -8702,7 +8702,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8702
8702
|
y: number;
|
|
8703
8703
|
};
|
|
8704
8704
|
schematic_voltage_probe_id: string;
|
|
8705
|
-
|
|
8705
|
+
source_component_id?: string | undefined;
|
|
8706
8706
|
subcircuit_id?: string | undefined;
|
|
8707
8707
|
voltage?: number | undefined;
|
|
8708
8708
|
}, {
|
|
@@ -8713,7 +8713,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
|
|
|
8713
8713
|
y: string | number;
|
|
8714
8714
|
};
|
|
8715
8715
|
schematic_voltage_probe_id: string;
|
|
8716
|
-
|
|
8716
|
+
source_component_id?: string | undefined;
|
|
8717
8717
|
subcircuit_id?: string | undefined;
|
|
8718
8718
|
voltage?: string | number | undefined;
|
|
8719
8719
|
}>;
|
|
@@ -9238,8 +9238,7 @@ interface SimulationTransientVoltageGraph {
|
|
|
9238
9238
|
simulation_experiment_id: string;
|
|
9239
9239
|
timestamps_ms?: number[];
|
|
9240
9240
|
voltage_levels: number[];
|
|
9241
|
-
|
|
9242
|
-
simulation_voltage_probe_id?: string;
|
|
9241
|
+
source_component_id?: string;
|
|
9243
9242
|
subcircuit_connectivity_map_key?: string;
|
|
9244
9243
|
time_per_step: number;
|
|
9245
9244
|
start_time_ms: number;
|
|
@@ -9252,8 +9251,7 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9252
9251
|
simulation_experiment_id: z.ZodString;
|
|
9253
9252
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
9254
9253
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
9255
|
-
|
|
9256
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
9254
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9257
9255
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
9258
9256
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
9259
9257
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9268,10 +9266,9 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9268
9266
|
simulation_transient_voltage_graph_id: string;
|
|
9269
9267
|
voltage_levels: number[];
|
|
9270
9268
|
name?: string | undefined;
|
|
9269
|
+
source_component_id?: string | undefined;
|
|
9271
9270
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9272
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
9273
9271
|
timestamps_ms?: number[] | undefined;
|
|
9274
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
9275
9272
|
}, {
|
|
9276
9273
|
type: "simulation_transient_voltage_graph";
|
|
9277
9274
|
simulation_experiment_id: string;
|
|
@@ -9280,11 +9277,10 @@ declare const simulation_transient_voltage_graph: z.ZodObject<{
|
|
|
9280
9277
|
end_time_ms: string | number;
|
|
9281
9278
|
voltage_levels: number[];
|
|
9282
9279
|
name?: string | undefined;
|
|
9280
|
+
source_component_id?: string | undefined;
|
|
9283
9281
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
9284
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
9285
9282
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
9286
9283
|
timestamps_ms?: number[] | undefined;
|
|
9287
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
9288
9284
|
}>;
|
|
9289
9285
|
type SimulationTransientVoltageGraphInput = z.input<typeof simulation_transient_voltage_graph>;
|
|
9290
9286
|
|
|
@@ -9327,20 +9323,20 @@ interface SimulationSwitch {
|
|
|
9327
9323
|
declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
9328
9324
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
9329
9325
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9326
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
9330
9327
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
9331
9328
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
9332
|
-
name: z.ZodOptional<z.ZodString>;
|
|
9333
9329
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9334
9330
|
}, "strip", z.ZodTypeAny, {
|
|
9335
9331
|
type: "simulation_voltage_probe";
|
|
9336
9332
|
simulation_voltage_probe_id: string;
|
|
9337
|
-
|
|
9333
|
+
source_component_id?: string | undefined;
|
|
9338
9334
|
subcircuit_id?: string | undefined;
|
|
9339
9335
|
source_port_id?: string | undefined;
|
|
9340
9336
|
source_net_id?: string | undefined;
|
|
9341
9337
|
}, {
|
|
9342
9338
|
type: "simulation_voltage_probe";
|
|
9343
|
-
|
|
9339
|
+
source_component_id?: string | undefined;
|
|
9344
9340
|
subcircuit_id?: string | undefined;
|
|
9345
9341
|
source_port_id?: string | undefined;
|
|
9346
9342
|
source_net_id?: string | undefined;
|
|
@@ -9348,13 +9344,13 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
|
|
|
9348
9344
|
}>, {
|
|
9349
9345
|
type: "simulation_voltage_probe";
|
|
9350
9346
|
simulation_voltage_probe_id: string;
|
|
9351
|
-
|
|
9347
|
+
source_component_id?: string | undefined;
|
|
9352
9348
|
subcircuit_id?: string | undefined;
|
|
9353
9349
|
source_port_id?: string | undefined;
|
|
9354
9350
|
source_net_id?: string | undefined;
|
|
9355
9351
|
}, {
|
|
9356
9352
|
type: "simulation_voltage_probe";
|
|
9357
|
-
|
|
9353
|
+
source_component_id?: string | undefined;
|
|
9358
9354
|
subcircuit_id?: string | undefined;
|
|
9359
9355
|
source_port_id?: string | undefined;
|
|
9360
9356
|
source_net_id?: string | undefined;
|
|
@@ -9367,9 +9363,9 @@ type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
|
|
|
9367
9363
|
interface SimulationVoltageProbe {
|
|
9368
9364
|
type: "simulation_voltage_probe";
|
|
9369
9365
|
simulation_voltage_probe_id: string;
|
|
9366
|
+
source_component_id?: string;
|
|
9370
9367
|
source_port_id?: string;
|
|
9371
9368
|
source_net_id?: string;
|
|
9372
|
-
name?: string;
|
|
9373
9369
|
subcircuit_id?: string;
|
|
9374
9370
|
}
|
|
9375
9371
|
|
|
@@ -10731,6 +10727,52 @@ interface SourcePinMissingTraceWarning {
|
|
|
10731
10727
|
subcircuit_id?: string;
|
|
10732
10728
|
}
|
|
10733
10729
|
|
|
10730
|
+
declare const source_simple_voltage_probe: z.ZodObject<{
|
|
10731
|
+
type: z.ZodLiteral<"source_component">;
|
|
10732
|
+
source_component_id: z.ZodString;
|
|
10733
|
+
name: z.ZodString;
|
|
10734
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10735
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10736
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10737
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10738
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10739
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10740
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10741
|
+
} & {
|
|
10742
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
10743
|
+
}, "strip", z.ZodTypeAny, {
|
|
10744
|
+
type: "source_component";
|
|
10745
|
+
name: string;
|
|
10746
|
+
source_component_id: string;
|
|
10747
|
+
ftype: "simple_voltage_probe";
|
|
10748
|
+
subcircuit_id?: string | undefined;
|
|
10749
|
+
source_group_id?: string | undefined;
|
|
10750
|
+
manufacturer_part_number?: string | undefined;
|
|
10751
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10752
|
+
display_value?: string | undefined;
|
|
10753
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10754
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10755
|
+
}, {
|
|
10756
|
+
type: "source_component";
|
|
10757
|
+
name: string;
|
|
10758
|
+
source_component_id: string;
|
|
10759
|
+
ftype: "simple_voltage_probe";
|
|
10760
|
+
subcircuit_id?: string | undefined;
|
|
10761
|
+
source_group_id?: string | undefined;
|
|
10762
|
+
manufacturer_part_number?: string | undefined;
|
|
10763
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10764
|
+
display_value?: string | undefined;
|
|
10765
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10766
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10767
|
+
}>;
|
|
10768
|
+
type SourceSimpleVoltageProbeInput = z.input<typeof source_simple_voltage_probe>;
|
|
10769
|
+
/**
|
|
10770
|
+
* Defines a simple voltage probe component for simulation and measurement
|
|
10771
|
+
*/
|
|
10772
|
+
interface SourceSimpleVoltageProbe extends SourceComponentBase {
|
|
10773
|
+
ftype: "simple_voltage_probe";
|
|
10774
|
+
}
|
|
10775
|
+
|
|
10734
10776
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
10735
10777
|
type: z.ZodLiteral<"source_component">;
|
|
10736
10778
|
source_component_id: z.ZodString;
|
|
@@ -11564,6 +11606,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11564
11606
|
display_value?: string | undefined;
|
|
11565
11607
|
are_pins_interchangeable?: boolean | undefined;
|
|
11566
11608
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11609
|
+
}>, z.ZodObject<{
|
|
11610
|
+
type: z.ZodLiteral<"source_component">;
|
|
11611
|
+
source_component_id: z.ZodString;
|
|
11612
|
+
name: z.ZodString;
|
|
11613
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11614
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11615
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11616
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11617
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11618
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11619
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11620
|
+
} & {
|
|
11621
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
11622
|
+
}, "strip", z.ZodTypeAny, {
|
|
11623
|
+
type: "source_component";
|
|
11624
|
+
name: string;
|
|
11625
|
+
source_component_id: string;
|
|
11626
|
+
ftype: "simple_voltage_probe";
|
|
11627
|
+
subcircuit_id?: string | undefined;
|
|
11628
|
+
source_group_id?: string | undefined;
|
|
11629
|
+
manufacturer_part_number?: string | undefined;
|
|
11630
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11631
|
+
display_value?: string | undefined;
|
|
11632
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11633
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11634
|
+
}, {
|
|
11635
|
+
type: "source_component";
|
|
11636
|
+
name: string;
|
|
11637
|
+
source_component_id: string;
|
|
11638
|
+
ftype: "simple_voltage_probe";
|
|
11639
|
+
subcircuit_id?: string | undefined;
|
|
11640
|
+
source_group_id?: string | undefined;
|
|
11641
|
+
manufacturer_part_number?: string | undefined;
|
|
11642
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11643
|
+
display_value?: string | undefined;
|
|
11644
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11645
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11567
11646
|
}>, z.ZodObject<{
|
|
11568
11647
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
11569
11648
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11749,7 +11828,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11749
11828
|
* Deprecated: use `AnySourceElement` instead
|
|
11750
11829
|
*/
|
|
11751
11830
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
11752
|
-
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;
|
|
11831
|
+
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;
|
|
11753
11832
|
|
|
11754
11833
|
declare const source_port: z.ZodObject<{
|
|
11755
11834
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13120,6 +13199,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13120
13199
|
display_value?: string | undefined;
|
|
13121
13200
|
are_pins_interchangeable?: boolean | undefined;
|
|
13122
13201
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13202
|
+
}>, z.ZodObject<{
|
|
13203
|
+
type: z.ZodLiteral<"source_component">;
|
|
13204
|
+
source_component_id: z.ZodString;
|
|
13205
|
+
name: z.ZodString;
|
|
13206
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13207
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13208
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13209
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13210
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13211
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13212
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13213
|
+
} & {
|
|
13214
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
13215
|
+
}, "strip", z.ZodTypeAny, {
|
|
13216
|
+
type: "source_component";
|
|
13217
|
+
name: string;
|
|
13218
|
+
source_component_id: string;
|
|
13219
|
+
ftype: "simple_voltage_probe";
|
|
13220
|
+
subcircuit_id?: string | undefined;
|
|
13221
|
+
source_group_id?: string | undefined;
|
|
13222
|
+
manufacturer_part_number?: string | undefined;
|
|
13223
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13224
|
+
display_value?: string | undefined;
|
|
13225
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13226
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13227
|
+
}, {
|
|
13228
|
+
type: "source_component";
|
|
13229
|
+
name: string;
|
|
13230
|
+
source_component_id: string;
|
|
13231
|
+
ftype: "simple_voltage_probe";
|
|
13232
|
+
subcircuit_id?: string | undefined;
|
|
13233
|
+
source_group_id?: string | undefined;
|
|
13234
|
+
manufacturer_part_number?: string | undefined;
|
|
13235
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13236
|
+
display_value?: string | undefined;
|
|
13237
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13238
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13123
13239
|
}>, z.ZodObject<{
|
|
13124
13240
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13125
13241
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -19329,6 +19445,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19329
19445
|
}>]>, z.ZodObject<{
|
|
19330
19446
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
19331
19447
|
schematic_voltage_probe_id: z.ZodString;
|
|
19448
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19332
19449
|
position: z.ZodObject<{
|
|
19333
19450
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19334
19451
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19341,7 +19458,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19341
19458
|
}>;
|
|
19342
19459
|
schematic_trace_id: z.ZodString;
|
|
19343
19460
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19344
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19345
19461
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19346
19462
|
}, "strip", z.ZodTypeAny, {
|
|
19347
19463
|
type: "schematic_voltage_probe";
|
|
@@ -19351,7 +19467,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19351
19467
|
y: number;
|
|
19352
19468
|
};
|
|
19353
19469
|
schematic_voltage_probe_id: string;
|
|
19354
|
-
|
|
19470
|
+
source_component_id?: string | undefined;
|
|
19355
19471
|
subcircuit_id?: string | undefined;
|
|
19356
19472
|
voltage?: number | undefined;
|
|
19357
19473
|
}, {
|
|
@@ -19362,7 +19478,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19362
19478
|
y: string | number;
|
|
19363
19479
|
};
|
|
19364
19480
|
schematic_voltage_probe_id: string;
|
|
19365
|
-
|
|
19481
|
+
source_component_id?: string | undefined;
|
|
19366
19482
|
subcircuit_id?: string | undefined;
|
|
19367
19483
|
voltage?: string | number | undefined;
|
|
19368
19484
|
}>, z.ZodObject<{
|
|
@@ -19801,8 +19917,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19801
19917
|
simulation_experiment_id: z.ZodString;
|
|
19802
19918
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
19803
19919
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
19804
|
-
|
|
19805
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
19920
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19806
19921
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
19807
19922
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
19808
19923
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -19817,10 +19932,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19817
19932
|
simulation_transient_voltage_graph_id: string;
|
|
19818
19933
|
voltage_levels: number[];
|
|
19819
19934
|
name?: string | undefined;
|
|
19935
|
+
source_component_id?: string | undefined;
|
|
19820
19936
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19821
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
19822
19937
|
timestamps_ms?: number[] | undefined;
|
|
19823
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
19824
19938
|
}, {
|
|
19825
19939
|
type: "simulation_transient_voltage_graph";
|
|
19826
19940
|
simulation_experiment_id: string;
|
|
@@ -19829,11 +19943,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19829
19943
|
end_time_ms: string | number;
|
|
19830
19944
|
voltage_levels: number[];
|
|
19831
19945
|
name?: string | undefined;
|
|
19946
|
+
source_component_id?: string | undefined;
|
|
19832
19947
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
19833
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
19834
19948
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
19835
19949
|
timestamps_ms?: number[] | undefined;
|
|
19836
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
19837
19950
|
}>, z.ZodObject<{
|
|
19838
19951
|
type: z.ZodLiteral<"simulation_switch">;
|
|
19839
19952
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19861,20 +19974,20 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19861
19974
|
}>, z.ZodEffects<z.ZodObject<{
|
|
19862
19975
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
19863
19976
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
19977
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
19864
19978
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
19865
19979
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
19866
|
-
name: z.ZodOptional<z.ZodString>;
|
|
19867
19980
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
19868
19981
|
}, "strip", z.ZodTypeAny, {
|
|
19869
19982
|
type: "simulation_voltage_probe";
|
|
19870
19983
|
simulation_voltage_probe_id: string;
|
|
19871
|
-
|
|
19984
|
+
source_component_id?: string | undefined;
|
|
19872
19985
|
subcircuit_id?: string | undefined;
|
|
19873
19986
|
source_port_id?: string | undefined;
|
|
19874
19987
|
source_net_id?: string | undefined;
|
|
19875
19988
|
}, {
|
|
19876
19989
|
type: "simulation_voltage_probe";
|
|
19877
|
-
|
|
19990
|
+
source_component_id?: string | undefined;
|
|
19878
19991
|
subcircuit_id?: string | undefined;
|
|
19879
19992
|
source_port_id?: string | undefined;
|
|
19880
19993
|
source_net_id?: string | undefined;
|
|
@@ -19882,13 +19995,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19882
19995
|
}>, {
|
|
19883
19996
|
type: "simulation_voltage_probe";
|
|
19884
19997
|
simulation_voltage_probe_id: string;
|
|
19885
|
-
|
|
19998
|
+
source_component_id?: string | undefined;
|
|
19886
19999
|
subcircuit_id?: string | undefined;
|
|
19887
20000
|
source_port_id?: string | undefined;
|
|
19888
20001
|
source_net_id?: string | undefined;
|
|
19889
20002
|
}, {
|
|
19890
20003
|
type: "simulation_voltage_probe";
|
|
19891
|
-
|
|
20004
|
+
source_component_id?: string | undefined;
|
|
19892
20005
|
subcircuit_id?: string | undefined;
|
|
19893
20006
|
source_port_id?: string | undefined;
|
|
19894
20007
|
source_net_id?: string | undefined;
|
|
@@ -20811,6 +20924,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20811
20924
|
display_value?: string | undefined;
|
|
20812
20925
|
are_pins_interchangeable?: boolean | undefined;
|
|
20813
20926
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20927
|
+
}>, z.ZodObject<{
|
|
20928
|
+
type: z.ZodLiteral<"source_component">;
|
|
20929
|
+
source_component_id: z.ZodString;
|
|
20930
|
+
name: z.ZodString;
|
|
20931
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
20932
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
20933
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
20934
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
20935
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
20936
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
20937
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20938
|
+
} & {
|
|
20939
|
+
ftype: z.ZodLiteral<"simple_voltage_probe">;
|
|
20940
|
+
}, "strip", z.ZodTypeAny, {
|
|
20941
|
+
type: "source_component";
|
|
20942
|
+
name: string;
|
|
20943
|
+
source_component_id: string;
|
|
20944
|
+
ftype: "simple_voltage_probe";
|
|
20945
|
+
subcircuit_id?: string | undefined;
|
|
20946
|
+
source_group_id?: string | undefined;
|
|
20947
|
+
manufacturer_part_number?: string | undefined;
|
|
20948
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20949
|
+
display_value?: string | undefined;
|
|
20950
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
20951
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20952
|
+
}, {
|
|
20953
|
+
type: "source_component";
|
|
20954
|
+
name: string;
|
|
20955
|
+
source_component_id: string;
|
|
20956
|
+
ftype: "simple_voltage_probe";
|
|
20957
|
+
subcircuit_id?: string | undefined;
|
|
20958
|
+
source_group_id?: string | undefined;
|
|
20959
|
+
manufacturer_part_number?: string | undefined;
|
|
20960
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20961
|
+
display_value?: string | undefined;
|
|
20962
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
20963
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
20814
20964
|
}>, z.ZodObject<{
|
|
20815
20965
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
20816
20966
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -27020,6 +27170,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27020
27170
|
}>]>, z.ZodObject<{
|
|
27021
27171
|
type: z.ZodLiteral<"schematic_voltage_probe">;
|
|
27022
27172
|
schematic_voltage_probe_id: z.ZodString;
|
|
27173
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27023
27174
|
position: z.ZodObject<{
|
|
27024
27175
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27025
27176
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27032,7 +27183,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27032
27183
|
}>;
|
|
27033
27184
|
schematic_trace_id: z.ZodString;
|
|
27034
27185
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27035
|
-
name: z.ZodOptional<z.ZodString>;
|
|
27036
27186
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27037
27187
|
}, "strip", z.ZodTypeAny, {
|
|
27038
27188
|
type: "schematic_voltage_probe";
|
|
@@ -27042,7 +27192,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27042
27192
|
y: number;
|
|
27043
27193
|
};
|
|
27044
27194
|
schematic_voltage_probe_id: string;
|
|
27045
|
-
|
|
27195
|
+
source_component_id?: string | undefined;
|
|
27046
27196
|
subcircuit_id?: string | undefined;
|
|
27047
27197
|
voltage?: number | undefined;
|
|
27048
27198
|
}, {
|
|
@@ -27053,7 +27203,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27053
27203
|
y: string | number;
|
|
27054
27204
|
};
|
|
27055
27205
|
schematic_voltage_probe_id: string;
|
|
27056
|
-
|
|
27206
|
+
source_component_id?: string | undefined;
|
|
27057
27207
|
subcircuit_id?: string | undefined;
|
|
27058
27208
|
voltage?: string | number | undefined;
|
|
27059
27209
|
}>, z.ZodObject<{
|
|
@@ -27492,8 +27642,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27492
27642
|
simulation_experiment_id: z.ZodString;
|
|
27493
27643
|
timestamps_ms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
27494
27644
|
voltage_levels: z.ZodArray<z.ZodNumber, "many">;
|
|
27495
|
-
|
|
27496
|
-
simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
|
|
27645
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27497
27646
|
subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
|
|
27498
27647
|
time_per_step: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27499
27648
|
start_time_ms: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27508,10 +27657,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27508
27657
|
simulation_transient_voltage_graph_id: string;
|
|
27509
27658
|
voltage_levels: number[];
|
|
27510
27659
|
name?: string | undefined;
|
|
27660
|
+
source_component_id?: string | undefined;
|
|
27511
27661
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
27512
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
27513
27662
|
timestamps_ms?: number[] | undefined;
|
|
27514
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
27515
27663
|
}, {
|
|
27516
27664
|
type: "simulation_transient_voltage_graph";
|
|
27517
27665
|
simulation_experiment_id: string;
|
|
@@ -27520,11 +27668,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27520
27668
|
end_time_ms: string | number;
|
|
27521
27669
|
voltage_levels: number[];
|
|
27522
27670
|
name?: string | undefined;
|
|
27671
|
+
source_component_id?: string | undefined;
|
|
27523
27672
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
27524
|
-
schematic_voltage_probe_id?: string | undefined;
|
|
27525
27673
|
simulation_transient_voltage_graph_id?: string | undefined;
|
|
27526
27674
|
timestamps_ms?: number[] | undefined;
|
|
27527
|
-
simulation_voltage_probe_id?: string | undefined;
|
|
27528
27675
|
}>, z.ZodObject<{
|
|
27529
27676
|
type: z.ZodLiteral<"simulation_switch">;
|
|
27530
27677
|
simulation_switch_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -27552,20 +27699,20 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27552
27699
|
}>, z.ZodEffects<z.ZodObject<{
|
|
27553
27700
|
type: z.ZodLiteral<"simulation_voltage_probe">;
|
|
27554
27701
|
simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27702
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
27555
27703
|
source_port_id: z.ZodOptional<z.ZodString>;
|
|
27556
27704
|
source_net_id: z.ZodOptional<z.ZodString>;
|
|
27557
|
-
name: z.ZodOptional<z.ZodString>;
|
|
27558
27705
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
27559
27706
|
}, "strip", z.ZodTypeAny, {
|
|
27560
27707
|
type: "simulation_voltage_probe";
|
|
27561
27708
|
simulation_voltage_probe_id: string;
|
|
27562
|
-
|
|
27709
|
+
source_component_id?: string | undefined;
|
|
27563
27710
|
subcircuit_id?: string | undefined;
|
|
27564
27711
|
source_port_id?: string | undefined;
|
|
27565
27712
|
source_net_id?: string | undefined;
|
|
27566
27713
|
}, {
|
|
27567
27714
|
type: "simulation_voltage_probe";
|
|
27568
|
-
|
|
27715
|
+
source_component_id?: string | undefined;
|
|
27569
27716
|
subcircuit_id?: string | undefined;
|
|
27570
27717
|
source_port_id?: string | undefined;
|
|
27571
27718
|
source_net_id?: string | undefined;
|
|
@@ -27573,13 +27720,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
27573
27720
|
}>, {
|
|
27574
27721
|
type: "simulation_voltage_probe";
|
|
27575
27722
|
simulation_voltage_probe_id: string;
|
|
27576
|
-
|
|
27723
|
+
source_component_id?: string | undefined;
|
|
27577
27724
|
subcircuit_id?: string | undefined;
|
|
27578
27725
|
source_port_id?: string | undefined;
|
|
27579
27726
|
source_net_id?: string | undefined;
|
|
27580
27727
|
}, {
|
|
27581
27728
|
type: "simulation_voltage_probe";
|
|
27582
|
-
|
|
27729
|
+
source_component_id?: string | undefined;
|
|
27583
27730
|
subcircuit_id?: string | undefined;
|
|
27584
27731
|
source_port_id?: string | undefined;
|
|
27585
27732
|
source_net_id?: string | undefined;
|
|
@@ -27622,4 +27769,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
27622
27769
|
*/
|
|
27623
27770
|
type CircuitJson = AnyCircuitElement[];
|
|
27624
27771
|
|
|
27625
|
-
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 };
|
|
27772
|
+
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 };
|