circuit-json 0.0.263 → 0.0.265
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 +1 -1
- package/dist/index.d.mts +10 -343
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -400,6 +400,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
400
400
|
rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
401
401
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
402
402
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
403
|
+
do_not_place: z.ZodOptional<z.ZodBoolean>;
|
|
403
404
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
404
405
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
405
406
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -414,6 +415,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
414
415
|
};
|
|
415
416
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
416
417
|
rotation: number;
|
|
418
|
+
do_not_place?: boolean | undefined;
|
|
417
419
|
subcircuit_id?: string | undefined;
|
|
418
420
|
pcb_group_id?: string | undefined;
|
|
419
421
|
}, {
|
|
@@ -430,6 +432,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
430
432
|
};
|
|
431
433
|
rotation: string | number;
|
|
432
434
|
pcb_component_id?: string | undefined;
|
|
435
|
+
do_not_place?: boolean | undefined;
|
|
433
436
|
subcircuit_id?: string | undefined;
|
|
434
437
|
pcb_group_id?: string | undefined;
|
|
435
438
|
}>;
|
|
@@ -447,6 +450,7 @@ interface PcbComponent {
|
|
|
447
450
|
rotation: Rotation;
|
|
448
451
|
width: Length;
|
|
449
452
|
height: Length;
|
|
453
|
+
do_not_place?: boolean;
|
|
450
454
|
pcb_group_id?: string;
|
|
451
455
|
}
|
|
452
456
|
/**
|
|
@@ -7196,7 +7200,6 @@ interface SourceComponentBase {
|
|
|
7196
7200
|
internally_connected_source_port_ids?: string[][];
|
|
7197
7201
|
source_group_id?: string;
|
|
7198
7202
|
subcircuit_id?: string;
|
|
7199
|
-
do_not_place: boolean;
|
|
7200
7203
|
}
|
|
7201
7204
|
declare const source_component_base: z.ZodObject<{
|
|
7202
7205
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -7210,12 +7213,10 @@ declare const source_component_base: z.ZodObject<{
|
|
|
7210
7213
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7211
7214
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7212
7215
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7213
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7214
7216
|
}, "strip", z.ZodTypeAny, {
|
|
7215
7217
|
type: "source_component";
|
|
7216
7218
|
name: string;
|
|
7217
7219
|
source_component_id: string;
|
|
7218
|
-
do_not_place: boolean;
|
|
7219
7220
|
subcircuit_id?: string | undefined;
|
|
7220
7221
|
source_group_id?: string | undefined;
|
|
7221
7222
|
ftype?: string | undefined;
|
|
@@ -7236,7 +7237,6 @@ declare const source_component_base: z.ZodObject<{
|
|
|
7236
7237
|
display_value?: string | undefined;
|
|
7237
7238
|
are_pins_interchangeable?: boolean | undefined;
|
|
7238
7239
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7239
|
-
do_not_place?: boolean | undefined;
|
|
7240
7240
|
}>;
|
|
7241
7241
|
|
|
7242
7242
|
declare const source_simple_capacitor: z.ZodObject<{
|
|
@@ -7250,7 +7250,6 @@ declare const source_simple_capacitor: z.ZodObject<{
|
|
|
7250
7250
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7251
7251
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7252
7252
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7253
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7254
7253
|
} & {
|
|
7255
7254
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
7256
7255
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7262,7 +7261,6 @@ declare const source_simple_capacitor: z.ZodObject<{
|
|
|
7262
7261
|
name: string;
|
|
7263
7262
|
source_component_id: string;
|
|
7264
7263
|
ftype: "simple_capacitor";
|
|
7265
|
-
do_not_place: boolean;
|
|
7266
7264
|
capacitance: number;
|
|
7267
7265
|
subcircuit_id?: string | undefined;
|
|
7268
7266
|
source_group_id?: string | undefined;
|
|
@@ -7287,7 +7285,6 @@ declare const source_simple_capacitor: z.ZodObject<{
|
|
|
7287
7285
|
display_value?: string | undefined;
|
|
7288
7286
|
are_pins_interchangeable?: boolean | undefined;
|
|
7289
7287
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7290
|
-
do_not_place?: boolean | undefined;
|
|
7291
7288
|
max_voltage_rating?: string | number | undefined;
|
|
7292
7289
|
display_capacitance?: string | undefined;
|
|
7293
7290
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -7315,7 +7312,6 @@ declare const source_simple_resistor: z.ZodObject<{
|
|
|
7315
7312
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7316
7313
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7317
7314
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7318
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7319
7315
|
} & {
|
|
7320
7316
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
7321
7317
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7325,7 +7321,6 @@ declare const source_simple_resistor: z.ZodObject<{
|
|
|
7325
7321
|
name: string;
|
|
7326
7322
|
source_component_id: string;
|
|
7327
7323
|
ftype: "simple_resistor";
|
|
7328
|
-
do_not_place: boolean;
|
|
7329
7324
|
resistance: number;
|
|
7330
7325
|
subcircuit_id?: string | undefined;
|
|
7331
7326
|
source_group_id?: string | undefined;
|
|
@@ -7348,7 +7343,6 @@ declare const source_simple_resistor: z.ZodObject<{
|
|
|
7348
7343
|
display_value?: string | undefined;
|
|
7349
7344
|
are_pins_interchangeable?: boolean | undefined;
|
|
7350
7345
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7351
|
-
do_not_place?: boolean | undefined;
|
|
7352
7346
|
display_resistance?: string | undefined;
|
|
7353
7347
|
}>;
|
|
7354
7348
|
type SourceSimpleResistorInput = z.input<typeof source_simple_resistor>;
|
|
@@ -7372,7 +7366,6 @@ declare const source_simple_diode: z.ZodObject<{
|
|
|
7372
7366
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7373
7367
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7374
7368
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7375
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7376
7369
|
} & {
|
|
7377
7370
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7378
7371
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7380,7 +7373,6 @@ declare const source_simple_diode: z.ZodObject<{
|
|
|
7380
7373
|
name: string;
|
|
7381
7374
|
source_component_id: string;
|
|
7382
7375
|
ftype: "simple_diode";
|
|
7383
|
-
do_not_place: boolean;
|
|
7384
7376
|
subcircuit_id?: string | undefined;
|
|
7385
7377
|
source_group_id?: string | undefined;
|
|
7386
7378
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7400,7 +7392,6 @@ declare const source_simple_diode: z.ZodObject<{
|
|
|
7400
7392
|
display_value?: string | undefined;
|
|
7401
7393
|
are_pins_interchangeable?: boolean | undefined;
|
|
7402
7394
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7403
|
-
do_not_place?: boolean | undefined;
|
|
7404
7395
|
}>;
|
|
7405
7396
|
type SourceSimpleDiodeInput = z.input<typeof source_simple_diode>;
|
|
7406
7397
|
/**
|
|
@@ -7421,7 +7412,6 @@ declare const source_simple_led: z.ZodObject<{
|
|
|
7421
7412
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7422
7413
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7423
7414
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7424
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7425
7415
|
} & {
|
|
7426
7416
|
ftype: z.ZodLiteral<"simple_led">;
|
|
7427
7417
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -7431,7 +7421,6 @@ declare const source_simple_led: z.ZodObject<{
|
|
|
7431
7421
|
name: string;
|
|
7432
7422
|
source_component_id: string;
|
|
7433
7423
|
ftype: "simple_led";
|
|
7434
|
-
do_not_place: boolean;
|
|
7435
7424
|
subcircuit_id?: string | undefined;
|
|
7436
7425
|
color?: string | undefined;
|
|
7437
7426
|
source_group_id?: string | undefined;
|
|
@@ -7454,7 +7443,6 @@ declare const source_simple_led: z.ZodObject<{
|
|
|
7454
7443
|
display_value?: string | undefined;
|
|
7455
7444
|
are_pins_interchangeable?: boolean | undefined;
|
|
7456
7445
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7457
|
-
do_not_place?: boolean | undefined;
|
|
7458
7446
|
wavelength?: string | undefined;
|
|
7459
7447
|
}>;
|
|
7460
7448
|
type SourceSimpleLedInput = z.input<typeof source_simple_led>;
|
|
@@ -7478,7 +7466,6 @@ declare const source_simple_ground: z.ZodObject<{
|
|
|
7478
7466
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7479
7467
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7480
7468
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7481
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7482
7469
|
} & {
|
|
7483
7470
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
7484
7471
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7486,7 +7473,6 @@ declare const source_simple_ground: z.ZodObject<{
|
|
|
7486
7473
|
name: string;
|
|
7487
7474
|
source_component_id: string;
|
|
7488
7475
|
ftype: "simple_ground";
|
|
7489
|
-
do_not_place: boolean;
|
|
7490
7476
|
subcircuit_id?: string | undefined;
|
|
7491
7477
|
source_group_id?: string | undefined;
|
|
7492
7478
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7506,7 +7492,6 @@ declare const source_simple_ground: z.ZodObject<{
|
|
|
7506
7492
|
display_value?: string | undefined;
|
|
7507
7493
|
are_pins_interchangeable?: boolean | undefined;
|
|
7508
7494
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7509
|
-
do_not_place?: boolean | undefined;
|
|
7510
7495
|
}>;
|
|
7511
7496
|
type SourceSimpleGroundInput = z.input<typeof source_simple_ground>;
|
|
7512
7497
|
/**
|
|
@@ -7527,7 +7512,6 @@ declare const source_simple_chip: z.ZodObject<{
|
|
|
7527
7512
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7528
7513
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7529
7514
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7530
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7531
7515
|
} & {
|
|
7532
7516
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7533
7517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7535,7 +7519,6 @@ declare const source_simple_chip: z.ZodObject<{
|
|
|
7535
7519
|
name: string;
|
|
7536
7520
|
source_component_id: string;
|
|
7537
7521
|
ftype: "simple_chip";
|
|
7538
|
-
do_not_place: boolean;
|
|
7539
7522
|
subcircuit_id?: string | undefined;
|
|
7540
7523
|
source_group_id?: string | undefined;
|
|
7541
7524
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7555,7 +7538,6 @@ declare const source_simple_chip: z.ZodObject<{
|
|
|
7555
7538
|
display_value?: string | undefined;
|
|
7556
7539
|
are_pins_interchangeable?: boolean | undefined;
|
|
7557
7540
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7558
|
-
do_not_place?: boolean | undefined;
|
|
7559
7541
|
}>;
|
|
7560
7542
|
type SourceSimpleChipInput = z.input<typeof source_simple_chip>;
|
|
7561
7543
|
/**
|
|
@@ -7576,7 +7558,6 @@ declare const source_simple_power_source: z.ZodObject<{
|
|
|
7576
7558
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7577
7559
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7578
7560
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7579
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7580
7561
|
} & {
|
|
7581
7562
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7582
7563
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7586,7 +7567,6 @@ declare const source_simple_power_source: z.ZodObject<{
|
|
|
7586
7567
|
source_component_id: string;
|
|
7587
7568
|
voltage: number;
|
|
7588
7569
|
ftype: "simple_power_source";
|
|
7589
|
-
do_not_place: boolean;
|
|
7590
7570
|
subcircuit_id?: string | undefined;
|
|
7591
7571
|
source_group_id?: string | undefined;
|
|
7592
7572
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7607,7 +7587,6 @@ declare const source_simple_power_source: z.ZodObject<{
|
|
|
7607
7587
|
display_value?: string | undefined;
|
|
7608
7588
|
are_pins_interchangeable?: boolean | undefined;
|
|
7609
7589
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7610
|
-
do_not_place?: boolean | undefined;
|
|
7611
7590
|
}>;
|
|
7612
7591
|
type SourceSimplePowerSourceInput = z.input<typeof source_simple_power_source>;
|
|
7613
7592
|
/**
|
|
@@ -7635,7 +7614,6 @@ declare const source_simple_battery: z.ZodObject<{
|
|
|
7635
7614
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7636
7615
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7637
7616
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7638
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7639
7617
|
} & {
|
|
7640
7618
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7641
7619
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7644,7 +7622,6 @@ declare const source_simple_battery: z.ZodObject<{
|
|
|
7644
7622
|
name: string;
|
|
7645
7623
|
source_component_id: string;
|
|
7646
7624
|
ftype: "simple_battery";
|
|
7647
|
-
do_not_place: boolean;
|
|
7648
7625
|
capacity: number;
|
|
7649
7626
|
subcircuit_id?: string | undefined;
|
|
7650
7627
|
source_group_id?: string | undefined;
|
|
@@ -7666,7 +7643,6 @@ declare const source_simple_battery: z.ZodObject<{
|
|
|
7666
7643
|
display_value?: string | undefined;
|
|
7667
7644
|
are_pins_interchangeable?: boolean | undefined;
|
|
7668
7645
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7669
|
-
do_not_place?: boolean | undefined;
|
|
7670
7646
|
}>;
|
|
7671
7647
|
type SourceSimpleBatteryInput = z.input<typeof source_simple_battery>;
|
|
7672
7648
|
/**
|
|
@@ -7688,7 +7664,6 @@ declare const source_simple_inductor: z.ZodObject<{
|
|
|
7688
7664
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7689
7665
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7690
7666
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7691
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7692
7667
|
} & {
|
|
7693
7668
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7694
7669
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7698,7 +7673,6 @@ declare const source_simple_inductor: z.ZodObject<{
|
|
|
7698
7673
|
name: string;
|
|
7699
7674
|
source_component_id: string;
|
|
7700
7675
|
ftype: "simple_inductor";
|
|
7701
|
-
do_not_place: boolean;
|
|
7702
7676
|
inductance: number;
|
|
7703
7677
|
subcircuit_id?: string | undefined;
|
|
7704
7678
|
source_group_id?: string | undefined;
|
|
@@ -7721,7 +7695,6 @@ declare const source_simple_inductor: z.ZodObject<{
|
|
|
7721
7695
|
display_value?: string | undefined;
|
|
7722
7696
|
are_pins_interchangeable?: boolean | undefined;
|
|
7723
7697
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7724
|
-
do_not_place?: boolean | undefined;
|
|
7725
7698
|
max_current_rating?: number | undefined;
|
|
7726
7699
|
}>;
|
|
7727
7700
|
type SourceSimpleInductorInput = z.input<typeof source_simple_inductor>;
|
|
@@ -7745,7 +7718,6 @@ declare const source_simple_push_button: z.ZodObject<{
|
|
|
7745
7718
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7746
7719
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7747
7720
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7748
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7749
7721
|
} & {
|
|
7750
7722
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7751
7723
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7753,7 +7725,6 @@ declare const source_simple_push_button: z.ZodObject<{
|
|
|
7753
7725
|
name: string;
|
|
7754
7726
|
source_component_id: string;
|
|
7755
7727
|
ftype: "simple_push_button";
|
|
7756
|
-
do_not_place: boolean;
|
|
7757
7728
|
subcircuit_id?: string | undefined;
|
|
7758
7729
|
source_group_id?: string | undefined;
|
|
7759
7730
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7773,7 +7744,6 @@ declare const source_simple_push_button: z.ZodObject<{
|
|
|
7773
7744
|
display_value?: string | undefined;
|
|
7774
7745
|
are_pins_interchangeable?: boolean | undefined;
|
|
7775
7746
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7776
|
-
do_not_place?: boolean | undefined;
|
|
7777
7747
|
}>;
|
|
7778
7748
|
type SourceSimplePushButtonInput = z.input<typeof source_simple_push_button>;
|
|
7779
7749
|
/**
|
|
@@ -7794,7 +7764,6 @@ declare const source_simple_potentiometer: z.ZodObject<{
|
|
|
7794
7764
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7795
7765
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7796
7766
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7797
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7798
7767
|
} & {
|
|
7799
7768
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7800
7769
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7803,7 +7772,6 @@ declare const source_simple_potentiometer: z.ZodObject<{
|
|
|
7803
7772
|
name: string;
|
|
7804
7773
|
source_component_id: string;
|
|
7805
7774
|
ftype: "simple_potentiometer";
|
|
7806
|
-
do_not_place: boolean;
|
|
7807
7775
|
max_resistance: number;
|
|
7808
7776
|
subcircuit_id?: string | undefined;
|
|
7809
7777
|
source_group_id?: string | undefined;
|
|
@@ -7825,7 +7793,6 @@ declare const source_simple_potentiometer: z.ZodObject<{
|
|
|
7825
7793
|
display_value?: string | undefined;
|
|
7826
7794
|
are_pins_interchangeable?: boolean | undefined;
|
|
7827
7795
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7828
|
-
do_not_place?: boolean | undefined;
|
|
7829
7796
|
}>;
|
|
7830
7797
|
type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
|
|
7831
7798
|
interface SourceSimplePotentiometer extends SourceComponentBase {
|
|
@@ -7844,7 +7811,6 @@ declare const source_simple_crystal: z.ZodObject<{
|
|
|
7844
7811
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7845
7812
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7846
7813
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7847
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7848
7814
|
} & {
|
|
7849
7815
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
7850
7816
|
frequency: z.ZodNumber;
|
|
@@ -7854,7 +7820,6 @@ declare const source_simple_crystal: z.ZodObject<{
|
|
|
7854
7820
|
name: string;
|
|
7855
7821
|
source_component_id: string;
|
|
7856
7822
|
ftype: "simple_crystal";
|
|
7857
|
-
do_not_place: boolean;
|
|
7858
7823
|
frequency: number;
|
|
7859
7824
|
subcircuit_id?: string | undefined;
|
|
7860
7825
|
source_group_id?: string | undefined;
|
|
@@ -7877,7 +7842,6 @@ declare const source_simple_crystal: z.ZodObject<{
|
|
|
7877
7842
|
display_value?: string | undefined;
|
|
7878
7843
|
are_pins_interchangeable?: boolean | undefined;
|
|
7879
7844
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7880
|
-
do_not_place?: boolean | undefined;
|
|
7881
7845
|
load_capacitance?: number | undefined;
|
|
7882
7846
|
}>;
|
|
7883
7847
|
type SourceSimpleCrystalInput = z.input<typeof source_simple_crystal>;
|
|
@@ -7901,7 +7865,6 @@ declare const source_simple_pin_header: z.ZodObject<{
|
|
|
7901
7865
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7902
7866
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7903
7867
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7904
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7905
7868
|
} & {
|
|
7906
7869
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
7907
7870
|
pin_count: z.ZodNumber;
|
|
@@ -7911,7 +7874,6 @@ declare const source_simple_pin_header: z.ZodObject<{
|
|
|
7911
7874
|
name: string;
|
|
7912
7875
|
source_component_id: string;
|
|
7913
7876
|
ftype: "simple_pin_header";
|
|
7914
|
-
do_not_place: boolean;
|
|
7915
7877
|
pin_count: number;
|
|
7916
7878
|
gender: "male" | "female";
|
|
7917
7879
|
subcircuit_id?: string | undefined;
|
|
@@ -7934,7 +7896,6 @@ declare const source_simple_pin_header: z.ZodObject<{
|
|
|
7934
7896
|
display_value?: string | undefined;
|
|
7935
7897
|
are_pins_interchangeable?: boolean | undefined;
|
|
7936
7898
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7937
|
-
do_not_place?: boolean | undefined;
|
|
7938
7899
|
gender?: "male" | "female" | undefined;
|
|
7939
7900
|
}>;
|
|
7940
7901
|
type SourceSimplePinHeaderInput = z.input<typeof source_simple_pin_header>;
|
|
@@ -7955,7 +7916,6 @@ declare const source_simple_pinout: z.ZodObject<{
|
|
|
7955
7916
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7956
7917
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7957
7918
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7958
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
7959
7919
|
} & {
|
|
7960
7920
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
7961
7921
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7963,7 +7923,6 @@ declare const source_simple_pinout: z.ZodObject<{
|
|
|
7963
7923
|
name: string;
|
|
7964
7924
|
source_component_id: string;
|
|
7965
7925
|
ftype: "simple_pinout";
|
|
7966
|
-
do_not_place: boolean;
|
|
7967
7926
|
subcircuit_id?: string | undefined;
|
|
7968
7927
|
source_group_id?: string | undefined;
|
|
7969
7928
|
manufacturer_part_number?: string | undefined;
|
|
@@ -7983,7 +7942,6 @@ declare const source_simple_pinout: z.ZodObject<{
|
|
|
7983
7942
|
display_value?: string | undefined;
|
|
7984
7943
|
are_pins_interchangeable?: boolean | undefined;
|
|
7985
7944
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7986
|
-
do_not_place?: boolean | undefined;
|
|
7987
7945
|
}>;
|
|
7988
7946
|
type SourceSimplePinoutInput = z.input<typeof source_simple_pinout>;
|
|
7989
7947
|
/**
|
|
@@ -8004,7 +7962,6 @@ declare const source_simple_resonator: z.ZodObject<{
|
|
|
8004
7962
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8005
7963
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8006
7964
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8007
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8008
7965
|
} & {
|
|
8009
7966
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
8010
7967
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -8015,7 +7972,6 @@ declare const source_simple_resonator: z.ZodObject<{
|
|
|
8015
7972
|
name: string;
|
|
8016
7973
|
source_component_id: string;
|
|
8017
7974
|
ftype: "simple_resonator";
|
|
8018
|
-
do_not_place: boolean;
|
|
8019
7975
|
frequency: number;
|
|
8020
7976
|
load_capacitance: number;
|
|
8021
7977
|
subcircuit_id?: string | undefined;
|
|
@@ -8040,7 +7996,6 @@ declare const source_simple_resonator: z.ZodObject<{
|
|
|
8040
7996
|
display_value?: string | undefined;
|
|
8041
7997
|
are_pins_interchangeable?: boolean | undefined;
|
|
8042
7998
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8043
|
-
do_not_place?: boolean | undefined;
|
|
8044
7999
|
equivalent_series_resistance?: string | number | undefined;
|
|
8045
8000
|
}>;
|
|
8046
8001
|
type SourceSimpleResonatorInput = z.input<typeof source_simple_resonator>;
|
|
@@ -8065,7 +8020,6 @@ declare const source_simple_transistor: z.ZodObject<{
|
|
|
8065
8020
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8066
8021
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8067
8022
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8068
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8069
8023
|
} & {
|
|
8070
8024
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
8071
8025
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -8074,7 +8028,6 @@ declare const source_simple_transistor: z.ZodObject<{
|
|
|
8074
8028
|
name: string;
|
|
8075
8029
|
source_component_id: string;
|
|
8076
8030
|
ftype: "simple_transistor";
|
|
8077
|
-
do_not_place: boolean;
|
|
8078
8031
|
transistor_type: "npn" | "pnp";
|
|
8079
8032
|
subcircuit_id?: string | undefined;
|
|
8080
8033
|
source_group_id?: string | undefined;
|
|
@@ -8096,7 +8049,6 @@ declare const source_simple_transistor: z.ZodObject<{
|
|
|
8096
8049
|
display_value?: string | undefined;
|
|
8097
8050
|
are_pins_interchangeable?: boolean | undefined;
|
|
8098
8051
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8099
|
-
do_not_place?: boolean | undefined;
|
|
8100
8052
|
}>;
|
|
8101
8053
|
type SourceSimpleTransistorInput = z.input<typeof source_simple_transistor>;
|
|
8102
8054
|
/**
|
|
@@ -8120,7 +8072,6 @@ declare const source_simple_test_point: z.ZodObject<{
|
|
|
8120
8072
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8121
8073
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8122
8074
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8123
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8124
8075
|
} & {
|
|
8125
8076
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
8126
8077
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -8134,7 +8085,6 @@ declare const source_simple_test_point: z.ZodObject<{
|
|
|
8134
8085
|
name: string;
|
|
8135
8086
|
source_component_id: string;
|
|
8136
8087
|
ftype: "simple_test_point";
|
|
8137
|
-
do_not_place: boolean;
|
|
8138
8088
|
width?: string | number | undefined;
|
|
8139
8089
|
height?: string | number | undefined;
|
|
8140
8090
|
subcircuit_id?: string | undefined;
|
|
@@ -8164,7 +8114,6 @@ declare const source_simple_test_point: z.ZodObject<{
|
|
|
8164
8114
|
display_value?: string | undefined;
|
|
8165
8115
|
are_pins_interchangeable?: boolean | undefined;
|
|
8166
8116
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8167
|
-
do_not_place?: boolean | undefined;
|
|
8168
8117
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
8169
8118
|
pad_diameter?: string | number | undefined;
|
|
8170
8119
|
}>;
|
|
@@ -8195,7 +8144,6 @@ declare const source_simple_mosfet: z.ZodObject<{
|
|
|
8195
8144
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8196
8145
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8197
8146
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8198
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8199
8147
|
} & {
|
|
8200
8148
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
8201
8149
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -8205,7 +8153,6 @@ declare const source_simple_mosfet: z.ZodObject<{
|
|
|
8205
8153
|
name: string;
|
|
8206
8154
|
source_component_id: string;
|
|
8207
8155
|
ftype: "simple_mosfet";
|
|
8208
|
-
do_not_place: boolean;
|
|
8209
8156
|
channel_type: "n" | "p";
|
|
8210
8157
|
mosfet_mode: "enhancement" | "depletion";
|
|
8211
8158
|
subcircuit_id?: string | undefined;
|
|
@@ -8229,7 +8176,6 @@ declare const source_simple_mosfet: z.ZodObject<{
|
|
|
8229
8176
|
display_value?: string | undefined;
|
|
8230
8177
|
are_pins_interchangeable?: boolean | undefined;
|
|
8231
8178
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8232
|
-
do_not_place?: boolean | undefined;
|
|
8233
8179
|
}>;
|
|
8234
8180
|
type SourceSimpleMosfetInput = z.input<typeof source_simple_mosfet>;
|
|
8235
8181
|
/**
|
|
@@ -8254,7 +8200,6 @@ declare const source_simple_switch: z.ZodObject<{
|
|
|
8254
8200
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8255
8201
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8256
8202
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8257
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8258
8203
|
} & {
|
|
8259
8204
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
8260
8205
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8262,7 +8207,6 @@ declare const source_simple_switch: z.ZodObject<{
|
|
|
8262
8207
|
name: string;
|
|
8263
8208
|
source_component_id: string;
|
|
8264
8209
|
ftype: "simple_switch";
|
|
8265
|
-
do_not_place: boolean;
|
|
8266
8210
|
subcircuit_id?: string | undefined;
|
|
8267
8211
|
source_group_id?: string | undefined;
|
|
8268
8212
|
manufacturer_part_number?: string | undefined;
|
|
@@ -8282,7 +8226,6 @@ declare const source_simple_switch: z.ZodObject<{
|
|
|
8282
8226
|
display_value?: string | undefined;
|
|
8283
8227
|
are_pins_interchangeable?: boolean | undefined;
|
|
8284
8228
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8285
|
-
do_not_place?: boolean | undefined;
|
|
8286
8229
|
}>;
|
|
8287
8230
|
type SourceSimpleSwitchInput = z.input<typeof source_simple_switch>;
|
|
8288
8231
|
/**
|
|
@@ -8579,7 +8522,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8579
8522
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8580
8523
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8581
8524
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8582
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8583
8525
|
} & {
|
|
8584
8526
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
8585
8527
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8589,7 +8531,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8589
8531
|
name: string;
|
|
8590
8532
|
source_component_id: string;
|
|
8591
8533
|
ftype: "simple_resistor";
|
|
8592
|
-
do_not_place: boolean;
|
|
8593
8534
|
resistance: number;
|
|
8594
8535
|
subcircuit_id?: string | undefined;
|
|
8595
8536
|
source_group_id?: string | undefined;
|
|
@@ -8612,7 +8553,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8612
8553
|
display_value?: string | undefined;
|
|
8613
8554
|
are_pins_interchangeable?: boolean | undefined;
|
|
8614
8555
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8615
|
-
do_not_place?: boolean | undefined;
|
|
8616
8556
|
display_resistance?: string | undefined;
|
|
8617
8557
|
}>, z.ZodObject<{
|
|
8618
8558
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -8625,7 +8565,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8625
8565
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8626
8566
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8627
8567
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8628
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8629
8568
|
} & {
|
|
8630
8569
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
8631
8570
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -8637,7 +8576,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8637
8576
|
name: string;
|
|
8638
8577
|
source_component_id: string;
|
|
8639
8578
|
ftype: "simple_capacitor";
|
|
8640
|
-
do_not_place: boolean;
|
|
8641
8579
|
capacitance: number;
|
|
8642
8580
|
subcircuit_id?: string | undefined;
|
|
8643
8581
|
source_group_id?: string | undefined;
|
|
@@ -8662,7 +8600,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8662
8600
|
display_value?: string | undefined;
|
|
8663
8601
|
are_pins_interchangeable?: boolean | undefined;
|
|
8664
8602
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8665
|
-
do_not_place?: boolean | undefined;
|
|
8666
8603
|
max_voltage_rating?: string | number | undefined;
|
|
8667
8604
|
display_capacitance?: string | undefined;
|
|
8668
8605
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -8677,7 +8614,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8677
8614
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8678
8615
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8679
8616
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8680
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8681
8617
|
} & {
|
|
8682
8618
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
8683
8619
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8685,7 +8621,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8685
8621
|
name: string;
|
|
8686
8622
|
source_component_id: string;
|
|
8687
8623
|
ftype: "simple_diode";
|
|
8688
|
-
do_not_place: boolean;
|
|
8689
8624
|
subcircuit_id?: string | undefined;
|
|
8690
8625
|
source_group_id?: string | undefined;
|
|
8691
8626
|
manufacturer_part_number?: string | undefined;
|
|
@@ -8705,7 +8640,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8705
8640
|
display_value?: string | undefined;
|
|
8706
8641
|
are_pins_interchangeable?: boolean | undefined;
|
|
8707
8642
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8708
|
-
do_not_place?: boolean | undefined;
|
|
8709
8643
|
}>, z.ZodObject<{
|
|
8710
8644
|
type: z.ZodLiteral<"source_component">;
|
|
8711
8645
|
source_component_id: z.ZodString;
|
|
@@ -8717,7 +8651,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8717
8651
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8718
8652
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8719
8653
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8720
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8721
8654
|
} & {
|
|
8722
8655
|
ftype: z.ZodLiteral<"simple_led">;
|
|
8723
8656
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -8727,7 +8660,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8727
8660
|
name: string;
|
|
8728
8661
|
source_component_id: string;
|
|
8729
8662
|
ftype: "simple_led";
|
|
8730
|
-
do_not_place: boolean;
|
|
8731
8663
|
subcircuit_id?: string | undefined;
|
|
8732
8664
|
color?: string | undefined;
|
|
8733
8665
|
source_group_id?: string | undefined;
|
|
@@ -8750,7 +8682,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8750
8682
|
display_value?: string | undefined;
|
|
8751
8683
|
are_pins_interchangeable?: boolean | undefined;
|
|
8752
8684
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8753
|
-
do_not_place?: boolean | undefined;
|
|
8754
8685
|
wavelength?: string | undefined;
|
|
8755
8686
|
}>, z.ZodObject<{
|
|
8756
8687
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -8763,7 +8694,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8763
8694
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8764
8695
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8765
8696
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8766
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8767
8697
|
} & {
|
|
8768
8698
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
8769
8699
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8771,7 +8701,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8771
8701
|
name: string;
|
|
8772
8702
|
source_component_id: string;
|
|
8773
8703
|
ftype: "simple_ground";
|
|
8774
|
-
do_not_place: boolean;
|
|
8775
8704
|
subcircuit_id?: string | undefined;
|
|
8776
8705
|
source_group_id?: string | undefined;
|
|
8777
8706
|
manufacturer_part_number?: string | undefined;
|
|
@@ -8791,7 +8720,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8791
8720
|
display_value?: string | undefined;
|
|
8792
8721
|
are_pins_interchangeable?: boolean | undefined;
|
|
8793
8722
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8794
|
-
do_not_place?: boolean | undefined;
|
|
8795
8723
|
}>, z.ZodObject<{
|
|
8796
8724
|
type: z.ZodLiteral<"source_component">;
|
|
8797
8725
|
source_component_id: z.ZodString;
|
|
@@ -8803,7 +8731,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8803
8731
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8804
8732
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8805
8733
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8806
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8807
8734
|
} & {
|
|
8808
8735
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
8809
8736
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8811,7 +8738,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8811
8738
|
name: string;
|
|
8812
8739
|
source_component_id: string;
|
|
8813
8740
|
ftype: "simple_chip";
|
|
8814
|
-
do_not_place: boolean;
|
|
8815
8741
|
subcircuit_id?: string | undefined;
|
|
8816
8742
|
source_group_id?: string | undefined;
|
|
8817
8743
|
manufacturer_part_number?: string | undefined;
|
|
@@ -8831,7 +8757,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8831
8757
|
display_value?: string | undefined;
|
|
8832
8758
|
are_pins_interchangeable?: boolean | undefined;
|
|
8833
8759
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8834
|
-
do_not_place?: boolean | undefined;
|
|
8835
8760
|
}>, z.ZodObject<{
|
|
8836
8761
|
type: z.ZodLiteral<"source_component">;
|
|
8837
8762
|
source_component_id: z.ZodString;
|
|
@@ -8843,7 +8768,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8843
8768
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8844
8769
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8845
8770
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8846
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8847
8771
|
} & {
|
|
8848
8772
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
8849
8773
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8853,7 +8777,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8853
8777
|
source_component_id: string;
|
|
8854
8778
|
voltage: number;
|
|
8855
8779
|
ftype: "simple_power_source";
|
|
8856
|
-
do_not_place: boolean;
|
|
8857
8780
|
subcircuit_id?: string | undefined;
|
|
8858
8781
|
source_group_id?: string | undefined;
|
|
8859
8782
|
manufacturer_part_number?: string | undefined;
|
|
@@ -8874,7 +8797,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8874
8797
|
display_value?: string | undefined;
|
|
8875
8798
|
are_pins_interchangeable?: boolean | undefined;
|
|
8876
8799
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8877
|
-
do_not_place?: boolean | undefined;
|
|
8878
8800
|
}>, z.ZodObject<{
|
|
8879
8801
|
type: z.ZodLiteral<"source_component">;
|
|
8880
8802
|
source_component_id: z.ZodString;
|
|
@@ -8886,7 +8808,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8886
8808
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8887
8809
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8888
8810
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8889
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8890
8811
|
} & {
|
|
8891
8812
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
8892
8813
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -8895,7 +8816,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8895
8816
|
name: string;
|
|
8896
8817
|
source_component_id: string;
|
|
8897
8818
|
ftype: "simple_battery";
|
|
8898
|
-
do_not_place: boolean;
|
|
8899
8819
|
capacity: number;
|
|
8900
8820
|
subcircuit_id?: string | undefined;
|
|
8901
8821
|
source_group_id?: string | undefined;
|
|
@@ -8917,7 +8837,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8917
8837
|
display_value?: string | undefined;
|
|
8918
8838
|
are_pins_interchangeable?: boolean | undefined;
|
|
8919
8839
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8920
|
-
do_not_place?: boolean | undefined;
|
|
8921
8840
|
}>, z.ZodObject<{
|
|
8922
8841
|
type: z.ZodLiteral<"source_component">;
|
|
8923
8842
|
source_component_id: z.ZodString;
|
|
@@ -8929,7 +8848,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8929
8848
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8930
8849
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8931
8850
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8932
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8933
8851
|
} & {
|
|
8934
8852
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
8935
8853
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8939,7 +8857,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8939
8857
|
name: string;
|
|
8940
8858
|
source_component_id: string;
|
|
8941
8859
|
ftype: "simple_inductor";
|
|
8942
|
-
do_not_place: boolean;
|
|
8943
8860
|
inductance: number;
|
|
8944
8861
|
subcircuit_id?: string | undefined;
|
|
8945
8862
|
source_group_id?: string | undefined;
|
|
@@ -8962,7 +8879,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8962
8879
|
display_value?: string | undefined;
|
|
8963
8880
|
are_pins_interchangeable?: boolean | undefined;
|
|
8964
8881
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8965
|
-
do_not_place?: boolean | undefined;
|
|
8966
8882
|
max_current_rating?: number | undefined;
|
|
8967
8883
|
}>, z.ZodObject<{
|
|
8968
8884
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -8975,7 +8891,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8975
8891
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8976
8892
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8977
8893
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8978
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8979
8894
|
} & {
|
|
8980
8895
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
8981
8896
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8983,7 +8898,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
8983
8898
|
name: string;
|
|
8984
8899
|
source_component_id: string;
|
|
8985
8900
|
ftype: "simple_push_button";
|
|
8986
|
-
do_not_place: boolean;
|
|
8987
8901
|
subcircuit_id?: string | undefined;
|
|
8988
8902
|
source_group_id?: string | undefined;
|
|
8989
8903
|
manufacturer_part_number?: string | undefined;
|
|
@@ -9003,7 +8917,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9003
8917
|
display_value?: string | undefined;
|
|
9004
8918
|
are_pins_interchangeable?: boolean | undefined;
|
|
9005
8919
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9006
|
-
do_not_place?: boolean | undefined;
|
|
9007
8920
|
}>, z.ZodObject<{
|
|
9008
8921
|
type: z.ZodLiteral<"source_component">;
|
|
9009
8922
|
source_component_id: z.ZodString;
|
|
@@ -9015,7 +8928,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9015
8928
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9016
8929
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9017
8930
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9018
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9019
8931
|
} & {
|
|
9020
8932
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
9021
8933
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9024,7 +8936,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9024
8936
|
name: string;
|
|
9025
8937
|
source_component_id: string;
|
|
9026
8938
|
ftype: "simple_potentiometer";
|
|
9027
|
-
do_not_place: boolean;
|
|
9028
8939
|
max_resistance: number;
|
|
9029
8940
|
subcircuit_id?: string | undefined;
|
|
9030
8941
|
source_group_id?: string | undefined;
|
|
@@ -9046,7 +8957,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9046
8957
|
display_value?: string | undefined;
|
|
9047
8958
|
are_pins_interchangeable?: boolean | undefined;
|
|
9048
8959
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9049
|
-
do_not_place?: boolean | undefined;
|
|
9050
8960
|
}>, z.ZodObject<{
|
|
9051
8961
|
type: z.ZodLiteral<"source_component">;
|
|
9052
8962
|
source_component_id: z.ZodString;
|
|
@@ -9058,7 +8968,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9058
8968
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9059
8969
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9060
8970
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9061
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9062
8971
|
} & {
|
|
9063
8972
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
9064
8973
|
frequency: z.ZodNumber;
|
|
@@ -9068,7 +8977,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9068
8977
|
name: string;
|
|
9069
8978
|
source_component_id: string;
|
|
9070
8979
|
ftype: "simple_crystal";
|
|
9071
|
-
do_not_place: boolean;
|
|
9072
8980
|
frequency: number;
|
|
9073
8981
|
subcircuit_id?: string | undefined;
|
|
9074
8982
|
source_group_id?: string | undefined;
|
|
@@ -9091,7 +8999,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9091
8999
|
display_value?: string | undefined;
|
|
9092
9000
|
are_pins_interchangeable?: boolean | undefined;
|
|
9093
9001
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9094
|
-
do_not_place?: boolean | undefined;
|
|
9095
9002
|
load_capacitance?: number | undefined;
|
|
9096
9003
|
}>, z.ZodObject<{
|
|
9097
9004
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -9104,7 +9011,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9104
9011
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9105
9012
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9106
9013
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9107
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9108
9014
|
} & {
|
|
9109
9015
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
9110
9016
|
pin_count: z.ZodNumber;
|
|
@@ -9114,7 +9020,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9114
9020
|
name: string;
|
|
9115
9021
|
source_component_id: string;
|
|
9116
9022
|
ftype: "simple_pin_header";
|
|
9117
|
-
do_not_place: boolean;
|
|
9118
9023
|
pin_count: number;
|
|
9119
9024
|
gender: "male" | "female";
|
|
9120
9025
|
subcircuit_id?: string | undefined;
|
|
@@ -9137,7 +9042,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9137
9042
|
display_value?: string | undefined;
|
|
9138
9043
|
are_pins_interchangeable?: boolean | undefined;
|
|
9139
9044
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9140
|
-
do_not_place?: boolean | undefined;
|
|
9141
9045
|
gender?: "male" | "female" | undefined;
|
|
9142
9046
|
}>, z.ZodObject<{
|
|
9143
9047
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -9150,7 +9054,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9150
9054
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9151
9055
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9152
9056
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9153
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9154
9057
|
} & {
|
|
9155
9058
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
9156
9059
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9158,7 +9061,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9158
9061
|
name: string;
|
|
9159
9062
|
source_component_id: string;
|
|
9160
9063
|
ftype: "simple_pinout";
|
|
9161
|
-
do_not_place: boolean;
|
|
9162
9064
|
subcircuit_id?: string | undefined;
|
|
9163
9065
|
source_group_id?: string | undefined;
|
|
9164
9066
|
manufacturer_part_number?: string | undefined;
|
|
@@ -9178,7 +9080,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9178
9080
|
display_value?: string | undefined;
|
|
9179
9081
|
are_pins_interchangeable?: boolean | undefined;
|
|
9180
9082
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9181
|
-
do_not_place?: boolean | undefined;
|
|
9182
9083
|
}>, z.ZodObject<{
|
|
9183
9084
|
type: z.ZodLiteral<"source_component">;
|
|
9184
9085
|
source_component_id: z.ZodString;
|
|
@@ -9190,7 +9091,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9190
9091
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9191
9092
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9192
9093
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9193
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9194
9094
|
} & {
|
|
9195
9095
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
9196
9096
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -9201,7 +9101,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9201
9101
|
name: string;
|
|
9202
9102
|
source_component_id: string;
|
|
9203
9103
|
ftype: "simple_resonator";
|
|
9204
|
-
do_not_place: boolean;
|
|
9205
9104
|
frequency: number;
|
|
9206
9105
|
load_capacitance: number;
|
|
9207
9106
|
subcircuit_id?: string | undefined;
|
|
@@ -9226,7 +9125,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9226
9125
|
display_value?: string | undefined;
|
|
9227
9126
|
are_pins_interchangeable?: boolean | undefined;
|
|
9228
9127
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9229
|
-
do_not_place?: boolean | undefined;
|
|
9230
9128
|
equivalent_series_resistance?: string | number | undefined;
|
|
9231
9129
|
}>, z.ZodObject<{
|
|
9232
9130
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -9239,7 +9137,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9239
9137
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9240
9138
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9241
9139
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9242
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9243
9140
|
} & {
|
|
9244
9141
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
9245
9142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9247,7 +9144,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9247
9144
|
name: string;
|
|
9248
9145
|
source_component_id: string;
|
|
9249
9146
|
ftype: "simple_switch";
|
|
9250
|
-
do_not_place: boolean;
|
|
9251
9147
|
subcircuit_id?: string | undefined;
|
|
9252
9148
|
source_group_id?: string | undefined;
|
|
9253
9149
|
manufacturer_part_number?: string | undefined;
|
|
@@ -9267,7 +9163,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9267
9163
|
display_value?: string | undefined;
|
|
9268
9164
|
are_pins_interchangeable?: boolean | undefined;
|
|
9269
9165
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9270
|
-
do_not_place?: boolean | undefined;
|
|
9271
9166
|
}>, z.ZodObject<{
|
|
9272
9167
|
type: z.ZodLiteral<"source_component">;
|
|
9273
9168
|
source_component_id: z.ZodString;
|
|
@@ -9279,7 +9174,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9279
9174
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9280
9175
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9281
9176
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9282
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9283
9177
|
} & {
|
|
9284
9178
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
9285
9179
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -9288,7 +9182,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9288
9182
|
name: string;
|
|
9289
9183
|
source_component_id: string;
|
|
9290
9184
|
ftype: "simple_transistor";
|
|
9291
|
-
do_not_place: boolean;
|
|
9292
9185
|
transistor_type: "npn" | "pnp";
|
|
9293
9186
|
subcircuit_id?: string | undefined;
|
|
9294
9187
|
source_group_id?: string | undefined;
|
|
@@ -9310,7 +9203,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9310
9203
|
display_value?: string | undefined;
|
|
9311
9204
|
are_pins_interchangeable?: boolean | undefined;
|
|
9312
9205
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9313
|
-
do_not_place?: boolean | undefined;
|
|
9314
9206
|
}>, z.ZodObject<{
|
|
9315
9207
|
type: z.ZodLiteral<"source_component">;
|
|
9316
9208
|
source_component_id: z.ZodString;
|
|
@@ -9322,7 +9214,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9322
9214
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9323
9215
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9324
9216
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9325
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9326
9217
|
} & {
|
|
9327
9218
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
9328
9219
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -9336,7 +9227,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9336
9227
|
name: string;
|
|
9337
9228
|
source_component_id: string;
|
|
9338
9229
|
ftype: "simple_test_point";
|
|
9339
|
-
do_not_place: boolean;
|
|
9340
9230
|
width?: string | number | undefined;
|
|
9341
9231
|
height?: string | number | undefined;
|
|
9342
9232
|
subcircuit_id?: string | undefined;
|
|
@@ -9366,7 +9256,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9366
9256
|
display_value?: string | undefined;
|
|
9367
9257
|
are_pins_interchangeable?: boolean | undefined;
|
|
9368
9258
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9369
|
-
do_not_place?: boolean | undefined;
|
|
9370
9259
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
9371
9260
|
pad_diameter?: string | number | undefined;
|
|
9372
9261
|
}>, z.ZodObject<{
|
|
@@ -9380,7 +9269,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9380
9269
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9381
9270
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9382
9271
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9383
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9384
9272
|
} & {
|
|
9385
9273
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
9386
9274
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -9390,7 +9278,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9390
9278
|
name: string;
|
|
9391
9279
|
source_component_id: string;
|
|
9392
9280
|
ftype: "simple_mosfet";
|
|
9393
|
-
do_not_place: boolean;
|
|
9394
9281
|
channel_type: "n" | "p";
|
|
9395
9282
|
mosfet_mode: "enhancement" | "depletion";
|
|
9396
9283
|
subcircuit_id?: string | undefined;
|
|
@@ -9414,7 +9301,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9414
9301
|
display_value?: string | undefined;
|
|
9415
9302
|
are_pins_interchangeable?: boolean | undefined;
|
|
9416
9303
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9417
|
-
do_not_place?: boolean | undefined;
|
|
9418
9304
|
}>, z.ZodObject<{
|
|
9419
9305
|
type: z.ZodLiteral<"source_component">;
|
|
9420
9306
|
source_component_id: z.ZodString;
|
|
@@ -9426,7 +9312,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9426
9312
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
9427
9313
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
9428
9314
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9429
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9430
9315
|
} & {
|
|
9431
9316
|
ftype: z.ZodLiteral<"simple_fuse">;
|
|
9432
9317
|
current_rating_amps: z.ZodNumber;
|
|
@@ -9436,7 +9321,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9436
9321
|
name: string;
|
|
9437
9322
|
source_component_id: string;
|
|
9438
9323
|
ftype: "simple_fuse";
|
|
9439
|
-
do_not_place: boolean;
|
|
9440
9324
|
current_rating_amps: number;
|
|
9441
9325
|
voltage_rating_volts: number;
|
|
9442
9326
|
subcircuit_id?: string | undefined;
|
|
@@ -9460,7 +9344,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
9460
9344
|
display_value?: string | undefined;
|
|
9461
9345
|
are_pins_interchangeable?: boolean | undefined;
|
|
9462
9346
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
9463
|
-
do_not_place?: boolean | undefined;
|
|
9464
9347
|
}>, z.ZodObject<{
|
|
9465
9348
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
9466
9349
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -10297,7 +10180,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10297
10180
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10298
10181
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10299
10182
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10300
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10301
10183
|
} & {
|
|
10302
10184
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
10303
10185
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10307,7 +10189,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10307
10189
|
name: string;
|
|
10308
10190
|
source_component_id: string;
|
|
10309
10191
|
ftype: "simple_resistor";
|
|
10310
|
-
do_not_place: boolean;
|
|
10311
10192
|
resistance: number;
|
|
10312
10193
|
subcircuit_id?: string | undefined;
|
|
10313
10194
|
source_group_id?: string | undefined;
|
|
@@ -10330,7 +10211,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10330
10211
|
display_value?: string | undefined;
|
|
10331
10212
|
are_pins_interchangeable?: boolean | undefined;
|
|
10332
10213
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10333
|
-
do_not_place?: boolean | undefined;
|
|
10334
10214
|
display_resistance?: string | undefined;
|
|
10335
10215
|
}>, z.ZodObject<{
|
|
10336
10216
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10343,7 +10223,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10343
10223
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10344
10224
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10345
10225
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10346
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10347
10226
|
} & {
|
|
10348
10227
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
10349
10228
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10355,7 +10234,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10355
10234
|
name: string;
|
|
10356
10235
|
source_component_id: string;
|
|
10357
10236
|
ftype: "simple_capacitor";
|
|
10358
|
-
do_not_place: boolean;
|
|
10359
10237
|
capacitance: number;
|
|
10360
10238
|
subcircuit_id?: string | undefined;
|
|
10361
10239
|
source_group_id?: string | undefined;
|
|
@@ -10380,7 +10258,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10380
10258
|
display_value?: string | undefined;
|
|
10381
10259
|
are_pins_interchangeable?: boolean | undefined;
|
|
10382
10260
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10383
|
-
do_not_place?: boolean | undefined;
|
|
10384
10261
|
max_voltage_rating?: string | number | undefined;
|
|
10385
10262
|
display_capacitance?: string | undefined;
|
|
10386
10263
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -10395,7 +10272,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10395
10272
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10396
10273
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10397
10274
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10398
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10399
10275
|
} & {
|
|
10400
10276
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10401
10277
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10403,7 +10279,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10403
10279
|
name: string;
|
|
10404
10280
|
source_component_id: string;
|
|
10405
10281
|
ftype: "simple_diode";
|
|
10406
|
-
do_not_place: boolean;
|
|
10407
10282
|
subcircuit_id?: string | undefined;
|
|
10408
10283
|
source_group_id?: string | undefined;
|
|
10409
10284
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10423,7 +10298,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10423
10298
|
display_value?: string | undefined;
|
|
10424
10299
|
are_pins_interchangeable?: boolean | undefined;
|
|
10425
10300
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10426
|
-
do_not_place?: boolean | undefined;
|
|
10427
10301
|
}>, z.ZodObject<{
|
|
10428
10302
|
type: z.ZodLiteral<"source_component">;
|
|
10429
10303
|
source_component_id: z.ZodString;
|
|
@@ -10435,7 +10309,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10435
10309
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10436
10310
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10437
10311
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10438
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10439
10312
|
} & {
|
|
10440
10313
|
ftype: z.ZodLiteral<"simple_led">;
|
|
10441
10314
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -10445,7 +10318,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10445
10318
|
name: string;
|
|
10446
10319
|
source_component_id: string;
|
|
10447
10320
|
ftype: "simple_led";
|
|
10448
|
-
do_not_place: boolean;
|
|
10449
10321
|
subcircuit_id?: string | undefined;
|
|
10450
10322
|
color?: string | undefined;
|
|
10451
10323
|
source_group_id?: string | undefined;
|
|
@@ -10468,7 +10340,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10468
10340
|
display_value?: string | undefined;
|
|
10469
10341
|
are_pins_interchangeable?: boolean | undefined;
|
|
10470
10342
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10471
|
-
do_not_place?: boolean | undefined;
|
|
10472
10343
|
wavelength?: string | undefined;
|
|
10473
10344
|
}>, z.ZodObject<{
|
|
10474
10345
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10481,7 +10352,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10481
10352
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10482
10353
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10483
10354
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10484
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10485
10355
|
} & {
|
|
10486
10356
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
10487
10357
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10489,7 +10359,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10489
10359
|
name: string;
|
|
10490
10360
|
source_component_id: string;
|
|
10491
10361
|
ftype: "simple_ground";
|
|
10492
|
-
do_not_place: boolean;
|
|
10493
10362
|
subcircuit_id?: string | undefined;
|
|
10494
10363
|
source_group_id?: string | undefined;
|
|
10495
10364
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10509,7 +10378,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10509
10378
|
display_value?: string | undefined;
|
|
10510
10379
|
are_pins_interchangeable?: boolean | undefined;
|
|
10511
10380
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10512
|
-
do_not_place?: boolean | undefined;
|
|
10513
10381
|
}>, z.ZodObject<{
|
|
10514
10382
|
type: z.ZodLiteral<"source_component">;
|
|
10515
10383
|
source_component_id: z.ZodString;
|
|
@@ -10521,7 +10389,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10521
10389
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10522
10390
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10523
10391
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10524
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10525
10392
|
} & {
|
|
10526
10393
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10527
10394
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10529,7 +10396,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10529
10396
|
name: string;
|
|
10530
10397
|
source_component_id: string;
|
|
10531
10398
|
ftype: "simple_chip";
|
|
10532
|
-
do_not_place: boolean;
|
|
10533
10399
|
subcircuit_id?: string | undefined;
|
|
10534
10400
|
source_group_id?: string | undefined;
|
|
10535
10401
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10549,7 +10415,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10549
10415
|
display_value?: string | undefined;
|
|
10550
10416
|
are_pins_interchangeable?: boolean | undefined;
|
|
10551
10417
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10552
|
-
do_not_place?: boolean | undefined;
|
|
10553
10418
|
}>, z.ZodObject<{
|
|
10554
10419
|
type: z.ZodLiteral<"source_component">;
|
|
10555
10420
|
source_component_id: z.ZodString;
|
|
@@ -10561,7 +10426,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10561
10426
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10562
10427
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10563
10428
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10564
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10565
10429
|
} & {
|
|
10566
10430
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10567
10431
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10571,7 +10435,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10571
10435
|
source_component_id: string;
|
|
10572
10436
|
voltage: number;
|
|
10573
10437
|
ftype: "simple_power_source";
|
|
10574
|
-
do_not_place: boolean;
|
|
10575
10438
|
subcircuit_id?: string | undefined;
|
|
10576
10439
|
source_group_id?: string | undefined;
|
|
10577
10440
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10592,7 +10455,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10592
10455
|
display_value?: string | undefined;
|
|
10593
10456
|
are_pins_interchangeable?: boolean | undefined;
|
|
10594
10457
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10595
|
-
do_not_place?: boolean | undefined;
|
|
10596
10458
|
}>, z.ZodObject<{
|
|
10597
10459
|
type: z.ZodLiteral<"source_component">;
|
|
10598
10460
|
source_component_id: z.ZodString;
|
|
@@ -10604,7 +10466,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10604
10466
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10605
10467
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10606
10468
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10607
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10608
10469
|
} & {
|
|
10609
10470
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10610
10471
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10613,7 +10474,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10613
10474
|
name: string;
|
|
10614
10475
|
source_component_id: string;
|
|
10615
10476
|
ftype: "simple_battery";
|
|
10616
|
-
do_not_place: boolean;
|
|
10617
10477
|
capacity: number;
|
|
10618
10478
|
subcircuit_id?: string | undefined;
|
|
10619
10479
|
source_group_id?: string | undefined;
|
|
@@ -10635,7 +10495,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10635
10495
|
display_value?: string | undefined;
|
|
10636
10496
|
are_pins_interchangeable?: boolean | undefined;
|
|
10637
10497
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10638
|
-
do_not_place?: boolean | undefined;
|
|
10639
10498
|
}>, z.ZodObject<{
|
|
10640
10499
|
type: z.ZodLiteral<"source_component">;
|
|
10641
10500
|
source_component_id: z.ZodString;
|
|
@@ -10647,7 +10506,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10647
10506
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10648
10507
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10649
10508
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10650
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10651
10509
|
} & {
|
|
10652
10510
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10653
10511
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10657,7 +10515,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10657
10515
|
name: string;
|
|
10658
10516
|
source_component_id: string;
|
|
10659
10517
|
ftype: "simple_inductor";
|
|
10660
|
-
do_not_place: boolean;
|
|
10661
10518
|
inductance: number;
|
|
10662
10519
|
subcircuit_id?: string | undefined;
|
|
10663
10520
|
source_group_id?: string | undefined;
|
|
@@ -10680,7 +10537,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10680
10537
|
display_value?: string | undefined;
|
|
10681
10538
|
are_pins_interchangeable?: boolean | undefined;
|
|
10682
10539
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10683
|
-
do_not_place?: boolean | undefined;
|
|
10684
10540
|
max_current_rating?: number | undefined;
|
|
10685
10541
|
}>, z.ZodObject<{
|
|
10686
10542
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10693,7 +10549,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10693
10549
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10694
10550
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10695
10551
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10696
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10697
10552
|
} & {
|
|
10698
10553
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10699
10554
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10701,7 +10556,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10701
10556
|
name: string;
|
|
10702
10557
|
source_component_id: string;
|
|
10703
10558
|
ftype: "simple_push_button";
|
|
10704
|
-
do_not_place: boolean;
|
|
10705
10559
|
subcircuit_id?: string | undefined;
|
|
10706
10560
|
source_group_id?: string | undefined;
|
|
10707
10561
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10721,7 +10575,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10721
10575
|
display_value?: string | undefined;
|
|
10722
10576
|
are_pins_interchangeable?: boolean | undefined;
|
|
10723
10577
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10724
|
-
do_not_place?: boolean | undefined;
|
|
10725
10578
|
}>, z.ZodObject<{
|
|
10726
10579
|
type: z.ZodLiteral<"source_component">;
|
|
10727
10580
|
source_component_id: z.ZodString;
|
|
@@ -10733,7 +10586,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10733
10586
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10734
10587
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10735
10588
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10736
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10737
10589
|
} & {
|
|
10738
10590
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10739
10591
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10742,7 +10594,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10742
10594
|
name: string;
|
|
10743
10595
|
source_component_id: string;
|
|
10744
10596
|
ftype: "simple_potentiometer";
|
|
10745
|
-
do_not_place: boolean;
|
|
10746
10597
|
max_resistance: number;
|
|
10747
10598
|
subcircuit_id?: string | undefined;
|
|
10748
10599
|
source_group_id?: string | undefined;
|
|
@@ -10764,7 +10615,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10764
10615
|
display_value?: string | undefined;
|
|
10765
10616
|
are_pins_interchangeable?: boolean | undefined;
|
|
10766
10617
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10767
|
-
do_not_place?: boolean | undefined;
|
|
10768
10618
|
}>, z.ZodObject<{
|
|
10769
10619
|
type: z.ZodLiteral<"source_component">;
|
|
10770
10620
|
source_component_id: z.ZodString;
|
|
@@ -10776,7 +10626,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10776
10626
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10777
10627
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10778
10628
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10779
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10780
10629
|
} & {
|
|
10781
10630
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
10782
10631
|
frequency: z.ZodNumber;
|
|
@@ -10786,7 +10635,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10786
10635
|
name: string;
|
|
10787
10636
|
source_component_id: string;
|
|
10788
10637
|
ftype: "simple_crystal";
|
|
10789
|
-
do_not_place: boolean;
|
|
10790
10638
|
frequency: number;
|
|
10791
10639
|
subcircuit_id?: string | undefined;
|
|
10792
10640
|
source_group_id?: string | undefined;
|
|
@@ -10809,7 +10657,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10809
10657
|
display_value?: string | undefined;
|
|
10810
10658
|
are_pins_interchangeable?: boolean | undefined;
|
|
10811
10659
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10812
|
-
do_not_place?: boolean | undefined;
|
|
10813
10660
|
load_capacitance?: number | undefined;
|
|
10814
10661
|
}>, z.ZodObject<{
|
|
10815
10662
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10822,7 +10669,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10822
10669
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10823
10670
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10824
10671
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10825
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10826
10672
|
} & {
|
|
10827
10673
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10828
10674
|
pin_count: z.ZodNumber;
|
|
@@ -10832,7 +10678,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10832
10678
|
name: string;
|
|
10833
10679
|
source_component_id: string;
|
|
10834
10680
|
ftype: "simple_pin_header";
|
|
10835
|
-
do_not_place: boolean;
|
|
10836
10681
|
pin_count: number;
|
|
10837
10682
|
gender: "male" | "female";
|
|
10838
10683
|
subcircuit_id?: string | undefined;
|
|
@@ -10855,7 +10700,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10855
10700
|
display_value?: string | undefined;
|
|
10856
10701
|
are_pins_interchangeable?: boolean | undefined;
|
|
10857
10702
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10858
|
-
do_not_place?: boolean | undefined;
|
|
10859
10703
|
gender?: "male" | "female" | undefined;
|
|
10860
10704
|
}>, z.ZodObject<{
|
|
10861
10705
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10868,7 +10712,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10868
10712
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10869
10713
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10870
10714
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10871
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10872
10715
|
} & {
|
|
10873
10716
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
10874
10717
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10876,7 +10719,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10876
10719
|
name: string;
|
|
10877
10720
|
source_component_id: string;
|
|
10878
10721
|
ftype: "simple_pinout";
|
|
10879
|
-
do_not_place: boolean;
|
|
10880
10722
|
subcircuit_id?: string | undefined;
|
|
10881
10723
|
source_group_id?: string | undefined;
|
|
10882
10724
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10896,7 +10738,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10896
10738
|
display_value?: string | undefined;
|
|
10897
10739
|
are_pins_interchangeable?: boolean | undefined;
|
|
10898
10740
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10899
|
-
do_not_place?: boolean | undefined;
|
|
10900
10741
|
}>, z.ZodObject<{
|
|
10901
10742
|
type: z.ZodLiteral<"source_component">;
|
|
10902
10743
|
source_component_id: z.ZodString;
|
|
@@ -10908,7 +10749,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10908
10749
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10909
10750
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10910
10751
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10911
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10912
10752
|
} & {
|
|
10913
10753
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10914
10754
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10919,7 +10759,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10919
10759
|
name: string;
|
|
10920
10760
|
source_component_id: string;
|
|
10921
10761
|
ftype: "simple_resonator";
|
|
10922
|
-
do_not_place: boolean;
|
|
10923
10762
|
frequency: number;
|
|
10924
10763
|
load_capacitance: number;
|
|
10925
10764
|
subcircuit_id?: string | undefined;
|
|
@@ -10944,7 +10783,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10944
10783
|
display_value?: string | undefined;
|
|
10945
10784
|
are_pins_interchangeable?: boolean | undefined;
|
|
10946
10785
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10947
|
-
do_not_place?: boolean | undefined;
|
|
10948
10786
|
equivalent_series_resistance?: string | number | undefined;
|
|
10949
10787
|
}>, z.ZodObject<{
|
|
10950
10788
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10957,7 +10795,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10957
10795
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10958
10796
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10959
10797
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10960
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10961
10798
|
} & {
|
|
10962
10799
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10963
10800
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10965,7 +10802,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10965
10802
|
name: string;
|
|
10966
10803
|
source_component_id: string;
|
|
10967
10804
|
ftype: "simple_switch";
|
|
10968
|
-
do_not_place: boolean;
|
|
10969
10805
|
subcircuit_id?: string | undefined;
|
|
10970
10806
|
source_group_id?: string | undefined;
|
|
10971
10807
|
manufacturer_part_number?: string | undefined;
|
|
@@ -10985,7 +10821,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10985
10821
|
display_value?: string | undefined;
|
|
10986
10822
|
are_pins_interchangeable?: boolean | undefined;
|
|
10987
10823
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10988
|
-
do_not_place?: boolean | undefined;
|
|
10989
10824
|
}>, z.ZodObject<{
|
|
10990
10825
|
type: z.ZodLiteral<"source_component">;
|
|
10991
10826
|
source_component_id: z.ZodString;
|
|
@@ -10997,7 +10832,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10997
10832
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10998
10833
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10999
10834
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11000
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11001
10835
|
} & {
|
|
11002
10836
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
11003
10837
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -11006,7 +10840,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11006
10840
|
name: string;
|
|
11007
10841
|
source_component_id: string;
|
|
11008
10842
|
ftype: "simple_transistor";
|
|
11009
|
-
do_not_place: boolean;
|
|
11010
10843
|
transistor_type: "npn" | "pnp";
|
|
11011
10844
|
subcircuit_id?: string | undefined;
|
|
11012
10845
|
source_group_id?: string | undefined;
|
|
@@ -11028,7 +10861,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11028
10861
|
display_value?: string | undefined;
|
|
11029
10862
|
are_pins_interchangeable?: boolean | undefined;
|
|
11030
10863
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11031
|
-
do_not_place?: boolean | undefined;
|
|
11032
10864
|
}>, z.ZodObject<{
|
|
11033
10865
|
type: z.ZodLiteral<"source_component">;
|
|
11034
10866
|
source_component_id: z.ZodString;
|
|
@@ -11040,7 +10872,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11040
10872
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11041
10873
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11042
10874
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11043
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11044
10875
|
} & {
|
|
11045
10876
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
11046
10877
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -11054,7 +10885,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11054
10885
|
name: string;
|
|
11055
10886
|
source_component_id: string;
|
|
11056
10887
|
ftype: "simple_test_point";
|
|
11057
|
-
do_not_place: boolean;
|
|
11058
10888
|
width?: string | number | undefined;
|
|
11059
10889
|
height?: string | number | undefined;
|
|
11060
10890
|
subcircuit_id?: string | undefined;
|
|
@@ -11084,7 +10914,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11084
10914
|
display_value?: string | undefined;
|
|
11085
10915
|
are_pins_interchangeable?: boolean | undefined;
|
|
11086
10916
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11087
|
-
do_not_place?: boolean | undefined;
|
|
11088
10917
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
11089
10918
|
pad_diameter?: string | number | undefined;
|
|
11090
10919
|
}>, z.ZodObject<{
|
|
@@ -11098,7 +10927,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11098
10927
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11099
10928
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11100
10929
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11101
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11102
10930
|
} & {
|
|
11103
10931
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
11104
10932
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -11108,7 +10936,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11108
10936
|
name: string;
|
|
11109
10937
|
source_component_id: string;
|
|
11110
10938
|
ftype: "simple_mosfet";
|
|
11111
|
-
do_not_place: boolean;
|
|
11112
10939
|
channel_type: "n" | "p";
|
|
11113
10940
|
mosfet_mode: "enhancement" | "depletion";
|
|
11114
10941
|
subcircuit_id?: string | undefined;
|
|
@@ -11132,7 +10959,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11132
10959
|
display_value?: string | undefined;
|
|
11133
10960
|
are_pins_interchangeable?: boolean | undefined;
|
|
11134
10961
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11135
|
-
do_not_place?: boolean | undefined;
|
|
11136
10962
|
}>, z.ZodObject<{
|
|
11137
10963
|
type: z.ZodLiteral<"source_component">;
|
|
11138
10964
|
source_component_id: z.ZodString;
|
|
@@ -11144,7 +10970,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11144
10970
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11145
10971
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11146
10972
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11147
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11148
10973
|
} & {
|
|
11149
10974
|
ftype: z.ZodLiteral<"simple_fuse">;
|
|
11150
10975
|
current_rating_amps: z.ZodNumber;
|
|
@@ -11154,7 +10979,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11154
10979
|
name: string;
|
|
11155
10980
|
source_component_id: string;
|
|
11156
10981
|
ftype: "simple_fuse";
|
|
11157
|
-
do_not_place: boolean;
|
|
11158
10982
|
current_rating_amps: number;
|
|
11159
10983
|
voltage_rating_volts: number;
|
|
11160
10984
|
subcircuit_id?: string | undefined;
|
|
@@ -11178,7 +11002,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11178
11002
|
display_value?: string | undefined;
|
|
11179
11003
|
are_pins_interchangeable?: boolean | undefined;
|
|
11180
11004
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11181
|
-
do_not_place?: boolean | undefined;
|
|
11182
11005
|
}>, z.ZodObject<{
|
|
11183
11006
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
11184
11007
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11436,7 +11259,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11436
11259
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11437
11260
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11438
11261
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11439
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11440
11262
|
} & {
|
|
11441
11263
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
11442
11264
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11444,7 +11266,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11444
11266
|
name: string;
|
|
11445
11267
|
source_component_id: string;
|
|
11446
11268
|
ftype: "simple_chip";
|
|
11447
|
-
do_not_place: boolean;
|
|
11448
11269
|
subcircuit_id?: string | undefined;
|
|
11449
11270
|
source_group_id?: string | undefined;
|
|
11450
11271
|
manufacturer_part_number?: string | undefined;
|
|
@@ -11464,7 +11285,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11464
11285
|
display_value?: string | undefined;
|
|
11465
11286
|
are_pins_interchangeable?: boolean | undefined;
|
|
11466
11287
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11467
|
-
do_not_place?: boolean | undefined;
|
|
11468
11288
|
}>, z.ZodObject<{
|
|
11469
11289
|
type: z.ZodLiteral<"source_component">;
|
|
11470
11290
|
source_component_id: z.ZodString;
|
|
@@ -11476,7 +11296,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11476
11296
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11477
11297
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11478
11298
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11479
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11480
11299
|
} & {
|
|
11481
11300
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
11482
11301
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11488,7 +11307,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11488
11307
|
name: string;
|
|
11489
11308
|
source_component_id: string;
|
|
11490
11309
|
ftype: "simple_capacitor";
|
|
11491
|
-
do_not_place: boolean;
|
|
11492
11310
|
capacitance: number;
|
|
11493
11311
|
subcircuit_id?: string | undefined;
|
|
11494
11312
|
source_group_id?: string | undefined;
|
|
@@ -11513,7 +11331,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11513
11331
|
display_value?: string | undefined;
|
|
11514
11332
|
are_pins_interchangeable?: boolean | undefined;
|
|
11515
11333
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11516
|
-
do_not_place?: boolean | undefined;
|
|
11517
11334
|
max_voltage_rating?: string | number | undefined;
|
|
11518
11335
|
display_capacitance?: string | undefined;
|
|
11519
11336
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -11528,7 +11345,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11528
11345
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11529
11346
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11530
11347
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11531
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11532
11348
|
} & {
|
|
11533
11349
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11534
11350
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11536,7 +11352,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11536
11352
|
name: string;
|
|
11537
11353
|
source_component_id: string;
|
|
11538
11354
|
ftype: "simple_diode";
|
|
11539
|
-
do_not_place: boolean;
|
|
11540
11355
|
subcircuit_id?: string | undefined;
|
|
11541
11356
|
source_group_id?: string | undefined;
|
|
11542
11357
|
manufacturer_part_number?: string | undefined;
|
|
@@ -11556,7 +11371,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11556
11371
|
display_value?: string | undefined;
|
|
11557
11372
|
are_pins_interchangeable?: boolean | undefined;
|
|
11558
11373
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11559
|
-
do_not_place?: boolean | undefined;
|
|
11560
11374
|
}>, z.ZodObject<{
|
|
11561
11375
|
type: z.ZodLiteral<"source_component">;
|
|
11562
11376
|
source_component_id: z.ZodString;
|
|
@@ -11568,7 +11382,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11568
11382
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11569
11383
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11570
11384
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11571
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11572
11385
|
} & {
|
|
11573
11386
|
ftype: z.ZodLiteral<"simple_led">;
|
|
11574
11387
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -11578,7 +11391,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11578
11391
|
name: string;
|
|
11579
11392
|
source_component_id: string;
|
|
11580
11393
|
ftype: "simple_led";
|
|
11581
|
-
do_not_place: boolean;
|
|
11582
11394
|
subcircuit_id?: string | undefined;
|
|
11583
11395
|
color?: string | undefined;
|
|
11584
11396
|
source_group_id?: string | undefined;
|
|
@@ -11601,7 +11413,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11601
11413
|
display_value?: string | undefined;
|
|
11602
11414
|
are_pins_interchangeable?: boolean | undefined;
|
|
11603
11415
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11604
|
-
do_not_place?: boolean | undefined;
|
|
11605
11416
|
wavelength?: string | undefined;
|
|
11606
11417
|
}>, z.ZodObject<{
|
|
11607
11418
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11614,7 +11425,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11614
11425
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11615
11426
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11616
11427
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11617
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11618
11428
|
} & {
|
|
11619
11429
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
11620
11430
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11624,7 +11434,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11624
11434
|
name: string;
|
|
11625
11435
|
source_component_id: string;
|
|
11626
11436
|
ftype: "simple_resistor";
|
|
11627
|
-
do_not_place: boolean;
|
|
11628
11437
|
resistance: number;
|
|
11629
11438
|
subcircuit_id?: string | undefined;
|
|
11630
11439
|
source_group_id?: string | undefined;
|
|
@@ -11647,7 +11456,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11647
11456
|
display_value?: string | undefined;
|
|
11648
11457
|
are_pins_interchangeable?: boolean | undefined;
|
|
11649
11458
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11650
|
-
do_not_place?: boolean | undefined;
|
|
11651
11459
|
display_resistance?: string | undefined;
|
|
11652
11460
|
}>, z.ZodObject<{
|
|
11653
11461
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11660,7 +11468,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11660
11468
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11661
11469
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11662
11470
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11663
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11664
11471
|
} & {
|
|
11665
11472
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
11666
11473
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11670,7 +11477,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11670
11477
|
source_component_id: string;
|
|
11671
11478
|
voltage: number;
|
|
11672
11479
|
ftype: "simple_power_source";
|
|
11673
|
-
do_not_place: boolean;
|
|
11674
11480
|
subcircuit_id?: string | undefined;
|
|
11675
11481
|
source_group_id?: string | undefined;
|
|
11676
11482
|
manufacturer_part_number?: string | undefined;
|
|
@@ -11691,7 +11497,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11691
11497
|
display_value?: string | undefined;
|
|
11692
11498
|
are_pins_interchangeable?: boolean | undefined;
|
|
11693
11499
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11694
|
-
do_not_place?: boolean | undefined;
|
|
11695
11500
|
}>, z.ZodObject<{
|
|
11696
11501
|
type: z.ZodLiteral<"source_component">;
|
|
11697
11502
|
source_component_id: z.ZodString;
|
|
@@ -11703,7 +11508,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11703
11508
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11704
11509
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11705
11510
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11706
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11707
11511
|
} & {
|
|
11708
11512
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
11709
11513
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -11712,7 +11516,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11712
11516
|
name: string;
|
|
11713
11517
|
source_component_id: string;
|
|
11714
11518
|
ftype: "simple_battery";
|
|
11715
|
-
do_not_place: boolean;
|
|
11716
11519
|
capacity: number;
|
|
11717
11520
|
subcircuit_id?: string | undefined;
|
|
11718
11521
|
source_group_id?: string | undefined;
|
|
@@ -11734,7 +11537,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11734
11537
|
display_value?: string | undefined;
|
|
11735
11538
|
are_pins_interchangeable?: boolean | undefined;
|
|
11736
11539
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11737
|
-
do_not_place?: boolean | undefined;
|
|
11738
11540
|
}>, z.ZodObject<{
|
|
11739
11541
|
type: z.ZodLiteral<"source_component">;
|
|
11740
11542
|
source_component_id: z.ZodString;
|
|
@@ -11746,7 +11548,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11746
11548
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11747
11549
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11748
11550
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11749
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11750
11551
|
} & {
|
|
11751
11552
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
11752
11553
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11756,7 +11557,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11756
11557
|
name: string;
|
|
11757
11558
|
source_component_id: string;
|
|
11758
11559
|
ftype: "simple_inductor";
|
|
11759
|
-
do_not_place: boolean;
|
|
11760
11560
|
inductance: number;
|
|
11761
11561
|
subcircuit_id?: string | undefined;
|
|
11762
11562
|
source_group_id?: string | undefined;
|
|
@@ -11779,7 +11579,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11779
11579
|
display_value?: string | undefined;
|
|
11780
11580
|
are_pins_interchangeable?: boolean | undefined;
|
|
11781
11581
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11782
|
-
do_not_place?: boolean | undefined;
|
|
11783
11582
|
max_current_rating?: number | undefined;
|
|
11784
11583
|
}>, z.ZodObject<{
|
|
11785
11584
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11792,7 +11591,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11792
11591
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11793
11592
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11794
11593
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11795
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11796
11594
|
} & {
|
|
11797
11595
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
11798
11596
|
pin_count: z.ZodNumber;
|
|
@@ -11802,7 +11600,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11802
11600
|
name: string;
|
|
11803
11601
|
source_component_id: string;
|
|
11804
11602
|
ftype: "simple_pin_header";
|
|
11805
|
-
do_not_place: boolean;
|
|
11806
11603
|
pin_count: number;
|
|
11807
11604
|
gender: "male" | "female";
|
|
11808
11605
|
subcircuit_id?: string | undefined;
|
|
@@ -11825,7 +11622,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11825
11622
|
display_value?: string | undefined;
|
|
11826
11623
|
are_pins_interchangeable?: boolean | undefined;
|
|
11827
11624
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11828
|
-
do_not_place?: boolean | undefined;
|
|
11829
11625
|
gender?: "male" | "female" | undefined;
|
|
11830
11626
|
}>, z.ZodObject<{
|
|
11831
11627
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11838,7 +11634,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11838
11634
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11839
11635
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11840
11636
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11841
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11842
11637
|
} & {
|
|
11843
11638
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
11844
11639
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11846,7 +11641,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11846
11641
|
name: string;
|
|
11847
11642
|
source_component_id: string;
|
|
11848
11643
|
ftype: "simple_pinout";
|
|
11849
|
-
do_not_place: boolean;
|
|
11850
11644
|
subcircuit_id?: string | undefined;
|
|
11851
11645
|
source_group_id?: string | undefined;
|
|
11852
11646
|
manufacturer_part_number?: string | undefined;
|
|
@@ -11866,7 +11660,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11866
11660
|
display_value?: string | undefined;
|
|
11867
11661
|
are_pins_interchangeable?: boolean | undefined;
|
|
11868
11662
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11869
|
-
do_not_place?: boolean | undefined;
|
|
11870
11663
|
}>, z.ZodObject<{
|
|
11871
11664
|
type: z.ZodLiteral<"source_component">;
|
|
11872
11665
|
source_component_id: z.ZodString;
|
|
@@ -11878,7 +11671,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11878
11671
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11879
11672
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11880
11673
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11881
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11882
11674
|
} & {
|
|
11883
11675
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
11884
11676
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11889,7 +11681,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11889
11681
|
name: string;
|
|
11890
11682
|
source_component_id: string;
|
|
11891
11683
|
ftype: "simple_resonator";
|
|
11892
|
-
do_not_place: boolean;
|
|
11893
11684
|
frequency: number;
|
|
11894
11685
|
load_capacitance: number;
|
|
11895
11686
|
subcircuit_id?: string | undefined;
|
|
@@ -11914,7 +11705,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11914
11705
|
display_value?: string | undefined;
|
|
11915
11706
|
are_pins_interchangeable?: boolean | undefined;
|
|
11916
11707
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11917
|
-
do_not_place?: boolean | undefined;
|
|
11918
11708
|
equivalent_series_resistance?: string | number | undefined;
|
|
11919
11709
|
}>, z.ZodObject<{
|
|
11920
11710
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11927,7 +11717,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11927
11717
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11928
11718
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11929
11719
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11930
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11931
11720
|
} & {
|
|
11932
11721
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
11933
11722
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11935,7 +11724,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11935
11724
|
name: string;
|
|
11936
11725
|
source_component_id: string;
|
|
11937
11726
|
ftype: "simple_switch";
|
|
11938
|
-
do_not_place: boolean;
|
|
11939
11727
|
subcircuit_id?: string | undefined;
|
|
11940
11728
|
source_group_id?: string | undefined;
|
|
11941
11729
|
manufacturer_part_number?: string | undefined;
|
|
@@ -11955,7 +11743,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11955
11743
|
display_value?: string | undefined;
|
|
11956
11744
|
are_pins_interchangeable?: boolean | undefined;
|
|
11957
11745
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11958
|
-
do_not_place?: boolean | undefined;
|
|
11959
11746
|
}>, z.ZodObject<{
|
|
11960
11747
|
type: z.ZodLiteral<"source_component">;
|
|
11961
11748
|
source_component_id: z.ZodString;
|
|
@@ -11967,7 +11754,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11967
11754
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11968
11755
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11969
11756
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11970
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11971
11757
|
} & {
|
|
11972
11758
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
11973
11759
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -11976,7 +11762,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11976
11762
|
name: string;
|
|
11977
11763
|
source_component_id: string;
|
|
11978
11764
|
ftype: "simple_transistor";
|
|
11979
|
-
do_not_place: boolean;
|
|
11980
11765
|
transistor_type: "npn" | "pnp";
|
|
11981
11766
|
subcircuit_id?: string | undefined;
|
|
11982
11767
|
source_group_id?: string | undefined;
|
|
@@ -11998,7 +11783,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11998
11783
|
display_value?: string | undefined;
|
|
11999
11784
|
are_pins_interchangeable?: boolean | undefined;
|
|
12000
11785
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12001
|
-
do_not_place?: boolean | undefined;
|
|
12002
11786
|
}>, z.ZodObject<{
|
|
12003
11787
|
type: z.ZodLiteral<"source_component">;
|
|
12004
11788
|
source_component_id: z.ZodString;
|
|
@@ -12010,7 +11794,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12010
11794
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12011
11795
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12012
11796
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12013
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12014
11797
|
} & {
|
|
12015
11798
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
12016
11799
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -12024,7 +11807,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12024
11807
|
name: string;
|
|
12025
11808
|
source_component_id: string;
|
|
12026
11809
|
ftype: "simple_test_point";
|
|
12027
|
-
do_not_place: boolean;
|
|
12028
11810
|
width?: string | number | undefined;
|
|
12029
11811
|
height?: string | number | undefined;
|
|
12030
11812
|
subcircuit_id?: string | undefined;
|
|
@@ -12054,7 +11836,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12054
11836
|
display_value?: string | undefined;
|
|
12055
11837
|
are_pins_interchangeable?: boolean | undefined;
|
|
12056
11838
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12057
|
-
do_not_place?: boolean | undefined;
|
|
12058
11839
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
12059
11840
|
pad_diameter?: string | number | undefined;
|
|
12060
11841
|
}>, z.ZodObject<{
|
|
@@ -12068,7 +11849,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12068
11849
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12069
11850
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12070
11851
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12071
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12072
11852
|
} & {
|
|
12073
11853
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
12074
11854
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -12078,7 +11858,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12078
11858
|
name: string;
|
|
12079
11859
|
source_component_id: string;
|
|
12080
11860
|
ftype: "simple_mosfet";
|
|
12081
|
-
do_not_place: boolean;
|
|
12082
11861
|
channel_type: "n" | "p";
|
|
12083
11862
|
mosfet_mode: "enhancement" | "depletion";
|
|
12084
11863
|
subcircuit_id?: string | undefined;
|
|
@@ -12102,7 +11881,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12102
11881
|
display_value?: string | undefined;
|
|
12103
11882
|
are_pins_interchangeable?: boolean | undefined;
|
|
12104
11883
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12105
|
-
do_not_place?: boolean | undefined;
|
|
12106
11884
|
}>, z.ZodObject<{
|
|
12107
11885
|
type: z.ZodLiteral<"source_component">;
|
|
12108
11886
|
source_component_id: z.ZodString;
|
|
@@ -12114,7 +11892,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12114
11892
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12115
11893
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12116
11894
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12117
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12118
11895
|
} & {
|
|
12119
11896
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
12120
11897
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12123,7 +11900,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12123
11900
|
name: string;
|
|
12124
11901
|
source_component_id: string;
|
|
12125
11902
|
ftype: "simple_potentiometer";
|
|
12126
|
-
do_not_place: boolean;
|
|
12127
11903
|
max_resistance: number;
|
|
12128
11904
|
subcircuit_id?: string | undefined;
|
|
12129
11905
|
source_group_id?: string | undefined;
|
|
@@ -12145,7 +11921,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12145
11921
|
display_value?: string | undefined;
|
|
12146
11922
|
are_pins_interchangeable?: boolean | undefined;
|
|
12147
11923
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12148
|
-
do_not_place?: boolean | undefined;
|
|
12149
11924
|
}>, z.ZodObject<{
|
|
12150
11925
|
type: z.ZodLiteral<"source_component">;
|
|
12151
11926
|
source_component_id: z.ZodString;
|
|
@@ -12157,7 +11932,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12157
11932
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12158
11933
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12159
11934
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12160
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12161
11935
|
} & {
|
|
12162
11936
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
12163
11937
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12165,7 +11939,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12165
11939
|
name: string;
|
|
12166
11940
|
source_component_id: string;
|
|
12167
11941
|
ftype: "simple_push_button";
|
|
12168
|
-
do_not_place: boolean;
|
|
12169
11942
|
subcircuit_id?: string | undefined;
|
|
12170
11943
|
source_group_id?: string | undefined;
|
|
12171
11944
|
manufacturer_part_number?: string | undefined;
|
|
@@ -12185,7 +11958,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12185
11958
|
display_value?: string | undefined;
|
|
12186
11959
|
are_pins_interchangeable?: boolean | undefined;
|
|
12187
11960
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12188
|
-
do_not_place?: boolean | undefined;
|
|
12189
11961
|
}>, z.ZodObject<{
|
|
12190
11962
|
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
12191
11963
|
source_pcb_ground_plane_id: z.ZodString;
|
|
@@ -12323,6 +12095,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12323
12095
|
rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12324
12096
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12325
12097
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12098
|
+
do_not_place: z.ZodOptional<z.ZodBoolean>;
|
|
12326
12099
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12327
12100
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
12328
12101
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12337,6 +12110,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12337
12110
|
};
|
|
12338
12111
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12339
12112
|
rotation: number;
|
|
12113
|
+
do_not_place?: boolean | undefined;
|
|
12340
12114
|
subcircuit_id?: string | undefined;
|
|
12341
12115
|
pcb_group_id?: string | undefined;
|
|
12342
12116
|
}, {
|
|
@@ -12353,6 +12127,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12353
12127
|
};
|
|
12354
12128
|
rotation: string | number;
|
|
12355
12129
|
pcb_component_id?: string | undefined;
|
|
12130
|
+
do_not_place?: boolean | undefined;
|
|
12356
12131
|
subcircuit_id?: string | undefined;
|
|
12357
12132
|
pcb_group_id?: string | undefined;
|
|
12358
12133
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
@@ -16779,7 +16554,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16779
16554
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16780
16555
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16781
16556
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16782
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16783
16557
|
} & {
|
|
16784
16558
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
16785
16559
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16789,7 +16563,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16789
16563
|
name: string;
|
|
16790
16564
|
source_component_id: string;
|
|
16791
16565
|
ftype: "simple_resistor";
|
|
16792
|
-
do_not_place: boolean;
|
|
16793
16566
|
resistance: number;
|
|
16794
16567
|
subcircuit_id?: string | undefined;
|
|
16795
16568
|
source_group_id?: string | undefined;
|
|
@@ -16812,7 +16585,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16812
16585
|
display_value?: string | undefined;
|
|
16813
16586
|
are_pins_interchangeable?: boolean | undefined;
|
|
16814
16587
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
16815
|
-
do_not_place?: boolean | undefined;
|
|
16816
16588
|
display_resistance?: string | undefined;
|
|
16817
16589
|
}>, z.ZodObject<{
|
|
16818
16590
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -16825,7 +16597,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16825
16597
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16826
16598
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16827
16599
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16828
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16829
16600
|
} & {
|
|
16830
16601
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
16831
16602
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -16837,7 +16608,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16837
16608
|
name: string;
|
|
16838
16609
|
source_component_id: string;
|
|
16839
16610
|
ftype: "simple_capacitor";
|
|
16840
|
-
do_not_place: boolean;
|
|
16841
16611
|
capacitance: number;
|
|
16842
16612
|
subcircuit_id?: string | undefined;
|
|
16843
16613
|
source_group_id?: string | undefined;
|
|
@@ -16862,7 +16632,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16862
16632
|
display_value?: string | undefined;
|
|
16863
16633
|
are_pins_interchangeable?: boolean | undefined;
|
|
16864
16634
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
16865
|
-
do_not_place?: boolean | undefined;
|
|
16866
16635
|
max_voltage_rating?: string | number | undefined;
|
|
16867
16636
|
display_capacitance?: string | undefined;
|
|
16868
16637
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -16877,7 +16646,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16877
16646
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16878
16647
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16879
16648
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16880
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16881
16649
|
} & {
|
|
16882
16650
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
16883
16651
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16885,7 +16653,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16885
16653
|
name: string;
|
|
16886
16654
|
source_component_id: string;
|
|
16887
16655
|
ftype: "simple_diode";
|
|
16888
|
-
do_not_place: boolean;
|
|
16889
16656
|
subcircuit_id?: string | undefined;
|
|
16890
16657
|
source_group_id?: string | undefined;
|
|
16891
16658
|
manufacturer_part_number?: string | undefined;
|
|
@@ -16905,7 +16672,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16905
16672
|
display_value?: string | undefined;
|
|
16906
16673
|
are_pins_interchangeable?: boolean | undefined;
|
|
16907
16674
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
16908
|
-
do_not_place?: boolean | undefined;
|
|
16909
16675
|
}>, z.ZodObject<{
|
|
16910
16676
|
type: z.ZodLiteral<"source_component">;
|
|
16911
16677
|
source_component_id: z.ZodString;
|
|
@@ -16917,7 +16683,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16917
16683
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16918
16684
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16919
16685
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16920
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16921
16686
|
} & {
|
|
16922
16687
|
ftype: z.ZodLiteral<"simple_led">;
|
|
16923
16688
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -16927,7 +16692,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16927
16692
|
name: string;
|
|
16928
16693
|
source_component_id: string;
|
|
16929
16694
|
ftype: "simple_led";
|
|
16930
|
-
do_not_place: boolean;
|
|
16931
16695
|
subcircuit_id?: string | undefined;
|
|
16932
16696
|
color?: string | undefined;
|
|
16933
16697
|
source_group_id?: string | undefined;
|
|
@@ -16950,7 +16714,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16950
16714
|
display_value?: string | undefined;
|
|
16951
16715
|
are_pins_interchangeable?: boolean | undefined;
|
|
16952
16716
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
16953
|
-
do_not_place?: boolean | undefined;
|
|
16954
16717
|
wavelength?: string | undefined;
|
|
16955
16718
|
}>, z.ZodObject<{
|
|
16956
16719
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -16963,7 +16726,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16963
16726
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
16964
16727
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
16965
16728
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16966
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
16967
16729
|
} & {
|
|
16968
16730
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
16969
16731
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16971,7 +16733,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16971
16733
|
name: string;
|
|
16972
16734
|
source_component_id: string;
|
|
16973
16735
|
ftype: "simple_ground";
|
|
16974
|
-
do_not_place: boolean;
|
|
16975
16736
|
subcircuit_id?: string | undefined;
|
|
16976
16737
|
source_group_id?: string | undefined;
|
|
16977
16738
|
manufacturer_part_number?: string | undefined;
|
|
@@ -16991,7 +16752,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16991
16752
|
display_value?: string | undefined;
|
|
16992
16753
|
are_pins_interchangeable?: boolean | undefined;
|
|
16993
16754
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
16994
|
-
do_not_place?: boolean | undefined;
|
|
16995
16755
|
}>, z.ZodObject<{
|
|
16996
16756
|
type: z.ZodLiteral<"source_component">;
|
|
16997
16757
|
source_component_id: z.ZodString;
|
|
@@ -17003,7 +16763,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17003
16763
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17004
16764
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17005
16765
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17006
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17007
16766
|
} & {
|
|
17008
16767
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
17009
16768
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17011,7 +16770,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17011
16770
|
name: string;
|
|
17012
16771
|
source_component_id: string;
|
|
17013
16772
|
ftype: "simple_chip";
|
|
17014
|
-
do_not_place: boolean;
|
|
17015
16773
|
subcircuit_id?: string | undefined;
|
|
17016
16774
|
source_group_id?: string | undefined;
|
|
17017
16775
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17031,7 +16789,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17031
16789
|
display_value?: string | undefined;
|
|
17032
16790
|
are_pins_interchangeable?: boolean | undefined;
|
|
17033
16791
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17034
|
-
do_not_place?: boolean | undefined;
|
|
17035
16792
|
}>, z.ZodObject<{
|
|
17036
16793
|
type: z.ZodLiteral<"source_component">;
|
|
17037
16794
|
source_component_id: z.ZodString;
|
|
@@ -17043,7 +16800,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17043
16800
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17044
16801
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17045
16802
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17046
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17047
16803
|
} & {
|
|
17048
16804
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
17049
16805
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -17053,7 +16809,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17053
16809
|
source_component_id: string;
|
|
17054
16810
|
voltage: number;
|
|
17055
16811
|
ftype: "simple_power_source";
|
|
17056
|
-
do_not_place: boolean;
|
|
17057
16812
|
subcircuit_id?: string | undefined;
|
|
17058
16813
|
source_group_id?: string | undefined;
|
|
17059
16814
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17074,7 +16829,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17074
16829
|
display_value?: string | undefined;
|
|
17075
16830
|
are_pins_interchangeable?: boolean | undefined;
|
|
17076
16831
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17077
|
-
do_not_place?: boolean | undefined;
|
|
17078
16832
|
}>, z.ZodObject<{
|
|
17079
16833
|
type: z.ZodLiteral<"source_component">;
|
|
17080
16834
|
source_component_id: z.ZodString;
|
|
@@ -17086,7 +16840,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17086
16840
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17087
16841
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17088
16842
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17089
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17090
16843
|
} & {
|
|
17091
16844
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
17092
16845
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -17095,7 +16848,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17095
16848
|
name: string;
|
|
17096
16849
|
source_component_id: string;
|
|
17097
16850
|
ftype: "simple_battery";
|
|
17098
|
-
do_not_place: boolean;
|
|
17099
16851
|
capacity: number;
|
|
17100
16852
|
subcircuit_id?: string | undefined;
|
|
17101
16853
|
source_group_id?: string | undefined;
|
|
@@ -17117,7 +16869,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17117
16869
|
display_value?: string | undefined;
|
|
17118
16870
|
are_pins_interchangeable?: boolean | undefined;
|
|
17119
16871
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17120
|
-
do_not_place?: boolean | undefined;
|
|
17121
16872
|
}>, z.ZodObject<{
|
|
17122
16873
|
type: z.ZodLiteral<"source_component">;
|
|
17123
16874
|
source_component_id: z.ZodString;
|
|
@@ -17129,7 +16880,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17129
16880
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17130
16881
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17131
16882
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17132
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17133
16883
|
} & {
|
|
17134
16884
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
17135
16885
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -17139,7 +16889,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17139
16889
|
name: string;
|
|
17140
16890
|
source_component_id: string;
|
|
17141
16891
|
ftype: "simple_inductor";
|
|
17142
|
-
do_not_place: boolean;
|
|
17143
16892
|
inductance: number;
|
|
17144
16893
|
subcircuit_id?: string | undefined;
|
|
17145
16894
|
source_group_id?: string | undefined;
|
|
@@ -17162,7 +16911,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17162
16911
|
display_value?: string | undefined;
|
|
17163
16912
|
are_pins_interchangeable?: boolean | undefined;
|
|
17164
16913
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17165
|
-
do_not_place?: boolean | undefined;
|
|
17166
16914
|
max_current_rating?: number | undefined;
|
|
17167
16915
|
}>, z.ZodObject<{
|
|
17168
16916
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -17175,7 +16923,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17175
16923
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17176
16924
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17177
16925
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17178
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17179
16926
|
} & {
|
|
17180
16927
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
17181
16928
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17183,7 +16930,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17183
16930
|
name: string;
|
|
17184
16931
|
source_component_id: string;
|
|
17185
16932
|
ftype: "simple_push_button";
|
|
17186
|
-
do_not_place: boolean;
|
|
17187
16933
|
subcircuit_id?: string | undefined;
|
|
17188
16934
|
source_group_id?: string | undefined;
|
|
17189
16935
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17203,7 +16949,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17203
16949
|
display_value?: string | undefined;
|
|
17204
16950
|
are_pins_interchangeable?: boolean | undefined;
|
|
17205
16951
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17206
|
-
do_not_place?: boolean | undefined;
|
|
17207
16952
|
}>, z.ZodObject<{
|
|
17208
16953
|
type: z.ZodLiteral<"source_component">;
|
|
17209
16954
|
source_component_id: z.ZodString;
|
|
@@ -17215,7 +16960,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17215
16960
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17216
16961
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17217
16962
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17218
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17219
16963
|
} & {
|
|
17220
16964
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
17221
16965
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -17224,7 +16968,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17224
16968
|
name: string;
|
|
17225
16969
|
source_component_id: string;
|
|
17226
16970
|
ftype: "simple_potentiometer";
|
|
17227
|
-
do_not_place: boolean;
|
|
17228
16971
|
max_resistance: number;
|
|
17229
16972
|
subcircuit_id?: string | undefined;
|
|
17230
16973
|
source_group_id?: string | undefined;
|
|
@@ -17246,7 +16989,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17246
16989
|
display_value?: string | undefined;
|
|
17247
16990
|
are_pins_interchangeable?: boolean | undefined;
|
|
17248
16991
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17249
|
-
do_not_place?: boolean | undefined;
|
|
17250
16992
|
}>, z.ZodObject<{
|
|
17251
16993
|
type: z.ZodLiteral<"source_component">;
|
|
17252
16994
|
source_component_id: z.ZodString;
|
|
@@ -17258,7 +17000,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17258
17000
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17259
17001
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17260
17002
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17261
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17262
17003
|
} & {
|
|
17263
17004
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
17264
17005
|
frequency: z.ZodNumber;
|
|
@@ -17268,7 +17009,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17268
17009
|
name: string;
|
|
17269
17010
|
source_component_id: string;
|
|
17270
17011
|
ftype: "simple_crystal";
|
|
17271
|
-
do_not_place: boolean;
|
|
17272
17012
|
frequency: number;
|
|
17273
17013
|
subcircuit_id?: string | undefined;
|
|
17274
17014
|
source_group_id?: string | undefined;
|
|
@@ -17291,7 +17031,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17291
17031
|
display_value?: string | undefined;
|
|
17292
17032
|
are_pins_interchangeable?: boolean | undefined;
|
|
17293
17033
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17294
|
-
do_not_place?: boolean | undefined;
|
|
17295
17034
|
load_capacitance?: number | undefined;
|
|
17296
17035
|
}>, z.ZodObject<{
|
|
17297
17036
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -17304,7 +17043,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17304
17043
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17305
17044
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17306
17045
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17307
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17308
17046
|
} & {
|
|
17309
17047
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
17310
17048
|
pin_count: z.ZodNumber;
|
|
@@ -17314,7 +17052,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17314
17052
|
name: string;
|
|
17315
17053
|
source_component_id: string;
|
|
17316
17054
|
ftype: "simple_pin_header";
|
|
17317
|
-
do_not_place: boolean;
|
|
17318
17055
|
pin_count: number;
|
|
17319
17056
|
gender: "male" | "female";
|
|
17320
17057
|
subcircuit_id?: string | undefined;
|
|
@@ -17337,7 +17074,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17337
17074
|
display_value?: string | undefined;
|
|
17338
17075
|
are_pins_interchangeable?: boolean | undefined;
|
|
17339
17076
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17340
|
-
do_not_place?: boolean | undefined;
|
|
17341
17077
|
gender?: "male" | "female" | undefined;
|
|
17342
17078
|
}>, z.ZodObject<{
|
|
17343
17079
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -17350,7 +17086,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17350
17086
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17351
17087
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17352
17088
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17353
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17354
17089
|
} & {
|
|
17355
17090
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
17356
17091
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17358,7 +17093,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17358
17093
|
name: string;
|
|
17359
17094
|
source_component_id: string;
|
|
17360
17095
|
ftype: "simple_pinout";
|
|
17361
|
-
do_not_place: boolean;
|
|
17362
17096
|
subcircuit_id?: string | undefined;
|
|
17363
17097
|
source_group_id?: string | undefined;
|
|
17364
17098
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17378,7 +17112,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17378
17112
|
display_value?: string | undefined;
|
|
17379
17113
|
are_pins_interchangeable?: boolean | undefined;
|
|
17380
17114
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17381
|
-
do_not_place?: boolean | undefined;
|
|
17382
17115
|
}>, z.ZodObject<{
|
|
17383
17116
|
type: z.ZodLiteral<"source_component">;
|
|
17384
17117
|
source_component_id: z.ZodString;
|
|
@@ -17390,7 +17123,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17390
17123
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17391
17124
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17392
17125
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17393
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17394
17126
|
} & {
|
|
17395
17127
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
17396
17128
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -17401,7 +17133,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17401
17133
|
name: string;
|
|
17402
17134
|
source_component_id: string;
|
|
17403
17135
|
ftype: "simple_resonator";
|
|
17404
|
-
do_not_place: boolean;
|
|
17405
17136
|
frequency: number;
|
|
17406
17137
|
load_capacitance: number;
|
|
17407
17138
|
subcircuit_id?: string | undefined;
|
|
@@ -17426,7 +17157,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17426
17157
|
display_value?: string | undefined;
|
|
17427
17158
|
are_pins_interchangeable?: boolean | undefined;
|
|
17428
17159
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17429
|
-
do_not_place?: boolean | undefined;
|
|
17430
17160
|
equivalent_series_resistance?: string | number | undefined;
|
|
17431
17161
|
}>, z.ZodObject<{
|
|
17432
17162
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -17439,7 +17169,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17439
17169
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17440
17170
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17441
17171
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17442
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17443
17172
|
} & {
|
|
17444
17173
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
17445
17174
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17447,7 +17176,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17447
17176
|
name: string;
|
|
17448
17177
|
source_component_id: string;
|
|
17449
17178
|
ftype: "simple_switch";
|
|
17450
|
-
do_not_place: boolean;
|
|
17451
17179
|
subcircuit_id?: string | undefined;
|
|
17452
17180
|
source_group_id?: string | undefined;
|
|
17453
17181
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17467,7 +17195,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17467
17195
|
display_value?: string | undefined;
|
|
17468
17196
|
are_pins_interchangeable?: boolean | undefined;
|
|
17469
17197
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17470
|
-
do_not_place?: boolean | undefined;
|
|
17471
17198
|
}>, z.ZodObject<{
|
|
17472
17199
|
type: z.ZodLiteral<"source_component">;
|
|
17473
17200
|
source_component_id: z.ZodString;
|
|
@@ -17479,7 +17206,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17479
17206
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17480
17207
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17481
17208
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17482
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17483
17209
|
} & {
|
|
17484
17210
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
17485
17211
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -17488,7 +17214,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17488
17214
|
name: string;
|
|
17489
17215
|
source_component_id: string;
|
|
17490
17216
|
ftype: "simple_transistor";
|
|
17491
|
-
do_not_place: boolean;
|
|
17492
17217
|
transistor_type: "npn" | "pnp";
|
|
17493
17218
|
subcircuit_id?: string | undefined;
|
|
17494
17219
|
source_group_id?: string | undefined;
|
|
@@ -17510,7 +17235,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17510
17235
|
display_value?: string | undefined;
|
|
17511
17236
|
are_pins_interchangeable?: boolean | undefined;
|
|
17512
17237
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17513
|
-
do_not_place?: boolean | undefined;
|
|
17514
17238
|
}>, z.ZodObject<{
|
|
17515
17239
|
type: z.ZodLiteral<"source_component">;
|
|
17516
17240
|
source_component_id: z.ZodString;
|
|
@@ -17522,7 +17246,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17522
17246
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17523
17247
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17524
17248
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17525
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17526
17249
|
} & {
|
|
17527
17250
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
17528
17251
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -17536,7 +17259,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17536
17259
|
name: string;
|
|
17537
17260
|
source_component_id: string;
|
|
17538
17261
|
ftype: "simple_test_point";
|
|
17539
|
-
do_not_place: boolean;
|
|
17540
17262
|
width?: string | number | undefined;
|
|
17541
17263
|
height?: string | number | undefined;
|
|
17542
17264
|
subcircuit_id?: string | undefined;
|
|
@@ -17566,7 +17288,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17566
17288
|
display_value?: string | undefined;
|
|
17567
17289
|
are_pins_interchangeable?: boolean | undefined;
|
|
17568
17290
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17569
|
-
do_not_place?: boolean | undefined;
|
|
17570
17291
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
17571
17292
|
pad_diameter?: string | number | undefined;
|
|
17572
17293
|
}>, z.ZodObject<{
|
|
@@ -17580,7 +17301,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17580
17301
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17581
17302
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17582
17303
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17583
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17584
17304
|
} & {
|
|
17585
17305
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
17586
17306
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -17590,7 +17310,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17590
17310
|
name: string;
|
|
17591
17311
|
source_component_id: string;
|
|
17592
17312
|
ftype: "simple_mosfet";
|
|
17593
|
-
do_not_place: boolean;
|
|
17594
17313
|
channel_type: "n" | "p";
|
|
17595
17314
|
mosfet_mode: "enhancement" | "depletion";
|
|
17596
17315
|
subcircuit_id?: string | undefined;
|
|
@@ -17614,7 +17333,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17614
17333
|
display_value?: string | undefined;
|
|
17615
17334
|
are_pins_interchangeable?: boolean | undefined;
|
|
17616
17335
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17617
|
-
do_not_place?: boolean | undefined;
|
|
17618
17336
|
}>, z.ZodObject<{
|
|
17619
17337
|
type: z.ZodLiteral<"source_component">;
|
|
17620
17338
|
source_component_id: z.ZodString;
|
|
@@ -17626,7 +17344,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17626
17344
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17627
17345
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17628
17346
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17629
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17630
17347
|
} & {
|
|
17631
17348
|
ftype: z.ZodLiteral<"simple_fuse">;
|
|
17632
17349
|
current_rating_amps: z.ZodNumber;
|
|
@@ -17636,7 +17353,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17636
17353
|
name: string;
|
|
17637
17354
|
source_component_id: string;
|
|
17638
17355
|
ftype: "simple_fuse";
|
|
17639
|
-
do_not_place: boolean;
|
|
17640
17356
|
current_rating_amps: number;
|
|
17641
17357
|
voltage_rating_volts: number;
|
|
17642
17358
|
subcircuit_id?: string | undefined;
|
|
@@ -17660,7 +17376,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17660
17376
|
display_value?: string | undefined;
|
|
17661
17377
|
are_pins_interchangeable?: boolean | undefined;
|
|
17662
17378
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17663
|
-
do_not_place?: boolean | undefined;
|
|
17664
17379
|
}>, z.ZodObject<{
|
|
17665
17380
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
17666
17381
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -17918,7 +17633,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17918
17633
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17919
17634
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17920
17635
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17921
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17922
17636
|
} & {
|
|
17923
17637
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
17924
17638
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17926,7 +17640,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17926
17640
|
name: string;
|
|
17927
17641
|
source_component_id: string;
|
|
17928
17642
|
ftype: "simple_chip";
|
|
17929
|
-
do_not_place: boolean;
|
|
17930
17643
|
subcircuit_id?: string | undefined;
|
|
17931
17644
|
source_group_id?: string | undefined;
|
|
17932
17645
|
manufacturer_part_number?: string | undefined;
|
|
@@ -17946,7 +17659,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17946
17659
|
display_value?: string | undefined;
|
|
17947
17660
|
are_pins_interchangeable?: boolean | undefined;
|
|
17948
17661
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17949
|
-
do_not_place?: boolean | undefined;
|
|
17950
17662
|
}>, z.ZodObject<{
|
|
17951
17663
|
type: z.ZodLiteral<"source_component">;
|
|
17952
17664
|
source_component_id: z.ZodString;
|
|
@@ -17958,7 +17670,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17958
17670
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
17959
17671
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
17960
17672
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
17961
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
17962
17673
|
} & {
|
|
17963
17674
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
17964
17675
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -17970,7 +17681,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17970
17681
|
name: string;
|
|
17971
17682
|
source_component_id: string;
|
|
17972
17683
|
ftype: "simple_capacitor";
|
|
17973
|
-
do_not_place: boolean;
|
|
17974
17684
|
capacitance: number;
|
|
17975
17685
|
subcircuit_id?: string | undefined;
|
|
17976
17686
|
source_group_id?: string | undefined;
|
|
@@ -17995,7 +17705,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17995
17705
|
display_value?: string | undefined;
|
|
17996
17706
|
are_pins_interchangeable?: boolean | undefined;
|
|
17997
17707
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
17998
|
-
do_not_place?: boolean | undefined;
|
|
17999
17708
|
max_voltage_rating?: string | number | undefined;
|
|
18000
17709
|
display_capacitance?: string | undefined;
|
|
18001
17710
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -18010,7 +17719,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18010
17719
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18011
17720
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18012
17721
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18013
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18014
17722
|
} & {
|
|
18015
17723
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
18016
17724
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18018,7 +17726,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18018
17726
|
name: string;
|
|
18019
17727
|
source_component_id: string;
|
|
18020
17728
|
ftype: "simple_diode";
|
|
18021
|
-
do_not_place: boolean;
|
|
18022
17729
|
subcircuit_id?: string | undefined;
|
|
18023
17730
|
source_group_id?: string | undefined;
|
|
18024
17731
|
manufacturer_part_number?: string | undefined;
|
|
@@ -18038,7 +17745,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18038
17745
|
display_value?: string | undefined;
|
|
18039
17746
|
are_pins_interchangeable?: boolean | undefined;
|
|
18040
17747
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18041
|
-
do_not_place?: boolean | undefined;
|
|
18042
17748
|
}>, z.ZodObject<{
|
|
18043
17749
|
type: z.ZodLiteral<"source_component">;
|
|
18044
17750
|
source_component_id: z.ZodString;
|
|
@@ -18050,7 +17756,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18050
17756
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18051
17757
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18052
17758
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18053
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18054
17759
|
} & {
|
|
18055
17760
|
ftype: z.ZodLiteral<"simple_led">;
|
|
18056
17761
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -18060,7 +17765,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18060
17765
|
name: string;
|
|
18061
17766
|
source_component_id: string;
|
|
18062
17767
|
ftype: "simple_led";
|
|
18063
|
-
do_not_place: boolean;
|
|
18064
17768
|
subcircuit_id?: string | undefined;
|
|
18065
17769
|
color?: string | undefined;
|
|
18066
17770
|
source_group_id?: string | undefined;
|
|
@@ -18083,7 +17787,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18083
17787
|
display_value?: string | undefined;
|
|
18084
17788
|
are_pins_interchangeable?: boolean | undefined;
|
|
18085
17789
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18086
|
-
do_not_place?: boolean | undefined;
|
|
18087
17790
|
wavelength?: string | undefined;
|
|
18088
17791
|
}>, z.ZodObject<{
|
|
18089
17792
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -18096,7 +17799,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18096
17799
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18097
17800
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18098
17801
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18099
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18100
17802
|
} & {
|
|
18101
17803
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
18102
17804
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -18106,7 +17808,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18106
17808
|
name: string;
|
|
18107
17809
|
source_component_id: string;
|
|
18108
17810
|
ftype: "simple_resistor";
|
|
18109
|
-
do_not_place: boolean;
|
|
18110
17811
|
resistance: number;
|
|
18111
17812
|
subcircuit_id?: string | undefined;
|
|
18112
17813
|
source_group_id?: string | undefined;
|
|
@@ -18129,7 +17830,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18129
17830
|
display_value?: string | undefined;
|
|
18130
17831
|
are_pins_interchangeable?: boolean | undefined;
|
|
18131
17832
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18132
|
-
do_not_place?: boolean | undefined;
|
|
18133
17833
|
display_resistance?: string | undefined;
|
|
18134
17834
|
}>, z.ZodObject<{
|
|
18135
17835
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -18142,7 +17842,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18142
17842
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18143
17843
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18144
17844
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18145
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18146
17845
|
} & {
|
|
18147
17846
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
18148
17847
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -18152,7 +17851,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18152
17851
|
source_component_id: string;
|
|
18153
17852
|
voltage: number;
|
|
18154
17853
|
ftype: "simple_power_source";
|
|
18155
|
-
do_not_place: boolean;
|
|
18156
17854
|
subcircuit_id?: string | undefined;
|
|
18157
17855
|
source_group_id?: string | undefined;
|
|
18158
17856
|
manufacturer_part_number?: string | undefined;
|
|
@@ -18173,7 +17871,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18173
17871
|
display_value?: string | undefined;
|
|
18174
17872
|
are_pins_interchangeable?: boolean | undefined;
|
|
18175
17873
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18176
|
-
do_not_place?: boolean | undefined;
|
|
18177
17874
|
}>, z.ZodObject<{
|
|
18178
17875
|
type: z.ZodLiteral<"source_component">;
|
|
18179
17876
|
source_component_id: z.ZodString;
|
|
@@ -18185,7 +17882,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18185
17882
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18186
17883
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18187
17884
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18188
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18189
17885
|
} & {
|
|
18190
17886
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
18191
17887
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -18194,7 +17890,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18194
17890
|
name: string;
|
|
18195
17891
|
source_component_id: string;
|
|
18196
17892
|
ftype: "simple_battery";
|
|
18197
|
-
do_not_place: boolean;
|
|
18198
17893
|
capacity: number;
|
|
18199
17894
|
subcircuit_id?: string | undefined;
|
|
18200
17895
|
source_group_id?: string | undefined;
|
|
@@ -18216,7 +17911,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18216
17911
|
display_value?: string | undefined;
|
|
18217
17912
|
are_pins_interchangeable?: boolean | undefined;
|
|
18218
17913
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18219
|
-
do_not_place?: boolean | undefined;
|
|
18220
17914
|
}>, z.ZodObject<{
|
|
18221
17915
|
type: z.ZodLiteral<"source_component">;
|
|
18222
17916
|
source_component_id: z.ZodString;
|
|
@@ -18228,7 +17922,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18228
17922
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18229
17923
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18230
17924
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18231
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18232
17925
|
} & {
|
|
18233
17926
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
18234
17927
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -18238,7 +17931,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18238
17931
|
name: string;
|
|
18239
17932
|
source_component_id: string;
|
|
18240
17933
|
ftype: "simple_inductor";
|
|
18241
|
-
do_not_place: boolean;
|
|
18242
17934
|
inductance: number;
|
|
18243
17935
|
subcircuit_id?: string | undefined;
|
|
18244
17936
|
source_group_id?: string | undefined;
|
|
@@ -18261,7 +17953,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18261
17953
|
display_value?: string | undefined;
|
|
18262
17954
|
are_pins_interchangeable?: boolean | undefined;
|
|
18263
17955
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18264
|
-
do_not_place?: boolean | undefined;
|
|
18265
17956
|
max_current_rating?: number | undefined;
|
|
18266
17957
|
}>, z.ZodObject<{
|
|
18267
17958
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -18274,7 +17965,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18274
17965
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18275
17966
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18276
17967
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18277
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18278
17968
|
} & {
|
|
18279
17969
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
18280
17970
|
pin_count: z.ZodNumber;
|
|
@@ -18284,7 +17974,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18284
17974
|
name: string;
|
|
18285
17975
|
source_component_id: string;
|
|
18286
17976
|
ftype: "simple_pin_header";
|
|
18287
|
-
do_not_place: boolean;
|
|
18288
17977
|
pin_count: number;
|
|
18289
17978
|
gender: "male" | "female";
|
|
18290
17979
|
subcircuit_id?: string | undefined;
|
|
@@ -18307,7 +17996,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18307
17996
|
display_value?: string | undefined;
|
|
18308
17997
|
are_pins_interchangeable?: boolean | undefined;
|
|
18309
17998
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18310
|
-
do_not_place?: boolean | undefined;
|
|
18311
17999
|
gender?: "male" | "female" | undefined;
|
|
18312
18000
|
}>, z.ZodObject<{
|
|
18313
18001
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -18320,7 +18008,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18320
18008
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18321
18009
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18322
18010
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18323
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18324
18011
|
} & {
|
|
18325
18012
|
ftype: z.ZodLiteral<"simple_pinout">;
|
|
18326
18013
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18328,7 +18015,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18328
18015
|
name: string;
|
|
18329
18016
|
source_component_id: string;
|
|
18330
18017
|
ftype: "simple_pinout";
|
|
18331
|
-
do_not_place: boolean;
|
|
18332
18018
|
subcircuit_id?: string | undefined;
|
|
18333
18019
|
source_group_id?: string | undefined;
|
|
18334
18020
|
manufacturer_part_number?: string | undefined;
|
|
@@ -18348,7 +18034,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18348
18034
|
display_value?: string | undefined;
|
|
18349
18035
|
are_pins_interchangeable?: boolean | undefined;
|
|
18350
18036
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18351
|
-
do_not_place?: boolean | undefined;
|
|
18352
18037
|
}>, z.ZodObject<{
|
|
18353
18038
|
type: z.ZodLiteral<"source_component">;
|
|
18354
18039
|
source_component_id: z.ZodString;
|
|
@@ -18360,7 +18045,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18360
18045
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18361
18046
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18362
18047
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18363
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18364
18048
|
} & {
|
|
18365
18049
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
18366
18050
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -18371,7 +18055,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18371
18055
|
name: string;
|
|
18372
18056
|
source_component_id: string;
|
|
18373
18057
|
ftype: "simple_resonator";
|
|
18374
|
-
do_not_place: boolean;
|
|
18375
18058
|
frequency: number;
|
|
18376
18059
|
load_capacitance: number;
|
|
18377
18060
|
subcircuit_id?: string | undefined;
|
|
@@ -18396,7 +18079,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18396
18079
|
display_value?: string | undefined;
|
|
18397
18080
|
are_pins_interchangeable?: boolean | undefined;
|
|
18398
18081
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18399
|
-
do_not_place?: boolean | undefined;
|
|
18400
18082
|
equivalent_series_resistance?: string | number | undefined;
|
|
18401
18083
|
}>, z.ZodObject<{
|
|
18402
18084
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -18409,7 +18091,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18409
18091
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18410
18092
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18411
18093
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18412
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18413
18094
|
} & {
|
|
18414
18095
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
18415
18096
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18417,7 +18098,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18417
18098
|
name: string;
|
|
18418
18099
|
source_component_id: string;
|
|
18419
18100
|
ftype: "simple_switch";
|
|
18420
|
-
do_not_place: boolean;
|
|
18421
18101
|
subcircuit_id?: string | undefined;
|
|
18422
18102
|
source_group_id?: string | undefined;
|
|
18423
18103
|
manufacturer_part_number?: string | undefined;
|
|
@@ -18437,7 +18117,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18437
18117
|
display_value?: string | undefined;
|
|
18438
18118
|
are_pins_interchangeable?: boolean | undefined;
|
|
18439
18119
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18440
|
-
do_not_place?: boolean | undefined;
|
|
18441
18120
|
}>, z.ZodObject<{
|
|
18442
18121
|
type: z.ZodLiteral<"source_component">;
|
|
18443
18122
|
source_component_id: z.ZodString;
|
|
@@ -18449,7 +18128,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18449
18128
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18450
18129
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18451
18130
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18452
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18453
18131
|
} & {
|
|
18454
18132
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
18455
18133
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -18458,7 +18136,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18458
18136
|
name: string;
|
|
18459
18137
|
source_component_id: string;
|
|
18460
18138
|
ftype: "simple_transistor";
|
|
18461
|
-
do_not_place: boolean;
|
|
18462
18139
|
transistor_type: "npn" | "pnp";
|
|
18463
18140
|
subcircuit_id?: string | undefined;
|
|
18464
18141
|
source_group_id?: string | undefined;
|
|
@@ -18480,7 +18157,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18480
18157
|
display_value?: string | undefined;
|
|
18481
18158
|
are_pins_interchangeable?: boolean | undefined;
|
|
18482
18159
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18483
|
-
do_not_place?: boolean | undefined;
|
|
18484
18160
|
}>, z.ZodObject<{
|
|
18485
18161
|
type: z.ZodLiteral<"source_component">;
|
|
18486
18162
|
source_component_id: z.ZodString;
|
|
@@ -18492,7 +18168,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18492
18168
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18493
18169
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18494
18170
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18495
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18496
18171
|
} & {
|
|
18497
18172
|
ftype: z.ZodLiteral<"simple_test_point">;
|
|
18498
18173
|
footprint_variant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -18506,7 +18181,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18506
18181
|
name: string;
|
|
18507
18182
|
source_component_id: string;
|
|
18508
18183
|
ftype: "simple_test_point";
|
|
18509
|
-
do_not_place: boolean;
|
|
18510
18184
|
width?: string | number | undefined;
|
|
18511
18185
|
height?: string | number | undefined;
|
|
18512
18186
|
subcircuit_id?: string | undefined;
|
|
@@ -18536,7 +18210,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18536
18210
|
display_value?: string | undefined;
|
|
18537
18211
|
are_pins_interchangeable?: boolean | undefined;
|
|
18538
18212
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18539
|
-
do_not_place?: boolean | undefined;
|
|
18540
18213
|
footprint_variant?: "pad" | "through_hole" | undefined;
|
|
18541
18214
|
pad_diameter?: string | number | undefined;
|
|
18542
18215
|
}>, z.ZodObject<{
|
|
@@ -18550,7 +18223,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18550
18223
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18551
18224
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18552
18225
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18553
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18554
18226
|
} & {
|
|
18555
18227
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
18556
18228
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -18560,7 +18232,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18560
18232
|
name: string;
|
|
18561
18233
|
source_component_id: string;
|
|
18562
18234
|
ftype: "simple_mosfet";
|
|
18563
|
-
do_not_place: boolean;
|
|
18564
18235
|
channel_type: "n" | "p";
|
|
18565
18236
|
mosfet_mode: "enhancement" | "depletion";
|
|
18566
18237
|
subcircuit_id?: string | undefined;
|
|
@@ -18584,7 +18255,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18584
18255
|
display_value?: string | undefined;
|
|
18585
18256
|
are_pins_interchangeable?: boolean | undefined;
|
|
18586
18257
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18587
|
-
do_not_place?: boolean | undefined;
|
|
18588
18258
|
}>, z.ZodObject<{
|
|
18589
18259
|
type: z.ZodLiteral<"source_component">;
|
|
18590
18260
|
source_component_id: z.ZodString;
|
|
@@ -18596,7 +18266,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18596
18266
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18597
18267
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18598
18268
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18599
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18600
18269
|
} & {
|
|
18601
18270
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
18602
18271
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -18605,7 +18274,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18605
18274
|
name: string;
|
|
18606
18275
|
source_component_id: string;
|
|
18607
18276
|
ftype: "simple_potentiometer";
|
|
18608
|
-
do_not_place: boolean;
|
|
18609
18277
|
max_resistance: number;
|
|
18610
18278
|
subcircuit_id?: string | undefined;
|
|
18611
18279
|
source_group_id?: string | undefined;
|
|
@@ -18627,7 +18295,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18627
18295
|
display_value?: string | undefined;
|
|
18628
18296
|
are_pins_interchangeable?: boolean | undefined;
|
|
18629
18297
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18630
|
-
do_not_place?: boolean | undefined;
|
|
18631
18298
|
}>, z.ZodObject<{
|
|
18632
18299
|
type: z.ZodLiteral<"source_component">;
|
|
18633
18300
|
source_component_id: z.ZodString;
|
|
@@ -18639,7 +18306,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18639
18306
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
18640
18307
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
18641
18308
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18642
|
-
do_not_place: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
18643
18309
|
} & {
|
|
18644
18310
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
18645
18311
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18647,7 +18313,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18647
18313
|
name: string;
|
|
18648
18314
|
source_component_id: string;
|
|
18649
18315
|
ftype: "simple_push_button";
|
|
18650
|
-
do_not_place: boolean;
|
|
18651
18316
|
subcircuit_id?: string | undefined;
|
|
18652
18317
|
source_group_id?: string | undefined;
|
|
18653
18318
|
manufacturer_part_number?: string | undefined;
|
|
@@ -18667,7 +18332,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18667
18332
|
display_value?: string | undefined;
|
|
18668
18333
|
are_pins_interchangeable?: boolean | undefined;
|
|
18669
18334
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
18670
|
-
do_not_place?: boolean | undefined;
|
|
18671
18335
|
}>, z.ZodObject<{
|
|
18672
18336
|
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
18673
18337
|
source_pcb_ground_plane_id: z.ZodString;
|
|
@@ -18805,6 +18469,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18805
18469
|
rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18806
18470
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18807
18471
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
18472
|
+
do_not_place: z.ZodOptional<z.ZodBoolean>;
|
|
18808
18473
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
18809
18474
|
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
18810
18475
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18819,6 +18484,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18819
18484
|
};
|
|
18820
18485
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
18821
18486
|
rotation: number;
|
|
18487
|
+
do_not_place?: boolean | undefined;
|
|
18822
18488
|
subcircuit_id?: string | undefined;
|
|
18823
18489
|
pcb_group_id?: string | undefined;
|
|
18824
18490
|
}, {
|
|
@@ -18835,6 +18501,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18835
18501
|
};
|
|
18836
18502
|
rotation: string | number;
|
|
18837
18503
|
pcb_component_id?: string | undefined;
|
|
18504
|
+
do_not_place?: boolean | undefined;
|
|
18838
18505
|
subcircuit_id?: string | undefined;
|
|
18839
18506
|
pcb_group_id?: string | undefined;
|
|
18840
18507
|
}>, z.ZodUnion<[z.ZodObject<{
|