circuit-json 0.0.369 → 0.0.371
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/dist/index.d.mts +259 -2
- package/dist/index.mjs +1236 -1218
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7835,6 +7835,7 @@ type SchematicBoxInput = z.input<typeof schematic_box>;
|
|
|
7835
7835
|
|
|
7836
7836
|
interface SchematicPath {
|
|
7837
7837
|
type: "schematic_path";
|
|
7838
|
+
schematic_path_id: string;
|
|
7838
7839
|
schematic_component_id?: string;
|
|
7839
7840
|
schematic_symbol_id?: string;
|
|
7840
7841
|
fill_color?: "red" | "blue";
|
|
@@ -7846,6 +7847,7 @@ interface SchematicPath {
|
|
|
7846
7847
|
}
|
|
7847
7848
|
declare const schematic_path: z.ZodObject<{
|
|
7848
7849
|
type: z.ZodLiteral<"schematic_path">;
|
|
7850
|
+
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7849
7851
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
7850
7852
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
7851
7853
|
fill_color: z.ZodOptional<z.ZodEnum<["red", "blue"]>>;
|
|
@@ -7869,6 +7871,7 @@ declare const schematic_path: z.ZodObject<{
|
|
|
7869
7871
|
x: number;
|
|
7870
7872
|
y: number;
|
|
7871
7873
|
}[];
|
|
7874
|
+
schematic_path_id: string;
|
|
7872
7875
|
subcircuit_id?: string | undefined;
|
|
7873
7876
|
stroke_width?: number | null | undefined;
|
|
7874
7877
|
is_filled?: boolean | undefined;
|
|
@@ -7887,6 +7890,7 @@ declare const schematic_path: z.ZodObject<{
|
|
|
7887
7890
|
is_filled?: boolean | undefined;
|
|
7888
7891
|
schematic_component_id?: string | undefined;
|
|
7889
7892
|
schematic_symbol_id?: string | undefined;
|
|
7893
|
+
schematic_path_id?: string | undefined;
|
|
7890
7894
|
fill_color?: "red" | "blue" | undefined;
|
|
7891
7895
|
stroke_color?: string | undefined;
|
|
7892
7896
|
}>;
|
|
@@ -12141,6 +12145,79 @@ interface SourceInterconnect extends SourceComponentBase {
|
|
|
12141
12145
|
ftype: "interconnect";
|
|
12142
12146
|
}
|
|
12143
12147
|
|
|
12148
|
+
declare const source_simple_voltage_source: z.ZodObject<{
|
|
12149
|
+
type: z.ZodLiteral<"source_component">;
|
|
12150
|
+
source_component_id: z.ZodString;
|
|
12151
|
+
name: z.ZodString;
|
|
12152
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
12153
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12154
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
12155
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
12156
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12157
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12158
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12159
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12160
|
+
} & {
|
|
12161
|
+
ftype: z.ZodLiteral<"simple_voltage_source">;
|
|
12162
|
+
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12163
|
+
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12164
|
+
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12165
|
+
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
12166
|
+
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12167
|
+
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
12168
|
+
}, "strip", z.ZodTypeAny, {
|
|
12169
|
+
type: "source_component";
|
|
12170
|
+
name: string;
|
|
12171
|
+
source_component_id: string;
|
|
12172
|
+
voltage: number;
|
|
12173
|
+
ftype: "simple_voltage_source";
|
|
12174
|
+
subcircuit_id?: string | undefined;
|
|
12175
|
+
source_group_id?: string | undefined;
|
|
12176
|
+
frequency?: number | undefined;
|
|
12177
|
+
peak_to_peak_voltage?: number | undefined;
|
|
12178
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
12179
|
+
phase?: number | undefined;
|
|
12180
|
+
duty_cycle?: number | undefined;
|
|
12181
|
+
manufacturer_part_number?: string | undefined;
|
|
12182
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12183
|
+
display_value?: string | undefined;
|
|
12184
|
+
display_name?: string | undefined;
|
|
12185
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12186
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12187
|
+
}, {
|
|
12188
|
+
type: "source_component";
|
|
12189
|
+
name: string;
|
|
12190
|
+
source_component_id: string;
|
|
12191
|
+
voltage: string | number;
|
|
12192
|
+
ftype: "simple_voltage_source";
|
|
12193
|
+
subcircuit_id?: string | undefined;
|
|
12194
|
+
source_group_id?: string | undefined;
|
|
12195
|
+
frequency?: string | number | undefined;
|
|
12196
|
+
peak_to_peak_voltage?: string | number | undefined;
|
|
12197
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
12198
|
+
phase?: string | number | undefined;
|
|
12199
|
+
duty_cycle?: number | undefined;
|
|
12200
|
+
manufacturer_part_number?: string | undefined;
|
|
12201
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12202
|
+
display_value?: string | undefined;
|
|
12203
|
+
display_name?: string | undefined;
|
|
12204
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12205
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12206
|
+
}>;
|
|
12207
|
+
type SourceSimpleVoltageSourceInput = z.input<typeof source_simple_voltage_source>;
|
|
12208
|
+
/**
|
|
12209
|
+
* Defines a simple voltage source component
|
|
12210
|
+
*/
|
|
12211
|
+
interface SourceSimpleVoltageSource extends SourceComponentBase {
|
|
12212
|
+
ftype: "simple_voltage_source";
|
|
12213
|
+
voltage: number;
|
|
12214
|
+
frequency?: number;
|
|
12215
|
+
peak_to_peak_voltage?: number;
|
|
12216
|
+
wave_shape?: "sinewave" | "square" | "triangle" | "sawtooth";
|
|
12217
|
+
phase?: number;
|
|
12218
|
+
duty_cycle?: number;
|
|
12219
|
+
}
|
|
12220
|
+
|
|
12144
12221
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
12145
12222
|
type: z.ZodLiteral<"source_component">;
|
|
12146
12223
|
source_component_id: z.ZodString;
|
|
@@ -13255,6 +13332,64 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13255
13332
|
display_name?: string | undefined;
|
|
13256
13333
|
are_pins_interchangeable?: boolean | undefined;
|
|
13257
13334
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13335
|
+
}>, z.ZodObject<{
|
|
13336
|
+
type: z.ZodLiteral<"source_component">;
|
|
13337
|
+
source_component_id: z.ZodString;
|
|
13338
|
+
name: z.ZodString;
|
|
13339
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13340
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13341
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13342
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
13343
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13344
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13345
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13346
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13347
|
+
} & {
|
|
13348
|
+
ftype: z.ZodLiteral<"simple_voltage_source">;
|
|
13349
|
+
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13350
|
+
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13351
|
+
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13352
|
+
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
13353
|
+
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
13354
|
+
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
13355
|
+
}, "strip", z.ZodTypeAny, {
|
|
13356
|
+
type: "source_component";
|
|
13357
|
+
name: string;
|
|
13358
|
+
source_component_id: string;
|
|
13359
|
+
voltage: number;
|
|
13360
|
+
ftype: "simple_voltage_source";
|
|
13361
|
+
subcircuit_id?: string | undefined;
|
|
13362
|
+
source_group_id?: string | undefined;
|
|
13363
|
+
frequency?: number | undefined;
|
|
13364
|
+
peak_to_peak_voltage?: number | undefined;
|
|
13365
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
13366
|
+
phase?: number | undefined;
|
|
13367
|
+
duty_cycle?: number | undefined;
|
|
13368
|
+
manufacturer_part_number?: string | undefined;
|
|
13369
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13370
|
+
display_value?: string | undefined;
|
|
13371
|
+
display_name?: string | undefined;
|
|
13372
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13373
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13374
|
+
}, {
|
|
13375
|
+
type: "source_component";
|
|
13376
|
+
name: string;
|
|
13377
|
+
source_component_id: string;
|
|
13378
|
+
voltage: string | number;
|
|
13379
|
+
ftype: "simple_voltage_source";
|
|
13380
|
+
subcircuit_id?: string | undefined;
|
|
13381
|
+
source_group_id?: string | undefined;
|
|
13382
|
+
frequency?: string | number | undefined;
|
|
13383
|
+
peak_to_peak_voltage?: string | number | undefined;
|
|
13384
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
13385
|
+
phase?: string | number | undefined;
|
|
13386
|
+
duty_cycle?: number | undefined;
|
|
13387
|
+
manufacturer_part_number?: string | undefined;
|
|
13388
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13389
|
+
display_value?: string | undefined;
|
|
13390
|
+
display_name?: string | undefined;
|
|
13391
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13392
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13258
13393
|
}>, z.ZodObject<{
|
|
13259
13394
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13260
13395
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -13452,7 +13587,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
13452
13587
|
* Deprecated: use `AnySourceElement` instead
|
|
13453
13588
|
*/
|
|
13454
13589
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
13455
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
13590
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
13456
13591
|
|
|
13457
13592
|
declare const source_port: z.ZodObject<{
|
|
13458
13593
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -15214,6 +15349,64 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15214
15349
|
display_name?: string | undefined;
|
|
15215
15350
|
are_pins_interchangeable?: boolean | undefined;
|
|
15216
15351
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
15352
|
+
}>, z.ZodObject<{
|
|
15353
|
+
type: z.ZodLiteral<"source_component">;
|
|
15354
|
+
source_component_id: z.ZodString;
|
|
15355
|
+
name: z.ZodString;
|
|
15356
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
15357
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
15358
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
15359
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
15360
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
15361
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
15362
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
15363
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15364
|
+
} & {
|
|
15365
|
+
ftype: z.ZodLiteral<"simple_voltage_source">;
|
|
15366
|
+
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15367
|
+
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15368
|
+
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15369
|
+
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
15370
|
+
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15371
|
+
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
15372
|
+
}, "strip", z.ZodTypeAny, {
|
|
15373
|
+
type: "source_component";
|
|
15374
|
+
name: string;
|
|
15375
|
+
source_component_id: string;
|
|
15376
|
+
voltage: number;
|
|
15377
|
+
ftype: "simple_voltage_source";
|
|
15378
|
+
subcircuit_id?: string | undefined;
|
|
15379
|
+
source_group_id?: string | undefined;
|
|
15380
|
+
frequency?: number | undefined;
|
|
15381
|
+
peak_to_peak_voltage?: number | undefined;
|
|
15382
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
15383
|
+
phase?: number | undefined;
|
|
15384
|
+
duty_cycle?: number | undefined;
|
|
15385
|
+
manufacturer_part_number?: string | undefined;
|
|
15386
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15387
|
+
display_value?: string | undefined;
|
|
15388
|
+
display_name?: string | undefined;
|
|
15389
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
15390
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
15391
|
+
}, {
|
|
15392
|
+
type: "source_component";
|
|
15393
|
+
name: string;
|
|
15394
|
+
source_component_id: string;
|
|
15395
|
+
voltage: string | number;
|
|
15396
|
+
ftype: "simple_voltage_source";
|
|
15397
|
+
subcircuit_id?: string | undefined;
|
|
15398
|
+
source_group_id?: string | undefined;
|
|
15399
|
+
frequency?: string | number | undefined;
|
|
15400
|
+
peak_to_peak_voltage?: string | number | undefined;
|
|
15401
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
15402
|
+
phase?: string | number | undefined;
|
|
15403
|
+
duty_cycle?: number | undefined;
|
|
15404
|
+
manufacturer_part_number?: string | undefined;
|
|
15405
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15406
|
+
display_value?: string | undefined;
|
|
15407
|
+
display_name?: string | undefined;
|
|
15408
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
15409
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
15217
15410
|
}>, z.ZodObject<{
|
|
15218
15411
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
15219
15412
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -21724,6 +21917,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21724
21917
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
21725
21918
|
}>, z.ZodObject<{
|
|
21726
21919
|
type: z.ZodLiteral<"schematic_path">;
|
|
21920
|
+
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21727
21921
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
21728
21922
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
21729
21923
|
fill_color: z.ZodOptional<z.ZodEnum<["red", "blue"]>>;
|
|
@@ -21747,6 +21941,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21747
21941
|
x: number;
|
|
21748
21942
|
y: number;
|
|
21749
21943
|
}[];
|
|
21944
|
+
schematic_path_id: string;
|
|
21750
21945
|
subcircuit_id?: string | undefined;
|
|
21751
21946
|
stroke_width?: number | null | undefined;
|
|
21752
21947
|
is_filled?: boolean | undefined;
|
|
@@ -21765,6 +21960,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21765
21960
|
is_filled?: boolean | undefined;
|
|
21766
21961
|
schematic_component_id?: string | undefined;
|
|
21767
21962
|
schematic_symbol_id?: string | undefined;
|
|
21963
|
+
schematic_path_id?: string | undefined;
|
|
21768
21964
|
fill_color?: "red" | "blue" | undefined;
|
|
21769
21965
|
stroke_color?: string | undefined;
|
|
21770
21966
|
}>, z.ZodObject<{
|
|
@@ -23946,6 +24142,64 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23946
24142
|
display_name?: string | undefined;
|
|
23947
24143
|
are_pins_interchangeable?: boolean | undefined;
|
|
23948
24144
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
24145
|
+
}>, z.ZodObject<{
|
|
24146
|
+
type: z.ZodLiteral<"source_component">;
|
|
24147
|
+
source_component_id: z.ZodString;
|
|
24148
|
+
name: z.ZodString;
|
|
24149
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
24150
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
24151
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
24152
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
24153
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
24154
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
24155
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
24156
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
24157
|
+
} & {
|
|
24158
|
+
ftype: z.ZodLiteral<"simple_voltage_source">;
|
|
24159
|
+
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
24160
|
+
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24161
|
+
peak_to_peak_voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24162
|
+
wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
|
|
24163
|
+
phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24164
|
+
duty_cycle: z.ZodOptional<z.ZodNumber>;
|
|
24165
|
+
}, "strip", z.ZodTypeAny, {
|
|
24166
|
+
type: "source_component";
|
|
24167
|
+
name: string;
|
|
24168
|
+
source_component_id: string;
|
|
24169
|
+
voltage: number;
|
|
24170
|
+
ftype: "simple_voltage_source";
|
|
24171
|
+
subcircuit_id?: string | undefined;
|
|
24172
|
+
source_group_id?: string | undefined;
|
|
24173
|
+
frequency?: number | undefined;
|
|
24174
|
+
peak_to_peak_voltage?: number | undefined;
|
|
24175
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
24176
|
+
phase?: number | undefined;
|
|
24177
|
+
duty_cycle?: number | undefined;
|
|
24178
|
+
manufacturer_part_number?: string | undefined;
|
|
24179
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24180
|
+
display_value?: string | undefined;
|
|
24181
|
+
display_name?: string | undefined;
|
|
24182
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
24183
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
24184
|
+
}, {
|
|
24185
|
+
type: "source_component";
|
|
24186
|
+
name: string;
|
|
24187
|
+
source_component_id: string;
|
|
24188
|
+
voltage: string | number;
|
|
24189
|
+
ftype: "simple_voltage_source";
|
|
24190
|
+
subcircuit_id?: string | undefined;
|
|
24191
|
+
source_group_id?: string | undefined;
|
|
24192
|
+
frequency?: string | number | undefined;
|
|
24193
|
+
peak_to_peak_voltage?: string | number | undefined;
|
|
24194
|
+
wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
24195
|
+
phase?: string | number | undefined;
|
|
24196
|
+
duty_cycle?: number | undefined;
|
|
24197
|
+
manufacturer_part_number?: string | undefined;
|
|
24198
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
24199
|
+
display_value?: string | undefined;
|
|
24200
|
+
display_name?: string | undefined;
|
|
24201
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
24202
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
23949
24203
|
}>, z.ZodObject<{
|
|
23950
24204
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
23951
24205
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -30456,6 +30710,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30456
30710
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
30457
30711
|
}>, z.ZodObject<{
|
|
30458
30712
|
type: z.ZodLiteral<"schematic_path">;
|
|
30713
|
+
schematic_path_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30459
30714
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
30460
30715
|
schematic_symbol_id: z.ZodOptional<z.ZodString>;
|
|
30461
30716
|
fill_color: z.ZodOptional<z.ZodEnum<["red", "blue"]>>;
|
|
@@ -30479,6 +30734,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30479
30734
|
x: number;
|
|
30480
30735
|
y: number;
|
|
30481
30736
|
}[];
|
|
30737
|
+
schematic_path_id: string;
|
|
30482
30738
|
subcircuit_id?: string | undefined;
|
|
30483
30739
|
stroke_width?: number | null | undefined;
|
|
30484
30740
|
is_filled?: boolean | undefined;
|
|
@@ -30497,6 +30753,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
30497
30753
|
is_filled?: boolean | undefined;
|
|
30498
30754
|
schematic_component_id?: string | undefined;
|
|
30499
30755
|
schematic_symbol_id?: string | undefined;
|
|
30756
|
+
schematic_path_id?: string | undefined;
|
|
30500
30757
|
fill_color?: "red" | "blue" | undefined;
|
|
30501
30758
|
stroke_color?: string | undefined;
|
|
30502
30759
|
}>, z.ZodObject<{
|
|
@@ -31496,4 +31753,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
31496
31753
|
*/
|
|
31497
31754
|
type CircuitJson = AnyCircuitElement[];
|
|
31498
31755
|
|
|
31499
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type 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 PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type 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, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_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_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
31756
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type 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 PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicSymbol, type SchematicSymbolInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, base_circuit_json_error, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_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_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_panelization_placement_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|