circuit-json 0.0.233 → 0.0.235
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 +21 -0
- package/dist/index.d.mts +175 -2
- package/dist/index.mjs +764 -732
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
52
52
|
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
53
53
|
- [SourceNet](#sourcenet)
|
|
54
54
|
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
55
|
+
- [SourcePinMissingTraceWarning](#sourcepinmissingtracewarning)
|
|
55
56
|
- [SourcePort](#sourceport)
|
|
56
57
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
57
58
|
- [SourcePropertyIgnoredWarning](#sourcepropertyignoredwarning)
|
|
@@ -322,6 +323,25 @@ interface SourcePcbGroundPlane {
|
|
|
322
323
|
}
|
|
323
324
|
```
|
|
324
325
|
|
|
326
|
+
### SourcePinMissingTraceWarning
|
|
327
|
+
|
|
328
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_pin_missing_trace_warning.ts)
|
|
329
|
+
|
|
330
|
+
Warning emitted when a source component pin is missing a trace connection
|
|
331
|
+
|
|
332
|
+
```typescript
|
|
333
|
+
/** Warning emitted when a source component pin is missing a trace connection */
|
|
334
|
+
interface SourcePinMissingTraceWarning {
|
|
335
|
+
type: "source_pin_missing_trace_warning"
|
|
336
|
+
source_pin_missing_trace_warning_id: string
|
|
337
|
+
warning_type: "source_pin_missing_trace_warning"
|
|
338
|
+
message: string
|
|
339
|
+
source_component_id: string
|
|
340
|
+
source_port_id: string
|
|
341
|
+
subcircuit_id?: string
|
|
342
|
+
}
|
|
343
|
+
```
|
|
344
|
+
|
|
325
345
|
### SourcePort
|
|
326
346
|
|
|
327
347
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_port.ts)
|
|
@@ -1866,6 +1886,7 @@ interface SimulationAcVoltageSource {
|
|
|
1866
1886
|
peak_to_peak_voltage?: number
|
|
1867
1887
|
wave_shape?: WaveShape
|
|
1868
1888
|
phase?: number
|
|
1889
|
+
duty_cycle?: number
|
|
1869
1890
|
}
|
|
1870
1891
|
```
|
|
1871
1892
|
|
package/dist/index.d.mts
CHANGED
|
@@ -7098,6 +7098,45 @@ interface SourcePropertyIgnoredWarning {
|
|
|
7098
7098
|
message: string;
|
|
7099
7099
|
}
|
|
7100
7100
|
|
|
7101
|
+
declare const source_pin_missing_trace_warning: z.ZodObject<{
|
|
7102
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
7103
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7104
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
7105
|
+
message: z.ZodString;
|
|
7106
|
+
source_component_id: z.ZodString;
|
|
7107
|
+
source_port_id: z.ZodString;
|
|
7108
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7109
|
+
}, "strip", z.ZodTypeAny, {
|
|
7110
|
+
message: string;
|
|
7111
|
+
type: "source_pin_missing_trace_warning";
|
|
7112
|
+
source_component_id: string;
|
|
7113
|
+
source_port_id: string;
|
|
7114
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
7115
|
+
source_pin_missing_trace_warning_id: string;
|
|
7116
|
+
subcircuit_id?: string | undefined;
|
|
7117
|
+
}, {
|
|
7118
|
+
message: string;
|
|
7119
|
+
type: "source_pin_missing_trace_warning";
|
|
7120
|
+
source_component_id: string;
|
|
7121
|
+
source_port_id: string;
|
|
7122
|
+
subcircuit_id?: string | undefined;
|
|
7123
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
7124
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
7125
|
+
}>;
|
|
7126
|
+
type SourcePinMissingTraceWarningInput = z.input<typeof source_pin_missing_trace_warning>;
|
|
7127
|
+
/**
|
|
7128
|
+
* Warning emitted when a source component pin is missing a trace connection
|
|
7129
|
+
*/
|
|
7130
|
+
interface SourcePinMissingTraceWarning {
|
|
7131
|
+
type: "source_pin_missing_trace_warning";
|
|
7132
|
+
source_pin_missing_trace_warning_id: string;
|
|
7133
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
7134
|
+
message: string;
|
|
7135
|
+
source_component_id: string;
|
|
7136
|
+
source_port_id: string;
|
|
7137
|
+
subcircuit_id?: string;
|
|
7138
|
+
}
|
|
7139
|
+
|
|
7101
7140
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
7102
7141
|
type: z.ZodLiteral<"source_component">;
|
|
7103
7142
|
source_component_id: z.ZodString;
|
|
@@ -8050,12 +8089,36 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8050
8089
|
subcircuit_id?: string | undefined;
|
|
8051
8090
|
error_type?: "source_property_ignored_warning" | undefined;
|
|
8052
8091
|
source_property_ignored_warning_id?: string | undefined;
|
|
8092
|
+
}>, z.ZodObject<{
|
|
8093
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
8094
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8095
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
8096
|
+
message: z.ZodString;
|
|
8097
|
+
source_component_id: z.ZodString;
|
|
8098
|
+
source_port_id: z.ZodString;
|
|
8099
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8100
|
+
}, "strip", z.ZodTypeAny, {
|
|
8101
|
+
message: string;
|
|
8102
|
+
type: "source_pin_missing_trace_warning";
|
|
8103
|
+
source_component_id: string;
|
|
8104
|
+
source_port_id: string;
|
|
8105
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
8106
|
+
source_pin_missing_trace_warning_id: string;
|
|
8107
|
+
subcircuit_id?: string | undefined;
|
|
8108
|
+
}, {
|
|
8109
|
+
message: string;
|
|
8110
|
+
type: "source_pin_missing_trace_warning";
|
|
8111
|
+
source_component_id: string;
|
|
8112
|
+
source_port_id: string;
|
|
8113
|
+
subcircuit_id?: string | undefined;
|
|
8114
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
8115
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
8053
8116
|
}>]>;
|
|
8054
8117
|
/**
|
|
8055
8118
|
* Deprecated: use `AnySourceElement` instead
|
|
8056
8119
|
*/
|
|
8057
8120
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
8058
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning;
|
|
8121
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
8059
8122
|
|
|
8060
8123
|
declare const source_port: z.ZodObject<{
|
|
8061
8124
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -8439,6 +8502,7 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
8439
8502
|
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8440
8503
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
8441
8504
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8505
|
+
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
8442
8506
|
}, "strip", z.ZodTypeAny, {
|
|
8443
8507
|
type: "simulation_voltage_source";
|
|
8444
8508
|
simulation_voltage_source_id: string;
|
|
@@ -8452,6 +8516,7 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
8452
8516
|
peak_to_peak_voltage?: number | undefined;
|
|
8453
8517
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
8454
8518
|
phase?: number | undefined;
|
|
8519
|
+
duty_cycle?: number | undefined;
|
|
8455
8520
|
}, {
|
|
8456
8521
|
type: "simulation_voltage_source";
|
|
8457
8522
|
is_dc_source: false;
|
|
@@ -8465,7 +8530,9 @@ declare const simulation_ac_voltage_source: z.ZodObject<{
|
|
|
8465
8530
|
peak_to_peak_voltage?: string | number | undefined;
|
|
8466
8531
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
8467
8532
|
phase?: string | number | undefined;
|
|
8533
|
+
duty_cycle?: string | number | undefined;
|
|
8468
8534
|
}>;
|
|
8535
|
+
type SimulationAcVoltageSourceInput = z.input<typeof simulation_ac_voltage_source>;
|
|
8469
8536
|
declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
8470
8537
|
type: z.ZodLiteral<"simulation_voltage_source">;
|
|
8471
8538
|
simulation_voltage_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8506,6 +8573,7 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
8506
8573
|
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8507
8574
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
8508
8575
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
8576
|
+
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
8509
8577
|
}, "strip", z.ZodTypeAny, {
|
|
8510
8578
|
type: "simulation_voltage_source";
|
|
8511
8579
|
simulation_voltage_source_id: string;
|
|
@@ -8519,6 +8587,7 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
8519
8587
|
peak_to_peak_voltage?: number | undefined;
|
|
8520
8588
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
8521
8589
|
phase?: number | undefined;
|
|
8590
|
+
duty_cycle?: number | undefined;
|
|
8522
8591
|
}, {
|
|
8523
8592
|
type: "simulation_voltage_source";
|
|
8524
8593
|
is_dc_source: false;
|
|
@@ -8532,6 +8601,7 @@ declare const simulation_voltage_source: z.ZodUnion<[z.ZodObject<{
|
|
|
8532
8601
|
peak_to_peak_voltage?: string | number | undefined;
|
|
8533
8602
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
8534
8603
|
phase?: string | number | undefined;
|
|
8604
|
+
duty_cycle?: string | number | undefined;
|
|
8535
8605
|
}>]>;
|
|
8536
8606
|
type SimulationVoltageSourceInput = z.input<typeof simulation_voltage_source>;
|
|
8537
8607
|
/**
|
|
@@ -8564,6 +8634,7 @@ interface SimulationAcVoltageSource {
|
|
|
8564
8634
|
peak_to_peak_voltage?: number;
|
|
8565
8635
|
wave_shape?: WaveShape;
|
|
8566
8636
|
phase?: number;
|
|
8637
|
+
duty_cycle?: number;
|
|
8567
8638
|
}
|
|
8568
8639
|
type SimulationVoltageSource = SimulationDcVoltageSource | SimulationAcVoltageSource;
|
|
8569
8640
|
|
|
@@ -9576,6 +9647,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9576
9647
|
subcircuit_id?: string | undefined;
|
|
9577
9648
|
error_type?: "source_property_ignored_warning" | undefined;
|
|
9578
9649
|
source_property_ignored_warning_id?: string | undefined;
|
|
9650
|
+
}>, z.ZodObject<{
|
|
9651
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
9652
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
9653
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
9654
|
+
message: z.ZodString;
|
|
9655
|
+
source_component_id: z.ZodString;
|
|
9656
|
+
source_port_id: z.ZodString;
|
|
9657
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9658
|
+
}, "strip", z.ZodTypeAny, {
|
|
9659
|
+
message: string;
|
|
9660
|
+
type: "source_pin_missing_trace_warning";
|
|
9661
|
+
source_component_id: string;
|
|
9662
|
+
source_port_id: string;
|
|
9663
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
9664
|
+
source_pin_missing_trace_warning_id: string;
|
|
9665
|
+
subcircuit_id?: string | undefined;
|
|
9666
|
+
}, {
|
|
9667
|
+
message: string;
|
|
9668
|
+
type: "source_pin_missing_trace_warning";
|
|
9669
|
+
source_component_id: string;
|
|
9670
|
+
source_port_id: string;
|
|
9671
|
+
subcircuit_id?: string | undefined;
|
|
9672
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
9673
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
9579
9674
|
}>]>, z.ZodObject<{
|
|
9580
9675
|
type: z.ZodLiteral<"source_net">;
|
|
9581
9676
|
source_net_id: z.ZodString;
|
|
@@ -10375,6 +10470,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10375
10470
|
source_trace_not_connected_error_id?: string | undefined;
|
|
10376
10471
|
connected_source_port_ids?: string[] | undefined;
|
|
10377
10472
|
selectors_not_found?: string[] | undefined;
|
|
10473
|
+
}>, z.ZodObject<{
|
|
10474
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
10475
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10476
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
10477
|
+
message: z.ZodString;
|
|
10478
|
+
source_component_id: z.ZodString;
|
|
10479
|
+
source_port_id: z.ZodString;
|
|
10480
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10481
|
+
}, "strip", z.ZodTypeAny, {
|
|
10482
|
+
message: string;
|
|
10483
|
+
type: "source_pin_missing_trace_warning";
|
|
10484
|
+
source_component_id: string;
|
|
10485
|
+
source_port_id: string;
|
|
10486
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
10487
|
+
source_pin_missing_trace_warning_id: string;
|
|
10488
|
+
subcircuit_id?: string | undefined;
|
|
10489
|
+
}, {
|
|
10490
|
+
message: string;
|
|
10491
|
+
type: "source_pin_missing_trace_warning";
|
|
10492
|
+
source_component_id: string;
|
|
10493
|
+
source_port_id: string;
|
|
10494
|
+
subcircuit_id?: string | undefined;
|
|
10495
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
10496
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
10378
10497
|
}>, z.ZodObject<{
|
|
10379
10498
|
type: z.ZodLiteral<"pcb_component">;
|
|
10380
10499
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14039,6 +14158,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14039
14158
|
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14040
14159
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
14041
14160
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14161
|
+
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
14042
14162
|
}, "strip", z.ZodTypeAny, {
|
|
14043
14163
|
type: "simulation_voltage_source";
|
|
14044
14164
|
simulation_voltage_source_id: string;
|
|
@@ -14052,6 +14172,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14052
14172
|
peak_to_peak_voltage?: number | undefined;
|
|
14053
14173
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
14054
14174
|
phase?: number | undefined;
|
|
14175
|
+
duty_cycle?: number | undefined;
|
|
14055
14176
|
}, {
|
|
14056
14177
|
type: "simulation_voltage_source";
|
|
14057
14178
|
is_dc_source: false;
|
|
@@ -14065,6 +14186,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14065
14186
|
peak_to_peak_voltage?: string | number | undefined;
|
|
14066
14187
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
14067
14188
|
phase?: string | number | undefined;
|
|
14189
|
+
duty_cycle?: string | number | undefined;
|
|
14068
14190
|
}>]>]>;
|
|
14069
14191
|
/**
|
|
14070
14192
|
* @deprecated use any_circuit_element instead
|
|
@@ -15078,6 +15200,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15078
15200
|
subcircuit_id?: string | undefined;
|
|
15079
15201
|
error_type?: "source_property_ignored_warning" | undefined;
|
|
15080
15202
|
source_property_ignored_warning_id?: string | undefined;
|
|
15203
|
+
}>, z.ZodObject<{
|
|
15204
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
15205
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15206
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
15207
|
+
message: z.ZodString;
|
|
15208
|
+
source_component_id: z.ZodString;
|
|
15209
|
+
source_port_id: z.ZodString;
|
|
15210
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15211
|
+
}, "strip", z.ZodTypeAny, {
|
|
15212
|
+
message: string;
|
|
15213
|
+
type: "source_pin_missing_trace_warning";
|
|
15214
|
+
source_component_id: string;
|
|
15215
|
+
source_port_id: string;
|
|
15216
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
15217
|
+
source_pin_missing_trace_warning_id: string;
|
|
15218
|
+
subcircuit_id?: string | undefined;
|
|
15219
|
+
}, {
|
|
15220
|
+
message: string;
|
|
15221
|
+
type: "source_pin_missing_trace_warning";
|
|
15222
|
+
source_component_id: string;
|
|
15223
|
+
source_port_id: string;
|
|
15224
|
+
subcircuit_id?: string | undefined;
|
|
15225
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
15226
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
15081
15227
|
}>]>, z.ZodObject<{
|
|
15082
15228
|
type: z.ZodLiteral<"source_net">;
|
|
15083
15229
|
source_net_id: z.ZodString;
|
|
@@ -15877,6 +16023,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15877
16023
|
source_trace_not_connected_error_id?: string | undefined;
|
|
15878
16024
|
connected_source_port_ids?: string[] | undefined;
|
|
15879
16025
|
selectors_not_found?: string[] | undefined;
|
|
16026
|
+
}>, z.ZodObject<{
|
|
16027
|
+
type: z.ZodLiteral<"source_pin_missing_trace_warning">;
|
|
16028
|
+
source_pin_missing_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16029
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"source_pin_missing_trace_warning">>;
|
|
16030
|
+
message: z.ZodString;
|
|
16031
|
+
source_component_id: z.ZodString;
|
|
16032
|
+
source_port_id: z.ZodString;
|
|
16033
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16034
|
+
}, "strip", z.ZodTypeAny, {
|
|
16035
|
+
message: string;
|
|
16036
|
+
type: "source_pin_missing_trace_warning";
|
|
16037
|
+
source_component_id: string;
|
|
16038
|
+
source_port_id: string;
|
|
16039
|
+
warning_type: "source_pin_missing_trace_warning";
|
|
16040
|
+
source_pin_missing_trace_warning_id: string;
|
|
16041
|
+
subcircuit_id?: string | undefined;
|
|
16042
|
+
}, {
|
|
16043
|
+
message: string;
|
|
16044
|
+
type: "source_pin_missing_trace_warning";
|
|
16045
|
+
source_component_id: string;
|
|
16046
|
+
source_port_id: string;
|
|
16047
|
+
subcircuit_id?: string | undefined;
|
|
16048
|
+
warning_type?: "source_pin_missing_trace_warning" | undefined;
|
|
16049
|
+
source_pin_missing_trace_warning_id?: string | undefined;
|
|
15880
16050
|
}>, z.ZodObject<{
|
|
15881
16051
|
type: z.ZodLiteral<"pcb_component">;
|
|
15882
16052
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -19541,6 +19711,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19541
19711
|
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19542
19712
|
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
19543
19713
|
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19714
|
+
duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
19544
19715
|
}, "strip", z.ZodTypeAny, {
|
|
19545
19716
|
type: "simulation_voltage_source";
|
|
19546
19717
|
simulation_voltage_source_id: string;
|
|
@@ -19554,6 +19725,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19554
19725
|
peak_to_peak_voltage?: number | undefined;
|
|
19555
19726
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
19556
19727
|
phase?: number | undefined;
|
|
19728
|
+
duty_cycle?: number | undefined;
|
|
19557
19729
|
}, {
|
|
19558
19730
|
type: "simulation_voltage_source";
|
|
19559
19731
|
is_dc_source: false;
|
|
@@ -19567,6 +19739,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19567
19739
|
peak_to_peak_voltage?: string | number | undefined;
|
|
19568
19740
|
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
19569
19741
|
phase?: string | number | undefined;
|
|
19742
|
+
duty_cycle?: string | number | undefined;
|
|
19570
19743
|
}>]>]>;
|
|
19571
19744
|
type AnyCircuitElement = z.infer<typeof any_circuit_element>;
|
|
19572
19745
|
type AnyCircuitElementInput = z.input<typeof any_circuit_element>;
|
|
@@ -19584,4 +19757,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
19584
19757
|
*/
|
|
19585
19758
|
type CircuitJson = AnyCircuitElement[];
|
|
19586
19759
|
|
|
19587
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|
|
19760
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
|