@tscircuit/props 0.0.324 → 0.0.326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1764 -189
- package/dist/index.js +135 -133
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/group.ts +24 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1513,6 +1513,7 @@ interface PinAttributeMap {
|
|
|
1513
1513
|
providesVoltage?: string | number;
|
|
1514
1514
|
requiresVoltage?: string | number;
|
|
1515
1515
|
doNotConnect?: boolean;
|
|
1516
|
+
includeInBoardPinout?: boolean;
|
|
1516
1517
|
}
|
|
1517
1518
|
declare const pinAttributeMap: z.ZodObject<{
|
|
1518
1519
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1522,6 +1523,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1522
1523
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1523
1524
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1524
1525
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
1526
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
1525
1527
|
}, "strip", z.ZodTypeAny, {
|
|
1526
1528
|
providesPower?: boolean | undefined;
|
|
1527
1529
|
requiresPower?: boolean | undefined;
|
|
@@ -1530,6 +1532,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1530
1532
|
providesVoltage?: string | number | undefined;
|
|
1531
1533
|
requiresVoltage?: string | number | undefined;
|
|
1532
1534
|
doNotConnect?: boolean | undefined;
|
|
1535
|
+
includeInBoardPinout?: boolean | undefined;
|
|
1533
1536
|
}, {
|
|
1534
1537
|
providesPower?: boolean | undefined;
|
|
1535
1538
|
requiresPower?: boolean | undefined;
|
|
@@ -1538,6 +1541,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1538
1541
|
providesVoltage?: string | number | undefined;
|
|
1539
1542
|
requiresVoltage?: string | number | undefined;
|
|
1540
1543
|
doNotConnect?: boolean | undefined;
|
|
1544
|
+
includeInBoardPinout?: boolean | undefined;
|
|
1541
1545
|
}>;
|
|
1542
1546
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
1543
1547
|
key?: any;
|
|
@@ -2156,6 +2160,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2156
2160
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2157
2161
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2158
2162
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
2163
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
2159
2164
|
}, "strip", z.ZodTypeAny, {
|
|
2160
2165
|
providesPower?: boolean | undefined;
|
|
2161
2166
|
requiresPower?: boolean | undefined;
|
|
@@ -2164,6 +2169,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2164
2169
|
providesVoltage?: string | number | undefined;
|
|
2165
2170
|
requiresVoltage?: string | number | undefined;
|
|
2166
2171
|
doNotConnect?: boolean | undefined;
|
|
2172
|
+
includeInBoardPinout?: boolean | undefined;
|
|
2167
2173
|
}, {
|
|
2168
2174
|
providesPower?: boolean | undefined;
|
|
2169
2175
|
requiresPower?: boolean | undefined;
|
|
@@ -2172,6 +2178,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2172
2178
|
providesVoltage?: string | number | undefined;
|
|
2173
2179
|
requiresVoltage?: string | number | undefined;
|
|
2174
2180
|
doNotConnect?: boolean | undefined;
|
|
2181
|
+
includeInBoardPinout?: boolean | undefined;
|
|
2175
2182
|
}>>>;
|
|
2176
2183
|
}, "strip", z.ZodTypeAny, {
|
|
2177
2184
|
name: string;
|
|
@@ -2210,6 +2217,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2210
2217
|
providesVoltage?: string | number | undefined;
|
|
2211
2218
|
requiresVoltage?: string | number | undefined;
|
|
2212
2219
|
doNotConnect?: boolean | undefined;
|
|
2220
|
+
includeInBoardPinout?: boolean | undefined;
|
|
2213
2221
|
}> | undefined;
|
|
2214
2222
|
cadModel?: string | {
|
|
2215
2223
|
stlUrl: string;
|
|
@@ -2381,6 +2389,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2381
2389
|
providesVoltage?: string | number | undefined;
|
|
2382
2390
|
requiresVoltage?: string | number | undefined;
|
|
2383
2391
|
doNotConnect?: boolean | undefined;
|
|
2392
|
+
includeInBoardPinout?: boolean | undefined;
|
|
2384
2393
|
}> | undefined;
|
|
2385
2394
|
cadModel?: string | {
|
|
2386
2395
|
stlUrl: string;
|
|
@@ -3121,6 +3130,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3121
3130
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3122
3131
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3123
3132
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
3133
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
3124
3134
|
}, "strip", z.ZodTypeAny, {
|
|
3125
3135
|
providesPower?: boolean | undefined;
|
|
3126
3136
|
requiresPower?: boolean | undefined;
|
|
@@ -3129,6 +3139,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3129
3139
|
providesVoltage?: string | number | undefined;
|
|
3130
3140
|
requiresVoltage?: string | number | undefined;
|
|
3131
3141
|
doNotConnect?: boolean | undefined;
|
|
3142
|
+
includeInBoardPinout?: boolean | undefined;
|
|
3132
3143
|
}, {
|
|
3133
3144
|
providesPower?: boolean | undefined;
|
|
3134
3145
|
requiresPower?: boolean | undefined;
|
|
@@ -3137,6 +3148,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3137
3148
|
providesVoltage?: string | number | undefined;
|
|
3138
3149
|
requiresVoltage?: string | number | undefined;
|
|
3139
3150
|
doNotConnect?: boolean | undefined;
|
|
3151
|
+
includeInBoardPinout?: boolean | undefined;
|
|
3140
3152
|
}>>>;
|
|
3141
3153
|
}, "strip", z.ZodTypeAny, {
|
|
3142
3154
|
name: string;
|
|
@@ -3175,6 +3187,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3175
3187
|
providesVoltage?: string | number | undefined;
|
|
3176
3188
|
requiresVoltage?: string | number | undefined;
|
|
3177
3189
|
doNotConnect?: boolean | undefined;
|
|
3190
|
+
includeInBoardPinout?: boolean | undefined;
|
|
3178
3191
|
}> | undefined;
|
|
3179
3192
|
cadModel?: string | {
|
|
3180
3193
|
stlUrl: string;
|
|
@@ -3346,6 +3359,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3346
3359
|
providesVoltage?: string | number | undefined;
|
|
3347
3360
|
requiresVoltage?: string | number | undefined;
|
|
3348
3361
|
doNotConnect?: boolean | undefined;
|
|
3362
|
+
includeInBoardPinout?: boolean | undefined;
|
|
3349
3363
|
}> | undefined;
|
|
3350
3364
|
cadModel?: string | {
|
|
3351
3365
|
stlUrl: string;
|
|
@@ -4698,6 +4712,78 @@ interface ManualEditsFile {
|
|
|
4698
4712
|
}
|
|
4699
4713
|
type ManualEditsFileInput = z.input<typeof manual_edits_file>;
|
|
4700
4714
|
|
|
4715
|
+
type ConnectionTarget = string;
|
|
4716
|
+
/**
|
|
4717
|
+
* Defines a mapping of strings to connection paths e.g.
|
|
4718
|
+
*
|
|
4719
|
+
* const connections: Connections = {
|
|
4720
|
+
* GND: ".U1 > .GND",
|
|
4721
|
+
* VCC: ".U1 > .VCC",
|
|
4722
|
+
* }
|
|
4723
|
+
*
|
|
4724
|
+
* Connections are used as both inputs and outputs. For example, you might
|
|
4725
|
+
* receive connections when using `sel` to select a chip.
|
|
4726
|
+
*
|
|
4727
|
+
* const u1Connections = sel.U1(MyChip)
|
|
4728
|
+
*
|
|
4729
|
+
* You can also define a module with connections like this:
|
|
4730
|
+
*
|
|
4731
|
+
* export const MyModule = (props: { connections: { GND: string, VCC: string } }) => {
|
|
4732
|
+
* return (
|
|
4733
|
+
* <group>
|
|
4734
|
+
* <capacitor name="C1" connections={{
|
|
4735
|
+
* anode: props.connections.GND,
|
|
4736
|
+
* cathode: props.connections.VCC,
|
|
4737
|
+
* }} />
|
|
4738
|
+
* </group>
|
|
4739
|
+
* )
|
|
4740
|
+
* }
|
|
4741
|
+
*/
|
|
4742
|
+
type Connections<PinLabel extends string = string> = Partial<Record<PinLabel, ConnectionTarget | ConnectionTarget[] | readonly ConnectionTarget[]>>;
|
|
4743
|
+
/**
|
|
4744
|
+
* Defines a mapping of strings (usually chip names) to connections e.g.
|
|
4745
|
+
*
|
|
4746
|
+
* const selectors: Selectors = {
|
|
4747
|
+
* U1: { GND: ".U1 > .GND", VCC: ".U1 > .VCC" },
|
|
4748
|
+
* U2: {
|
|
4749
|
+
* GND: ".U2 > .pin1",
|
|
4750
|
+
* VCC: ".U2 > .pin2",
|
|
4751
|
+
* CUSTOM_DATA_1: ".U2 > .pin3",
|
|
4752
|
+
* CUSTOM_DATA_2: ".U2 > .pin4",
|
|
4753
|
+
* },
|
|
4754
|
+
* }
|
|
4755
|
+
*
|
|
4756
|
+
* A user can also use selectors to define the connections, this is helpful when
|
|
4757
|
+
* there's multiple chips in the group.
|
|
4758
|
+
*
|
|
4759
|
+
* ```tsx
|
|
4760
|
+
* const MyModule = (props: {
|
|
4761
|
+
* selectors: {
|
|
4762
|
+
* U1: { GND: string, VCC: string },
|
|
4763
|
+
* R1: { GND: string, VCC: string }
|
|
4764
|
+
* }
|
|
4765
|
+
* }) => {
|
|
4766
|
+
* return (
|
|
4767
|
+
* <group>
|
|
4768
|
+
* <resistor name="R1" connections={{
|
|
4769
|
+
* pin1: props.selectors.R1.GND,
|
|
4770
|
+
* pin2: props.selectors.R1.VCC,
|
|
4771
|
+
* }} />
|
|
4772
|
+
* <capacitor name="C1" connections={{
|
|
4773
|
+
* anode: props.selectors.U1.GND,
|
|
4774
|
+
* cathode: props.selectors.U1.VCC,
|
|
4775
|
+
* }} />
|
|
4776
|
+
* </group>
|
|
4777
|
+
* )
|
|
4778
|
+
* }
|
|
4779
|
+
* ```
|
|
4780
|
+
*
|
|
4781
|
+
* These selectors can also be used with "sel":
|
|
4782
|
+
*
|
|
4783
|
+
* sel.M1(MyModule).U1.GND // ".M1 > .C1 > .anode"
|
|
4784
|
+
*/
|
|
4785
|
+
type Selectors = Record<string, Connections>;
|
|
4786
|
+
|
|
4701
4787
|
declare const layoutConfig: z.ZodObject<{
|
|
4702
4788
|
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
4703
4789
|
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
@@ -4858,6 +4944,18 @@ interface BaseGroupProps extends CommonLayoutProps, LayoutConfig {
|
|
|
4858
4944
|
* Title to display above this group in the schematic view
|
|
4859
4945
|
*/
|
|
4860
4946
|
schTitle?: string;
|
|
4947
|
+
/**
|
|
4948
|
+
* If true, render this group as a single schematic box
|
|
4949
|
+
*/
|
|
4950
|
+
showAsSchematicBox?: boolean;
|
|
4951
|
+
/**
|
|
4952
|
+
* Mapping of external pin names to internal connection targets
|
|
4953
|
+
*/
|
|
4954
|
+
connections?: Connections;
|
|
4955
|
+
/**
|
|
4956
|
+
* Arrangement for pins when rendered as a schematic box
|
|
4957
|
+
*/
|
|
4958
|
+
schPinArrangement?: SchematicPinArrangement;
|
|
4861
4959
|
pcbWidth?: Distance;
|
|
4862
4960
|
pcbHeight?: Distance;
|
|
4863
4961
|
schWidth?: Distance;
|
|
@@ -5398,6 +5496,108 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5398
5496
|
children: z.ZodOptional<z.ZodAny>;
|
|
5399
5497
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
5400
5498
|
key: z.ZodOptional<z.ZodAny>;
|
|
5499
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
5500
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
5501
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
5502
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
5503
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
5504
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
5505
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
5506
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
5507
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
5508
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
5509
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
5510
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
5511
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5512
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5513
|
+
}, "strip", z.ZodTypeAny, {
|
|
5514
|
+
pins: (string | number)[];
|
|
5515
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5516
|
+
}, {
|
|
5517
|
+
pins: (string | number)[];
|
|
5518
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5519
|
+
}>>;
|
|
5520
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
5521
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5522
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5523
|
+
}, "strip", z.ZodTypeAny, {
|
|
5524
|
+
pins: (string | number)[];
|
|
5525
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5526
|
+
}, {
|
|
5527
|
+
pins: (string | number)[];
|
|
5528
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5529
|
+
}>>;
|
|
5530
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
5531
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5532
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5533
|
+
}, "strip", z.ZodTypeAny, {
|
|
5534
|
+
pins: (string | number)[];
|
|
5535
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5536
|
+
}, {
|
|
5537
|
+
pins: (string | number)[];
|
|
5538
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5539
|
+
}>>;
|
|
5540
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
5541
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
5542
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
5543
|
+
}, "strip", z.ZodTypeAny, {
|
|
5544
|
+
pins: (string | number)[];
|
|
5545
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5546
|
+
}, {
|
|
5547
|
+
pins: (string | number)[];
|
|
5548
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5549
|
+
}>>;
|
|
5550
|
+
}, "strip", z.ZodTypeAny, {
|
|
5551
|
+
leftSize?: number | undefined;
|
|
5552
|
+
topSize?: number | undefined;
|
|
5553
|
+
rightSize?: number | undefined;
|
|
5554
|
+
bottomSize?: number | undefined;
|
|
5555
|
+
leftSide?: {
|
|
5556
|
+
pins: (string | number)[];
|
|
5557
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5558
|
+
} | undefined;
|
|
5559
|
+
topSide?: {
|
|
5560
|
+
pins: (string | number)[];
|
|
5561
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5562
|
+
} | undefined;
|
|
5563
|
+
rightSide?: {
|
|
5564
|
+
pins: (string | number)[];
|
|
5565
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5566
|
+
} | undefined;
|
|
5567
|
+
bottomSide?: {
|
|
5568
|
+
pins: (string | number)[];
|
|
5569
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5570
|
+
} | undefined;
|
|
5571
|
+
leftPinCount?: number | undefined;
|
|
5572
|
+
rightPinCount?: number | undefined;
|
|
5573
|
+
topPinCount?: number | undefined;
|
|
5574
|
+
bottomPinCount?: number | undefined;
|
|
5575
|
+
}, {
|
|
5576
|
+
leftSize?: number | undefined;
|
|
5577
|
+
topSize?: number | undefined;
|
|
5578
|
+
rightSize?: number | undefined;
|
|
5579
|
+
bottomSize?: number | undefined;
|
|
5580
|
+
leftSide?: {
|
|
5581
|
+
pins: (string | number)[];
|
|
5582
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5583
|
+
} | undefined;
|
|
5584
|
+
topSide?: {
|
|
5585
|
+
pins: (string | number)[];
|
|
5586
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5587
|
+
} | undefined;
|
|
5588
|
+
rightSide?: {
|
|
5589
|
+
pins: (string | number)[];
|
|
5590
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5591
|
+
} | undefined;
|
|
5592
|
+
bottomSide?: {
|
|
5593
|
+
pins: (string | number)[];
|
|
5594
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5595
|
+
} | undefined;
|
|
5596
|
+
leftPinCount?: number | undefined;
|
|
5597
|
+
rightPinCount?: number | undefined;
|
|
5598
|
+
topPinCount?: number | undefined;
|
|
5599
|
+
bottomPinCount?: number | undefined;
|
|
5600
|
+
}>>;
|
|
5401
5601
|
}, "strip", z.ZodTypeAny, {
|
|
5402
5602
|
symbol?: SymbolProp | undefined;
|
|
5403
5603
|
key?: any;
|
|
@@ -5460,6 +5660,34 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5460
5660
|
matchAdapt?: boolean | undefined;
|
|
5461
5661
|
matchAdaptTemplate?: any;
|
|
5462
5662
|
schTitle?: string | undefined;
|
|
5663
|
+
showAsSchematicBox?: boolean | undefined;
|
|
5664
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
5665
|
+
schPinArrangement?: {
|
|
5666
|
+
leftSize?: number | undefined;
|
|
5667
|
+
topSize?: number | undefined;
|
|
5668
|
+
rightSize?: number | undefined;
|
|
5669
|
+
bottomSize?: number | undefined;
|
|
5670
|
+
leftSide?: {
|
|
5671
|
+
pins: (string | number)[];
|
|
5672
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5673
|
+
} | undefined;
|
|
5674
|
+
topSide?: {
|
|
5675
|
+
pins: (string | number)[];
|
|
5676
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5677
|
+
} | undefined;
|
|
5678
|
+
rightSide?: {
|
|
5679
|
+
pins: (string | number)[];
|
|
5680
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5681
|
+
} | undefined;
|
|
5682
|
+
bottomSide?: {
|
|
5683
|
+
pins: (string | number)[];
|
|
5684
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5685
|
+
} | undefined;
|
|
5686
|
+
leftPinCount?: number | undefined;
|
|
5687
|
+
rightPinCount?: number | undefined;
|
|
5688
|
+
topPinCount?: number | undefined;
|
|
5689
|
+
bottomPinCount?: number | undefined;
|
|
5690
|
+
} | undefined;
|
|
5463
5691
|
pcbWidth?: number | undefined;
|
|
5464
5692
|
pcbHeight?: number | undefined;
|
|
5465
5693
|
schWidth?: number | undefined;
|
|
@@ -5654,6 +5882,34 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
5654
5882
|
matchAdapt?: boolean | undefined;
|
|
5655
5883
|
matchAdaptTemplate?: any;
|
|
5656
5884
|
schTitle?: string | undefined;
|
|
5885
|
+
showAsSchematicBox?: boolean | undefined;
|
|
5886
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
5887
|
+
schPinArrangement?: {
|
|
5888
|
+
leftSize?: number | undefined;
|
|
5889
|
+
topSize?: number | undefined;
|
|
5890
|
+
rightSize?: number | undefined;
|
|
5891
|
+
bottomSize?: number | undefined;
|
|
5892
|
+
leftSide?: {
|
|
5893
|
+
pins: (string | number)[];
|
|
5894
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5895
|
+
} | undefined;
|
|
5896
|
+
topSide?: {
|
|
5897
|
+
pins: (string | number)[];
|
|
5898
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5899
|
+
} | undefined;
|
|
5900
|
+
rightSide?: {
|
|
5901
|
+
pins: (string | number)[];
|
|
5902
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5903
|
+
} | undefined;
|
|
5904
|
+
bottomSide?: {
|
|
5905
|
+
pins: (string | number)[];
|
|
5906
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
5907
|
+
} | undefined;
|
|
5908
|
+
leftPinCount?: number | undefined;
|
|
5909
|
+
rightPinCount?: number | undefined;
|
|
5910
|
+
topPinCount?: number | undefined;
|
|
5911
|
+
bottomPinCount?: number | undefined;
|
|
5912
|
+
} | undefined;
|
|
5657
5913
|
pcbWidth?: string | number | undefined;
|
|
5658
5914
|
pcbHeight?: string | number | undefined;
|
|
5659
5915
|
schWidth?: string | number | undefined;
|
|
@@ -6132,6 +6388,108 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6132
6388
|
children: z.ZodOptional<z.ZodAny>;
|
|
6133
6389
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
6134
6390
|
key: z.ZodOptional<z.ZodAny>;
|
|
6391
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
6392
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
6393
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
6394
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
6395
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
6396
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
6397
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
6398
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
6399
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
6400
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
6401
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
6402
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
6403
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
6404
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
6405
|
+
}, "strip", z.ZodTypeAny, {
|
|
6406
|
+
pins: (string | number)[];
|
|
6407
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6408
|
+
}, {
|
|
6409
|
+
pins: (string | number)[];
|
|
6410
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6411
|
+
}>>;
|
|
6412
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
6413
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
6414
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
6415
|
+
}, "strip", z.ZodTypeAny, {
|
|
6416
|
+
pins: (string | number)[];
|
|
6417
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6418
|
+
}, {
|
|
6419
|
+
pins: (string | number)[];
|
|
6420
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6421
|
+
}>>;
|
|
6422
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
6423
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
6424
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
6425
|
+
}, "strip", z.ZodTypeAny, {
|
|
6426
|
+
pins: (string | number)[];
|
|
6427
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6428
|
+
}, {
|
|
6429
|
+
pins: (string | number)[];
|
|
6430
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6431
|
+
}>>;
|
|
6432
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
6433
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
6434
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
6435
|
+
}, "strip", z.ZodTypeAny, {
|
|
6436
|
+
pins: (string | number)[];
|
|
6437
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6438
|
+
}, {
|
|
6439
|
+
pins: (string | number)[];
|
|
6440
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6441
|
+
}>>;
|
|
6442
|
+
}, "strip", z.ZodTypeAny, {
|
|
6443
|
+
leftSize?: number | undefined;
|
|
6444
|
+
topSize?: number | undefined;
|
|
6445
|
+
rightSize?: number | undefined;
|
|
6446
|
+
bottomSize?: number | undefined;
|
|
6447
|
+
leftSide?: {
|
|
6448
|
+
pins: (string | number)[];
|
|
6449
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6450
|
+
} | undefined;
|
|
6451
|
+
topSide?: {
|
|
6452
|
+
pins: (string | number)[];
|
|
6453
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6454
|
+
} | undefined;
|
|
6455
|
+
rightSide?: {
|
|
6456
|
+
pins: (string | number)[];
|
|
6457
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6458
|
+
} | undefined;
|
|
6459
|
+
bottomSide?: {
|
|
6460
|
+
pins: (string | number)[];
|
|
6461
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6462
|
+
} | undefined;
|
|
6463
|
+
leftPinCount?: number | undefined;
|
|
6464
|
+
rightPinCount?: number | undefined;
|
|
6465
|
+
topPinCount?: number | undefined;
|
|
6466
|
+
bottomPinCount?: number | undefined;
|
|
6467
|
+
}, {
|
|
6468
|
+
leftSize?: number | undefined;
|
|
6469
|
+
topSize?: number | undefined;
|
|
6470
|
+
rightSize?: number | undefined;
|
|
6471
|
+
bottomSize?: number | undefined;
|
|
6472
|
+
leftSide?: {
|
|
6473
|
+
pins: (string | number)[];
|
|
6474
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6475
|
+
} | undefined;
|
|
6476
|
+
topSide?: {
|
|
6477
|
+
pins: (string | number)[];
|
|
6478
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6479
|
+
} | undefined;
|
|
6480
|
+
rightSide?: {
|
|
6481
|
+
pins: (string | number)[];
|
|
6482
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6483
|
+
} | undefined;
|
|
6484
|
+
bottomSide?: {
|
|
6485
|
+
pins: (string | number)[];
|
|
6486
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6487
|
+
} | undefined;
|
|
6488
|
+
leftPinCount?: number | undefined;
|
|
6489
|
+
rightPinCount?: number | undefined;
|
|
6490
|
+
topPinCount?: number | undefined;
|
|
6491
|
+
bottomPinCount?: number | undefined;
|
|
6492
|
+
}>>;
|
|
6135
6493
|
} & {
|
|
6136
6494
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
6137
6495
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -6420,6 +6778,34 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6420
6778
|
matchAdapt?: boolean | undefined;
|
|
6421
6779
|
matchAdaptTemplate?: any;
|
|
6422
6780
|
schTitle?: string | undefined;
|
|
6781
|
+
showAsSchematicBox?: boolean | undefined;
|
|
6782
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
6783
|
+
schPinArrangement?: {
|
|
6784
|
+
leftSize?: number | undefined;
|
|
6785
|
+
topSize?: number | undefined;
|
|
6786
|
+
rightSize?: number | undefined;
|
|
6787
|
+
bottomSize?: number | undefined;
|
|
6788
|
+
leftSide?: {
|
|
6789
|
+
pins: (string | number)[];
|
|
6790
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6791
|
+
} | undefined;
|
|
6792
|
+
topSide?: {
|
|
6793
|
+
pins: (string | number)[];
|
|
6794
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6795
|
+
} | undefined;
|
|
6796
|
+
rightSide?: {
|
|
6797
|
+
pins: (string | number)[];
|
|
6798
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6799
|
+
} | undefined;
|
|
6800
|
+
bottomSide?: {
|
|
6801
|
+
pins: (string | number)[];
|
|
6802
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
6803
|
+
} | undefined;
|
|
6804
|
+
leftPinCount?: number | undefined;
|
|
6805
|
+
rightPinCount?: number | undefined;
|
|
6806
|
+
topPinCount?: number | undefined;
|
|
6807
|
+
bottomPinCount?: number | undefined;
|
|
6808
|
+
} | undefined;
|
|
6423
6809
|
pcbWidth?: number | undefined;
|
|
6424
6810
|
pcbHeight?: number | undefined;
|
|
6425
6811
|
schWidth?: number | undefined;
|
|
@@ -6671,6 +7057,34 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
6671
7057
|
matchAdapt?: boolean | undefined;
|
|
6672
7058
|
matchAdaptTemplate?: any;
|
|
6673
7059
|
schTitle?: string | undefined;
|
|
7060
|
+
showAsSchematicBox?: boolean | undefined;
|
|
7061
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
7062
|
+
schPinArrangement?: {
|
|
7063
|
+
leftSize?: number | undefined;
|
|
7064
|
+
topSize?: number | undefined;
|
|
7065
|
+
rightSize?: number | undefined;
|
|
7066
|
+
bottomSize?: number | undefined;
|
|
7067
|
+
leftSide?: {
|
|
7068
|
+
pins: (string | number)[];
|
|
7069
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7070
|
+
} | undefined;
|
|
7071
|
+
topSide?: {
|
|
7072
|
+
pins: (string | number)[];
|
|
7073
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7074
|
+
} | undefined;
|
|
7075
|
+
rightSide?: {
|
|
7076
|
+
pins: (string | number)[];
|
|
7077
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7078
|
+
} | undefined;
|
|
7079
|
+
bottomSide?: {
|
|
7080
|
+
pins: (string | number)[];
|
|
7081
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7082
|
+
} | undefined;
|
|
7083
|
+
leftPinCount?: number | undefined;
|
|
7084
|
+
rightPinCount?: number | undefined;
|
|
7085
|
+
topPinCount?: number | undefined;
|
|
7086
|
+
bottomPinCount?: number | undefined;
|
|
7087
|
+
} | undefined;
|
|
6674
7088
|
pcbWidth?: string | number | undefined;
|
|
6675
7089
|
pcbHeight?: string | number | undefined;
|
|
6676
7090
|
schWidth?: string | number | undefined;
|
|
@@ -7207,6 +7621,108 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7207
7621
|
children: z.ZodOptional<z.ZodAny>;
|
|
7208
7622
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
7209
7623
|
key: z.ZodOptional<z.ZodAny>;
|
|
7624
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
7625
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
7626
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
7627
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
7628
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
7629
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
7630
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
7631
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
7632
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
7633
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
7634
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
7635
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
7636
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
7637
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
7638
|
+
}, "strip", z.ZodTypeAny, {
|
|
7639
|
+
pins: (string | number)[];
|
|
7640
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7641
|
+
}, {
|
|
7642
|
+
pins: (string | number)[];
|
|
7643
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7644
|
+
}>>;
|
|
7645
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
7646
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
7647
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
7648
|
+
}, "strip", z.ZodTypeAny, {
|
|
7649
|
+
pins: (string | number)[];
|
|
7650
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7651
|
+
}, {
|
|
7652
|
+
pins: (string | number)[];
|
|
7653
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7654
|
+
}>>;
|
|
7655
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
7656
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
7657
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
7658
|
+
}, "strip", z.ZodTypeAny, {
|
|
7659
|
+
pins: (string | number)[];
|
|
7660
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7661
|
+
}, {
|
|
7662
|
+
pins: (string | number)[];
|
|
7663
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7664
|
+
}>>;
|
|
7665
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
7666
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
7667
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
7668
|
+
}, "strip", z.ZodTypeAny, {
|
|
7669
|
+
pins: (string | number)[];
|
|
7670
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7671
|
+
}, {
|
|
7672
|
+
pins: (string | number)[];
|
|
7673
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7674
|
+
}>>;
|
|
7675
|
+
}, "strip", z.ZodTypeAny, {
|
|
7676
|
+
leftSize?: number | undefined;
|
|
7677
|
+
topSize?: number | undefined;
|
|
7678
|
+
rightSize?: number | undefined;
|
|
7679
|
+
bottomSize?: number | undefined;
|
|
7680
|
+
leftSide?: {
|
|
7681
|
+
pins: (string | number)[];
|
|
7682
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7683
|
+
} | undefined;
|
|
7684
|
+
topSide?: {
|
|
7685
|
+
pins: (string | number)[];
|
|
7686
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7687
|
+
} | undefined;
|
|
7688
|
+
rightSide?: {
|
|
7689
|
+
pins: (string | number)[];
|
|
7690
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7691
|
+
} | undefined;
|
|
7692
|
+
bottomSide?: {
|
|
7693
|
+
pins: (string | number)[];
|
|
7694
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7695
|
+
} | undefined;
|
|
7696
|
+
leftPinCount?: number | undefined;
|
|
7697
|
+
rightPinCount?: number | undefined;
|
|
7698
|
+
topPinCount?: number | undefined;
|
|
7699
|
+
bottomPinCount?: number | undefined;
|
|
7700
|
+
}, {
|
|
7701
|
+
leftSize?: number | undefined;
|
|
7702
|
+
topSize?: number | undefined;
|
|
7703
|
+
rightSize?: number | undefined;
|
|
7704
|
+
bottomSize?: number | undefined;
|
|
7705
|
+
leftSide?: {
|
|
7706
|
+
pins: (string | number)[];
|
|
7707
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7708
|
+
} | undefined;
|
|
7709
|
+
topSide?: {
|
|
7710
|
+
pins: (string | number)[];
|
|
7711
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7712
|
+
} | undefined;
|
|
7713
|
+
rightSide?: {
|
|
7714
|
+
pins: (string | number)[];
|
|
7715
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7716
|
+
} | undefined;
|
|
7717
|
+
bottomSide?: {
|
|
7718
|
+
pins: (string | number)[];
|
|
7719
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
7720
|
+
} | undefined;
|
|
7721
|
+
leftPinCount?: number | undefined;
|
|
7722
|
+
rightPinCount?: number | undefined;
|
|
7723
|
+
topPinCount?: number | undefined;
|
|
7724
|
+
bottomPinCount?: number | undefined;
|
|
7725
|
+
}>>;
|
|
7210
7726
|
} & {
|
|
7211
7727
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
7212
7728
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7498,6 +8014,34 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7498
8014
|
matchAdapt?: boolean | undefined;
|
|
7499
8015
|
matchAdaptTemplate?: any;
|
|
7500
8016
|
schTitle?: string | undefined;
|
|
8017
|
+
showAsSchematicBox?: boolean | undefined;
|
|
8018
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
8019
|
+
schPinArrangement?: {
|
|
8020
|
+
leftSize?: number | undefined;
|
|
8021
|
+
topSize?: number | undefined;
|
|
8022
|
+
rightSize?: number | undefined;
|
|
8023
|
+
bottomSize?: number | undefined;
|
|
8024
|
+
leftSide?: {
|
|
8025
|
+
pins: (string | number)[];
|
|
8026
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8027
|
+
} | undefined;
|
|
8028
|
+
topSide?: {
|
|
8029
|
+
pins: (string | number)[];
|
|
8030
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8031
|
+
} | undefined;
|
|
8032
|
+
rightSide?: {
|
|
8033
|
+
pins: (string | number)[];
|
|
8034
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8035
|
+
} | undefined;
|
|
8036
|
+
bottomSide?: {
|
|
8037
|
+
pins: (string | number)[];
|
|
8038
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8039
|
+
} | undefined;
|
|
8040
|
+
leftPinCount?: number | undefined;
|
|
8041
|
+
rightPinCount?: number | undefined;
|
|
8042
|
+
topPinCount?: number | undefined;
|
|
8043
|
+
bottomPinCount?: number | undefined;
|
|
8044
|
+
} | undefined;
|
|
7501
8045
|
pcbWidth?: number | undefined;
|
|
7502
8046
|
pcbHeight?: number | undefined;
|
|
7503
8047
|
schWidth?: number | undefined;
|
|
@@ -7750,6 +8294,34 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
7750
8294
|
matchAdapt?: boolean | undefined;
|
|
7751
8295
|
matchAdaptTemplate?: any;
|
|
7752
8296
|
schTitle?: string | undefined;
|
|
8297
|
+
showAsSchematicBox?: boolean | undefined;
|
|
8298
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
8299
|
+
schPinArrangement?: {
|
|
8300
|
+
leftSize?: number | undefined;
|
|
8301
|
+
topSize?: number | undefined;
|
|
8302
|
+
rightSize?: number | undefined;
|
|
8303
|
+
bottomSize?: number | undefined;
|
|
8304
|
+
leftSide?: {
|
|
8305
|
+
pins: (string | number)[];
|
|
8306
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8307
|
+
} | undefined;
|
|
8308
|
+
topSide?: {
|
|
8309
|
+
pins: (string | number)[];
|
|
8310
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8311
|
+
} | undefined;
|
|
8312
|
+
rightSide?: {
|
|
8313
|
+
pins: (string | number)[];
|
|
8314
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8315
|
+
} | undefined;
|
|
8316
|
+
bottomSide?: {
|
|
8317
|
+
pins: (string | number)[];
|
|
8318
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8319
|
+
} | undefined;
|
|
8320
|
+
leftPinCount?: number | undefined;
|
|
8321
|
+
rightPinCount?: number | undefined;
|
|
8322
|
+
topPinCount?: number | undefined;
|
|
8323
|
+
bottomPinCount?: number | undefined;
|
|
8324
|
+
} | undefined;
|
|
7753
8325
|
pcbWidth?: string | number | undefined;
|
|
7754
8326
|
pcbHeight?: string | number | undefined;
|
|
7755
8327
|
schWidth?: string | number | undefined;
|
|
@@ -8289,6 +8861,108 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8289
8861
|
children: z.ZodOptional<z.ZodAny>;
|
|
8290
8862
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
8291
8863
|
key: z.ZodOptional<z.ZodAny>;
|
|
8864
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
8865
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
8866
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
8867
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
8868
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
8869
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
8870
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
8871
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8872
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8873
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8874
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
8875
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
8876
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8877
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8878
|
+
}, "strip", z.ZodTypeAny, {
|
|
8879
|
+
pins: (string | number)[];
|
|
8880
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8881
|
+
}, {
|
|
8882
|
+
pins: (string | number)[];
|
|
8883
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8884
|
+
}>>;
|
|
8885
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
8886
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8887
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8888
|
+
}, "strip", z.ZodTypeAny, {
|
|
8889
|
+
pins: (string | number)[];
|
|
8890
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8891
|
+
}, {
|
|
8892
|
+
pins: (string | number)[];
|
|
8893
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8894
|
+
}>>;
|
|
8895
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
8896
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8897
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8898
|
+
}, "strip", z.ZodTypeAny, {
|
|
8899
|
+
pins: (string | number)[];
|
|
8900
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8901
|
+
}, {
|
|
8902
|
+
pins: (string | number)[];
|
|
8903
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8904
|
+
}>>;
|
|
8905
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
8906
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
8907
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
8908
|
+
}, "strip", z.ZodTypeAny, {
|
|
8909
|
+
pins: (string | number)[];
|
|
8910
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8911
|
+
}, {
|
|
8912
|
+
pins: (string | number)[];
|
|
8913
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8914
|
+
}>>;
|
|
8915
|
+
}, "strip", z.ZodTypeAny, {
|
|
8916
|
+
leftSize?: number | undefined;
|
|
8917
|
+
topSize?: number | undefined;
|
|
8918
|
+
rightSize?: number | undefined;
|
|
8919
|
+
bottomSize?: number | undefined;
|
|
8920
|
+
leftSide?: {
|
|
8921
|
+
pins: (string | number)[];
|
|
8922
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8923
|
+
} | undefined;
|
|
8924
|
+
topSide?: {
|
|
8925
|
+
pins: (string | number)[];
|
|
8926
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8927
|
+
} | undefined;
|
|
8928
|
+
rightSide?: {
|
|
8929
|
+
pins: (string | number)[];
|
|
8930
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8931
|
+
} | undefined;
|
|
8932
|
+
bottomSide?: {
|
|
8933
|
+
pins: (string | number)[];
|
|
8934
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8935
|
+
} | undefined;
|
|
8936
|
+
leftPinCount?: number | undefined;
|
|
8937
|
+
rightPinCount?: number | undefined;
|
|
8938
|
+
topPinCount?: number | undefined;
|
|
8939
|
+
bottomPinCount?: number | undefined;
|
|
8940
|
+
}, {
|
|
8941
|
+
leftSize?: number | undefined;
|
|
8942
|
+
topSize?: number | undefined;
|
|
8943
|
+
rightSize?: number | undefined;
|
|
8944
|
+
bottomSize?: number | undefined;
|
|
8945
|
+
leftSide?: {
|
|
8946
|
+
pins: (string | number)[];
|
|
8947
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8948
|
+
} | undefined;
|
|
8949
|
+
topSide?: {
|
|
8950
|
+
pins: (string | number)[];
|
|
8951
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8952
|
+
} | undefined;
|
|
8953
|
+
rightSide?: {
|
|
8954
|
+
pins: (string | number)[];
|
|
8955
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8956
|
+
} | undefined;
|
|
8957
|
+
bottomSide?: {
|
|
8958
|
+
pins: (string | number)[];
|
|
8959
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
8960
|
+
} | undefined;
|
|
8961
|
+
leftPinCount?: number | undefined;
|
|
8962
|
+
rightPinCount?: number | undefined;
|
|
8963
|
+
topPinCount?: number | undefined;
|
|
8964
|
+
bottomPinCount?: number | undefined;
|
|
8965
|
+
}>>;
|
|
8292
8966
|
} & {
|
|
8293
8967
|
subcircuit: z.ZodOptional<z.ZodLiteral<false>>;
|
|
8294
8968
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8353,6 +9027,34 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8353
9027
|
matchAdapt?: boolean | undefined;
|
|
8354
9028
|
matchAdaptTemplate?: any;
|
|
8355
9029
|
schTitle?: string | undefined;
|
|
9030
|
+
showAsSchematicBox?: boolean | undefined;
|
|
9031
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
9032
|
+
schPinArrangement?: {
|
|
9033
|
+
leftSize?: number | undefined;
|
|
9034
|
+
topSize?: number | undefined;
|
|
9035
|
+
rightSize?: number | undefined;
|
|
9036
|
+
bottomSize?: number | undefined;
|
|
9037
|
+
leftSide?: {
|
|
9038
|
+
pins: (string | number)[];
|
|
9039
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9040
|
+
} | undefined;
|
|
9041
|
+
topSide?: {
|
|
9042
|
+
pins: (string | number)[];
|
|
9043
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9044
|
+
} | undefined;
|
|
9045
|
+
rightSide?: {
|
|
9046
|
+
pins: (string | number)[];
|
|
9047
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9048
|
+
} | undefined;
|
|
9049
|
+
bottomSide?: {
|
|
9050
|
+
pins: (string | number)[];
|
|
9051
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9052
|
+
} | undefined;
|
|
9053
|
+
leftPinCount?: number | undefined;
|
|
9054
|
+
rightPinCount?: number | undefined;
|
|
9055
|
+
topPinCount?: number | undefined;
|
|
9056
|
+
bottomPinCount?: number | undefined;
|
|
9057
|
+
} | undefined;
|
|
8356
9058
|
pcbWidth?: number | undefined;
|
|
8357
9059
|
pcbHeight?: number | undefined;
|
|
8358
9060
|
schWidth?: number | undefined;
|
|
@@ -8548,6 +9250,34 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
8548
9250
|
matchAdapt?: boolean | undefined;
|
|
8549
9251
|
matchAdaptTemplate?: any;
|
|
8550
9252
|
schTitle?: string | undefined;
|
|
9253
|
+
showAsSchematicBox?: boolean | undefined;
|
|
9254
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
9255
|
+
schPinArrangement?: {
|
|
9256
|
+
leftSize?: number | undefined;
|
|
9257
|
+
topSize?: number | undefined;
|
|
9258
|
+
rightSize?: number | undefined;
|
|
9259
|
+
bottomSize?: number | undefined;
|
|
9260
|
+
leftSide?: {
|
|
9261
|
+
pins: (string | number)[];
|
|
9262
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9263
|
+
} | undefined;
|
|
9264
|
+
topSide?: {
|
|
9265
|
+
pins: (string | number)[];
|
|
9266
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9267
|
+
} | undefined;
|
|
9268
|
+
rightSide?: {
|
|
9269
|
+
pins: (string | number)[];
|
|
9270
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9271
|
+
} | undefined;
|
|
9272
|
+
bottomSide?: {
|
|
9273
|
+
pins: (string | number)[];
|
|
9274
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9275
|
+
} | undefined;
|
|
9276
|
+
leftPinCount?: number | undefined;
|
|
9277
|
+
rightPinCount?: number | undefined;
|
|
9278
|
+
topPinCount?: number | undefined;
|
|
9279
|
+
bottomPinCount?: number | undefined;
|
|
9280
|
+
} | undefined;
|
|
8551
9281
|
pcbWidth?: string | number | undefined;
|
|
8552
9282
|
pcbHeight?: string | number | undefined;
|
|
8553
9283
|
schWidth?: string | number | undefined;
|
|
@@ -9025,6 +9755,108 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9025
9755
|
children: z.ZodOptional<z.ZodAny>;
|
|
9026
9756
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
9027
9757
|
key: z.ZodOptional<z.ZodAny>;
|
|
9758
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
9759
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
9760
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
9761
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
9762
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
9763
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
9764
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
9765
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
9766
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
9767
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
9768
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
9769
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
9770
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
9771
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
9772
|
+
}, "strip", z.ZodTypeAny, {
|
|
9773
|
+
pins: (string | number)[];
|
|
9774
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9775
|
+
}, {
|
|
9776
|
+
pins: (string | number)[];
|
|
9777
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9778
|
+
}>>;
|
|
9779
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
9780
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
9781
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
9782
|
+
}, "strip", z.ZodTypeAny, {
|
|
9783
|
+
pins: (string | number)[];
|
|
9784
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9785
|
+
}, {
|
|
9786
|
+
pins: (string | number)[];
|
|
9787
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9788
|
+
}>>;
|
|
9789
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
9790
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
9791
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
9792
|
+
}, "strip", z.ZodTypeAny, {
|
|
9793
|
+
pins: (string | number)[];
|
|
9794
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9795
|
+
}, {
|
|
9796
|
+
pins: (string | number)[];
|
|
9797
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9798
|
+
}>>;
|
|
9799
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
9800
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
9801
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
9802
|
+
}, "strip", z.ZodTypeAny, {
|
|
9803
|
+
pins: (string | number)[];
|
|
9804
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9805
|
+
}, {
|
|
9806
|
+
pins: (string | number)[];
|
|
9807
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9808
|
+
}>>;
|
|
9809
|
+
}, "strip", z.ZodTypeAny, {
|
|
9810
|
+
leftSize?: number | undefined;
|
|
9811
|
+
topSize?: number | undefined;
|
|
9812
|
+
rightSize?: number | undefined;
|
|
9813
|
+
bottomSize?: number | undefined;
|
|
9814
|
+
leftSide?: {
|
|
9815
|
+
pins: (string | number)[];
|
|
9816
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9817
|
+
} | undefined;
|
|
9818
|
+
topSide?: {
|
|
9819
|
+
pins: (string | number)[];
|
|
9820
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9821
|
+
} | undefined;
|
|
9822
|
+
rightSide?: {
|
|
9823
|
+
pins: (string | number)[];
|
|
9824
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9825
|
+
} | undefined;
|
|
9826
|
+
bottomSide?: {
|
|
9827
|
+
pins: (string | number)[];
|
|
9828
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9829
|
+
} | undefined;
|
|
9830
|
+
leftPinCount?: number | undefined;
|
|
9831
|
+
rightPinCount?: number | undefined;
|
|
9832
|
+
topPinCount?: number | undefined;
|
|
9833
|
+
bottomPinCount?: number | undefined;
|
|
9834
|
+
}, {
|
|
9835
|
+
leftSize?: number | undefined;
|
|
9836
|
+
topSize?: number | undefined;
|
|
9837
|
+
rightSize?: number | undefined;
|
|
9838
|
+
bottomSize?: number | undefined;
|
|
9839
|
+
leftSide?: {
|
|
9840
|
+
pins: (string | number)[];
|
|
9841
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9842
|
+
} | undefined;
|
|
9843
|
+
topSide?: {
|
|
9844
|
+
pins: (string | number)[];
|
|
9845
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9846
|
+
} | undefined;
|
|
9847
|
+
rightSide?: {
|
|
9848
|
+
pins: (string | number)[];
|
|
9849
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9850
|
+
} | undefined;
|
|
9851
|
+
bottomSide?: {
|
|
9852
|
+
pins: (string | number)[];
|
|
9853
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
9854
|
+
} | undefined;
|
|
9855
|
+
leftPinCount?: number | undefined;
|
|
9856
|
+
rightPinCount?: number | undefined;
|
|
9857
|
+
topPinCount?: number | undefined;
|
|
9858
|
+
bottomPinCount?: number | undefined;
|
|
9859
|
+
}>>;
|
|
9028
9860
|
} & {
|
|
9029
9861
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
9030
9862
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -9316,6 +10148,34 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9316
10148
|
matchAdapt?: boolean | undefined;
|
|
9317
10149
|
matchAdaptTemplate?: any;
|
|
9318
10150
|
schTitle?: string | undefined;
|
|
10151
|
+
showAsSchematicBox?: boolean | undefined;
|
|
10152
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
10153
|
+
schPinArrangement?: {
|
|
10154
|
+
leftSize?: number | undefined;
|
|
10155
|
+
topSize?: number | undefined;
|
|
10156
|
+
rightSize?: number | undefined;
|
|
10157
|
+
bottomSize?: number | undefined;
|
|
10158
|
+
leftSide?: {
|
|
10159
|
+
pins: (string | number)[];
|
|
10160
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10161
|
+
} | undefined;
|
|
10162
|
+
topSide?: {
|
|
10163
|
+
pins: (string | number)[];
|
|
10164
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10165
|
+
} | undefined;
|
|
10166
|
+
rightSide?: {
|
|
10167
|
+
pins: (string | number)[];
|
|
10168
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10169
|
+
} | undefined;
|
|
10170
|
+
bottomSide?: {
|
|
10171
|
+
pins: (string | number)[];
|
|
10172
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10173
|
+
} | undefined;
|
|
10174
|
+
leftPinCount?: number | undefined;
|
|
10175
|
+
rightPinCount?: number | undefined;
|
|
10176
|
+
topPinCount?: number | undefined;
|
|
10177
|
+
bottomPinCount?: number | undefined;
|
|
10178
|
+
} | undefined;
|
|
9319
10179
|
pcbWidth?: number | undefined;
|
|
9320
10180
|
pcbHeight?: number | undefined;
|
|
9321
10181
|
schWidth?: number | undefined;
|
|
@@ -9568,6 +10428,34 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
9568
10428
|
matchAdapt?: boolean | undefined;
|
|
9569
10429
|
matchAdaptTemplate?: any;
|
|
9570
10430
|
schTitle?: string | undefined;
|
|
10431
|
+
showAsSchematicBox?: boolean | undefined;
|
|
10432
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
10433
|
+
schPinArrangement?: {
|
|
10434
|
+
leftSize?: number | undefined;
|
|
10435
|
+
topSize?: number | undefined;
|
|
10436
|
+
rightSize?: number | undefined;
|
|
10437
|
+
bottomSize?: number | undefined;
|
|
10438
|
+
leftSide?: {
|
|
10439
|
+
pins: (string | number)[];
|
|
10440
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10441
|
+
} | undefined;
|
|
10442
|
+
topSide?: {
|
|
10443
|
+
pins: (string | number)[];
|
|
10444
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10445
|
+
} | undefined;
|
|
10446
|
+
rightSide?: {
|
|
10447
|
+
pins: (string | number)[];
|
|
10448
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10449
|
+
} | undefined;
|
|
10450
|
+
bottomSide?: {
|
|
10451
|
+
pins: (string | number)[];
|
|
10452
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
10453
|
+
} | undefined;
|
|
10454
|
+
leftPinCount?: number | undefined;
|
|
10455
|
+
rightPinCount?: number | undefined;
|
|
10456
|
+
topPinCount?: number | undefined;
|
|
10457
|
+
bottomPinCount?: number | undefined;
|
|
10458
|
+
} | undefined;
|
|
9571
10459
|
pcbWidth?: string | number | undefined;
|
|
9572
10460
|
pcbHeight?: string | number | undefined;
|
|
9573
10461
|
schWidth?: string | number | undefined;
|
|
@@ -10111,6 +10999,108 @@ declare const boardProps: z.ZodObject<{
|
|
|
10111
10999
|
children: z.ZodOptional<z.ZodAny>;
|
|
10112
11000
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
10113
11001
|
key: z.ZodOptional<z.ZodAny>;
|
|
11002
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
11003
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
11004
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
11005
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
11006
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
11007
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
11008
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
11009
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11010
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11011
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11012
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11013
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
11014
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11015
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11016
|
+
}, "strip", z.ZodTypeAny, {
|
|
11017
|
+
pins: (string | number)[];
|
|
11018
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11019
|
+
}, {
|
|
11020
|
+
pins: (string | number)[];
|
|
11021
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11022
|
+
}>>;
|
|
11023
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
11024
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11025
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11026
|
+
}, "strip", z.ZodTypeAny, {
|
|
11027
|
+
pins: (string | number)[];
|
|
11028
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11029
|
+
}, {
|
|
11030
|
+
pins: (string | number)[];
|
|
11031
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11032
|
+
}>>;
|
|
11033
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
11034
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11035
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11036
|
+
}, "strip", z.ZodTypeAny, {
|
|
11037
|
+
pins: (string | number)[];
|
|
11038
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11039
|
+
}, {
|
|
11040
|
+
pins: (string | number)[];
|
|
11041
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11042
|
+
}>>;
|
|
11043
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
11044
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11045
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11046
|
+
}, "strip", z.ZodTypeAny, {
|
|
11047
|
+
pins: (string | number)[];
|
|
11048
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11049
|
+
}, {
|
|
11050
|
+
pins: (string | number)[];
|
|
11051
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11052
|
+
}>>;
|
|
11053
|
+
}, "strip", z.ZodTypeAny, {
|
|
11054
|
+
leftSize?: number | undefined;
|
|
11055
|
+
topSize?: number | undefined;
|
|
11056
|
+
rightSize?: number | undefined;
|
|
11057
|
+
bottomSize?: number | undefined;
|
|
11058
|
+
leftSide?: {
|
|
11059
|
+
pins: (string | number)[];
|
|
11060
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11061
|
+
} | undefined;
|
|
11062
|
+
topSide?: {
|
|
11063
|
+
pins: (string | number)[];
|
|
11064
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11065
|
+
} | undefined;
|
|
11066
|
+
rightSide?: {
|
|
11067
|
+
pins: (string | number)[];
|
|
11068
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11069
|
+
} | undefined;
|
|
11070
|
+
bottomSide?: {
|
|
11071
|
+
pins: (string | number)[];
|
|
11072
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11073
|
+
} | undefined;
|
|
11074
|
+
leftPinCount?: number | undefined;
|
|
11075
|
+
rightPinCount?: number | undefined;
|
|
11076
|
+
topPinCount?: number | undefined;
|
|
11077
|
+
bottomPinCount?: number | undefined;
|
|
11078
|
+
}, {
|
|
11079
|
+
leftSize?: number | undefined;
|
|
11080
|
+
topSize?: number | undefined;
|
|
11081
|
+
rightSize?: number | undefined;
|
|
11082
|
+
bottomSize?: number | undefined;
|
|
11083
|
+
leftSide?: {
|
|
11084
|
+
pins: (string | number)[];
|
|
11085
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11086
|
+
} | undefined;
|
|
11087
|
+
topSide?: {
|
|
11088
|
+
pins: (string | number)[];
|
|
11089
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11090
|
+
} | undefined;
|
|
11091
|
+
rightSide?: {
|
|
11092
|
+
pins: (string | number)[];
|
|
11093
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11094
|
+
} | undefined;
|
|
11095
|
+
bottomSide?: {
|
|
11096
|
+
pins: (string | number)[];
|
|
11097
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11098
|
+
} | undefined;
|
|
11099
|
+
leftPinCount?: number | undefined;
|
|
11100
|
+
rightPinCount?: number | undefined;
|
|
11101
|
+
topPinCount?: number | undefined;
|
|
11102
|
+
bottomPinCount?: number | undefined;
|
|
11103
|
+
}>>;
|
|
10114
11104
|
} & {
|
|
10115
11105
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
10116
11106
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10405,6 +11395,34 @@ declare const boardProps: z.ZodObject<{
|
|
|
10405
11395
|
matchAdapt?: boolean | undefined;
|
|
10406
11396
|
matchAdaptTemplate?: any;
|
|
10407
11397
|
schTitle?: string | undefined;
|
|
11398
|
+
showAsSchematicBox?: boolean | undefined;
|
|
11399
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
11400
|
+
schPinArrangement?: {
|
|
11401
|
+
leftSize?: number | undefined;
|
|
11402
|
+
topSize?: number | undefined;
|
|
11403
|
+
rightSize?: number | undefined;
|
|
11404
|
+
bottomSize?: number | undefined;
|
|
11405
|
+
leftSide?: {
|
|
11406
|
+
pins: (string | number)[];
|
|
11407
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11408
|
+
} | undefined;
|
|
11409
|
+
topSide?: {
|
|
11410
|
+
pins: (string | number)[];
|
|
11411
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11412
|
+
} | undefined;
|
|
11413
|
+
rightSide?: {
|
|
11414
|
+
pins: (string | number)[];
|
|
11415
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11416
|
+
} | undefined;
|
|
11417
|
+
bottomSide?: {
|
|
11418
|
+
pins: (string | number)[];
|
|
11419
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11420
|
+
} | undefined;
|
|
11421
|
+
leftPinCount?: number | undefined;
|
|
11422
|
+
rightPinCount?: number | undefined;
|
|
11423
|
+
topPinCount?: number | undefined;
|
|
11424
|
+
bottomPinCount?: number | undefined;
|
|
11425
|
+
} | undefined;
|
|
10408
11426
|
pcbWidth?: number | undefined;
|
|
10409
11427
|
pcbHeight?: number | undefined;
|
|
10410
11428
|
schWidth?: number | undefined;
|
|
@@ -10657,6 +11675,34 @@ declare const boardProps: z.ZodObject<{
|
|
|
10657
11675
|
matchAdapt?: boolean | undefined;
|
|
10658
11676
|
matchAdaptTemplate?: any;
|
|
10659
11677
|
schTitle?: string | undefined;
|
|
11678
|
+
showAsSchematicBox?: boolean | undefined;
|
|
11679
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
11680
|
+
schPinArrangement?: {
|
|
11681
|
+
leftSize?: number | undefined;
|
|
11682
|
+
topSize?: number | undefined;
|
|
11683
|
+
rightSize?: number | undefined;
|
|
11684
|
+
bottomSize?: number | undefined;
|
|
11685
|
+
leftSide?: {
|
|
11686
|
+
pins: (string | number)[];
|
|
11687
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11688
|
+
} | undefined;
|
|
11689
|
+
topSide?: {
|
|
11690
|
+
pins: (string | number)[];
|
|
11691
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11692
|
+
} | undefined;
|
|
11693
|
+
rightSide?: {
|
|
11694
|
+
pins: (string | number)[];
|
|
11695
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11696
|
+
} | undefined;
|
|
11697
|
+
bottomSide?: {
|
|
11698
|
+
pins: (string | number)[];
|
|
11699
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11700
|
+
} | undefined;
|
|
11701
|
+
leftPinCount?: number | undefined;
|
|
11702
|
+
rightPinCount?: number | undefined;
|
|
11703
|
+
topPinCount?: number | undefined;
|
|
11704
|
+
bottomPinCount?: number | undefined;
|
|
11705
|
+
} | undefined;
|
|
10660
11706
|
pcbWidth?: string | number | undefined;
|
|
10661
11707
|
pcbHeight?: string | number | undefined;
|
|
10662
11708
|
schWidth?: string | number | undefined;
|
|
@@ -11199,6 +12245,108 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11199
12245
|
children: z.ZodOptional<z.ZodAny>;
|
|
11200
12246
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
11201
12247
|
key: z.ZodOptional<z.ZodAny>;
|
|
12248
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
12249
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
12250
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
12251
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
12252
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
12253
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
12254
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
12255
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12256
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12257
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12258
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12259
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
12260
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12261
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12262
|
+
}, "strip", z.ZodTypeAny, {
|
|
12263
|
+
pins: (string | number)[];
|
|
12264
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12265
|
+
}, {
|
|
12266
|
+
pins: (string | number)[];
|
|
12267
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12268
|
+
}>>;
|
|
12269
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
12270
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12271
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12272
|
+
}, "strip", z.ZodTypeAny, {
|
|
12273
|
+
pins: (string | number)[];
|
|
12274
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12275
|
+
}, {
|
|
12276
|
+
pins: (string | number)[];
|
|
12277
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12278
|
+
}>>;
|
|
12279
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
12280
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12281
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12282
|
+
}, "strip", z.ZodTypeAny, {
|
|
12283
|
+
pins: (string | number)[];
|
|
12284
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12285
|
+
}, {
|
|
12286
|
+
pins: (string | number)[];
|
|
12287
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12288
|
+
}>>;
|
|
12289
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
12290
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12291
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12292
|
+
}, "strip", z.ZodTypeAny, {
|
|
12293
|
+
pins: (string | number)[];
|
|
12294
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12295
|
+
}, {
|
|
12296
|
+
pins: (string | number)[];
|
|
12297
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12298
|
+
}>>;
|
|
12299
|
+
}, "strip", z.ZodTypeAny, {
|
|
12300
|
+
leftSize?: number | undefined;
|
|
12301
|
+
topSize?: number | undefined;
|
|
12302
|
+
rightSize?: number | undefined;
|
|
12303
|
+
bottomSize?: number | undefined;
|
|
12304
|
+
leftSide?: {
|
|
12305
|
+
pins: (string | number)[];
|
|
12306
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12307
|
+
} | undefined;
|
|
12308
|
+
topSide?: {
|
|
12309
|
+
pins: (string | number)[];
|
|
12310
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12311
|
+
} | undefined;
|
|
12312
|
+
rightSide?: {
|
|
12313
|
+
pins: (string | number)[];
|
|
12314
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12315
|
+
} | undefined;
|
|
12316
|
+
bottomSide?: {
|
|
12317
|
+
pins: (string | number)[];
|
|
12318
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12319
|
+
} | undefined;
|
|
12320
|
+
leftPinCount?: number | undefined;
|
|
12321
|
+
rightPinCount?: number | undefined;
|
|
12322
|
+
topPinCount?: number | undefined;
|
|
12323
|
+
bottomPinCount?: number | undefined;
|
|
12324
|
+
}, {
|
|
12325
|
+
leftSize?: number | undefined;
|
|
12326
|
+
topSize?: number | undefined;
|
|
12327
|
+
rightSize?: number | undefined;
|
|
12328
|
+
bottomSize?: number | undefined;
|
|
12329
|
+
leftSide?: {
|
|
12330
|
+
pins: (string | number)[];
|
|
12331
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12332
|
+
} | undefined;
|
|
12333
|
+
topSide?: {
|
|
12334
|
+
pins: (string | number)[];
|
|
12335
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12336
|
+
} | undefined;
|
|
12337
|
+
rightSide?: {
|
|
12338
|
+
pins: (string | number)[];
|
|
12339
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12340
|
+
} | undefined;
|
|
12341
|
+
bottomSide?: {
|
|
12342
|
+
pins: (string | number)[];
|
|
12343
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12344
|
+
} | undefined;
|
|
12345
|
+
leftPinCount?: number | undefined;
|
|
12346
|
+
rightPinCount?: number | undefined;
|
|
12347
|
+
topPinCount?: number | undefined;
|
|
12348
|
+
bottomPinCount?: number | undefined;
|
|
12349
|
+
}>>;
|
|
11202
12350
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
11203
12351
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11204
12352
|
selector: z.ZodString;
|
|
@@ -11492,6 +12640,34 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11492
12640
|
matchAdapt?: boolean | undefined;
|
|
11493
12641
|
matchAdaptTemplate?: any;
|
|
11494
12642
|
schTitle?: string | undefined;
|
|
12643
|
+
showAsSchematicBox?: boolean | undefined;
|
|
12644
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
12645
|
+
schPinArrangement?: {
|
|
12646
|
+
leftSize?: number | undefined;
|
|
12647
|
+
topSize?: number | undefined;
|
|
12648
|
+
rightSize?: number | undefined;
|
|
12649
|
+
bottomSize?: number | undefined;
|
|
12650
|
+
leftSide?: {
|
|
12651
|
+
pins: (string | number)[];
|
|
12652
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12653
|
+
} | undefined;
|
|
12654
|
+
topSide?: {
|
|
12655
|
+
pins: (string | number)[];
|
|
12656
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12657
|
+
} | undefined;
|
|
12658
|
+
rightSide?: {
|
|
12659
|
+
pins: (string | number)[];
|
|
12660
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12661
|
+
} | undefined;
|
|
12662
|
+
bottomSide?: {
|
|
12663
|
+
pins: (string | number)[];
|
|
12664
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12665
|
+
} | undefined;
|
|
12666
|
+
leftPinCount?: number | undefined;
|
|
12667
|
+
rightPinCount?: number | undefined;
|
|
12668
|
+
topPinCount?: number | undefined;
|
|
12669
|
+
bottomPinCount?: number | undefined;
|
|
12670
|
+
} | undefined;
|
|
11495
12671
|
pcbWidth?: number | undefined;
|
|
11496
12672
|
pcbHeight?: number | undefined;
|
|
11497
12673
|
schWidth?: number | undefined;
|
|
@@ -11743,6 +12919,34 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11743
12919
|
matchAdapt?: boolean | undefined;
|
|
11744
12920
|
matchAdaptTemplate?: any;
|
|
11745
12921
|
schTitle?: string | undefined;
|
|
12922
|
+
showAsSchematicBox?: boolean | undefined;
|
|
12923
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
12924
|
+
schPinArrangement?: {
|
|
12925
|
+
leftSize?: number | undefined;
|
|
12926
|
+
topSize?: number | undefined;
|
|
12927
|
+
rightSize?: number | undefined;
|
|
12928
|
+
bottomSize?: number | undefined;
|
|
12929
|
+
leftSide?: {
|
|
12930
|
+
pins: (string | number)[];
|
|
12931
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12932
|
+
} | undefined;
|
|
12933
|
+
topSide?: {
|
|
12934
|
+
pins: (string | number)[];
|
|
12935
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12936
|
+
} | undefined;
|
|
12937
|
+
rightSide?: {
|
|
12938
|
+
pins: (string | number)[];
|
|
12939
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12940
|
+
} | undefined;
|
|
12941
|
+
bottomSide?: {
|
|
12942
|
+
pins: (string | number)[];
|
|
12943
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12944
|
+
} | undefined;
|
|
12945
|
+
leftPinCount?: number | undefined;
|
|
12946
|
+
rightPinCount?: number | undefined;
|
|
12947
|
+
topPinCount?: number | undefined;
|
|
12948
|
+
bottomPinCount?: number | undefined;
|
|
12949
|
+
} | undefined;
|
|
11746
12950
|
pcbWidth?: string | number | undefined;
|
|
11747
12951
|
pcbHeight?: string | number | undefined;
|
|
11748
12952
|
schWidth?: string | number | undefined;
|
|
@@ -11934,78 +13138,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
11934
13138
|
outlineOffsetY?: string | number | undefined;
|
|
11935
13139
|
}>;
|
|
11936
13140
|
|
|
11937
|
-
type ConnectionTarget = string;
|
|
11938
|
-
/**
|
|
11939
|
-
* Defines a mapping of strings to connection paths e.g.
|
|
11940
|
-
*
|
|
11941
|
-
* const connections: Connections = {
|
|
11942
|
-
* GND: ".U1 > .GND",
|
|
11943
|
-
* VCC: ".U1 > .VCC",
|
|
11944
|
-
* }
|
|
11945
|
-
*
|
|
11946
|
-
* Connections are used as both inputs and outputs. For example, you might
|
|
11947
|
-
* receive connections when using `sel` to select a chip.
|
|
11948
|
-
*
|
|
11949
|
-
* const u1Connections = sel.U1(MyChip)
|
|
11950
|
-
*
|
|
11951
|
-
* You can also define a module with connections like this:
|
|
11952
|
-
*
|
|
11953
|
-
* export const MyModule = (props: { connections: { GND: string, VCC: string } }) => {
|
|
11954
|
-
* return (
|
|
11955
|
-
* <group>
|
|
11956
|
-
* <capacitor name="C1" connections={{
|
|
11957
|
-
* anode: props.connections.GND,
|
|
11958
|
-
* cathode: props.connections.VCC,
|
|
11959
|
-
* }} />
|
|
11960
|
-
* </group>
|
|
11961
|
-
* )
|
|
11962
|
-
* }
|
|
11963
|
-
*/
|
|
11964
|
-
type Connections<PinLabel extends string = string> = Partial<Record<PinLabel, ConnectionTarget | ConnectionTarget[] | readonly ConnectionTarget[]>>;
|
|
11965
|
-
/**
|
|
11966
|
-
* Defines a mapping of strings (usually chip names) to connections e.g.
|
|
11967
|
-
*
|
|
11968
|
-
* const selectors: Selectors = {
|
|
11969
|
-
* U1: { GND: ".U1 > .GND", VCC: ".U1 > .VCC" },
|
|
11970
|
-
* U2: {
|
|
11971
|
-
* GND: ".U2 > .pin1",
|
|
11972
|
-
* VCC: ".U2 > .pin2",
|
|
11973
|
-
* CUSTOM_DATA_1: ".U2 > .pin3",
|
|
11974
|
-
* CUSTOM_DATA_2: ".U2 > .pin4",
|
|
11975
|
-
* },
|
|
11976
|
-
* }
|
|
11977
|
-
*
|
|
11978
|
-
* A user can also use selectors to define the connections, this is helpful when
|
|
11979
|
-
* there's multiple chips in the group.
|
|
11980
|
-
*
|
|
11981
|
-
* ```tsx
|
|
11982
|
-
* const MyModule = (props: {
|
|
11983
|
-
* selectors: {
|
|
11984
|
-
* U1: { GND: string, VCC: string },
|
|
11985
|
-
* R1: { GND: string, VCC: string }
|
|
11986
|
-
* }
|
|
11987
|
-
* }) => {
|
|
11988
|
-
* return (
|
|
11989
|
-
* <group>
|
|
11990
|
-
* <resistor name="R1" connections={{
|
|
11991
|
-
* pin1: props.selectors.R1.GND,
|
|
11992
|
-
* pin2: props.selectors.R1.VCC,
|
|
11993
|
-
* }} />
|
|
11994
|
-
* <capacitor name="C1" connections={{
|
|
11995
|
-
* anode: props.selectors.U1.GND,
|
|
11996
|
-
* cathode: props.selectors.U1.VCC,
|
|
11997
|
-
* }} />
|
|
11998
|
-
* </group>
|
|
11999
|
-
* )
|
|
12000
|
-
* }
|
|
12001
|
-
* ```
|
|
12002
|
-
*
|
|
12003
|
-
* These selectors can also be used with "sel":
|
|
12004
|
-
*
|
|
12005
|
-
* sel.M1(MyModule).U1.GND // ".M1 > .C1 > .anode"
|
|
12006
|
-
*/
|
|
12007
|
-
type Selectors = Record<string, Connections>;
|
|
12008
|
-
|
|
12009
13141
|
type PinLabelsProp<PinNumber extends string = string, PinLabel extends string = string> = Record<PinNumber, PinLabel | readonly PinLabel[] | PinLabel[]>;
|
|
12010
13142
|
type PinLabelFromPinLabelMap<PinLabelMap extends PinLabelsProp> = PinLabelMap extends PinLabelsProp<infer PinNumber, infer PinLabel> ? PinLabel : never;
|
|
12011
13143
|
interface PinCompatibleVariant {
|
|
@@ -12684,6 +13816,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12684
13816
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12685
13817
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12686
13818
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
13819
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
12687
13820
|
}, "strip", z.ZodTypeAny, {
|
|
12688
13821
|
providesPower?: boolean | undefined;
|
|
12689
13822
|
requiresPower?: boolean | undefined;
|
|
@@ -12692,6 +13825,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12692
13825
|
providesVoltage?: string | number | undefined;
|
|
12693
13826
|
requiresVoltage?: string | number | undefined;
|
|
12694
13827
|
doNotConnect?: boolean | undefined;
|
|
13828
|
+
includeInBoardPinout?: boolean | undefined;
|
|
12695
13829
|
}, {
|
|
12696
13830
|
providesPower?: boolean | undefined;
|
|
12697
13831
|
requiresPower?: boolean | undefined;
|
|
@@ -12700,6 +13834,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12700
13834
|
providesVoltage?: string | number | undefined;
|
|
12701
13835
|
requiresVoltage?: string | number | undefined;
|
|
12702
13836
|
doNotConnect?: boolean | undefined;
|
|
13837
|
+
includeInBoardPinout?: boolean | undefined;
|
|
12703
13838
|
}>>>;
|
|
12704
13839
|
} & {
|
|
12705
13840
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -12988,6 +14123,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
12988
14123
|
providesVoltage?: string | number | undefined;
|
|
12989
14124
|
requiresVoltage?: string | number | undefined;
|
|
12990
14125
|
doNotConnect?: boolean | undefined;
|
|
14126
|
+
includeInBoardPinout?: boolean | undefined;
|
|
12991
14127
|
}> | undefined;
|
|
12992
14128
|
cadModel?: string | {
|
|
12993
14129
|
stlUrl: string;
|
|
@@ -13120,14 +14256,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13120
14256
|
children?: any;
|
|
13121
14257
|
symbolName?: string | undefined;
|
|
13122
14258
|
doNotPlace?: boolean | undefined;
|
|
13123
|
-
|
|
13124
|
-
schHeight?: number | undefined;
|
|
13125
|
-
manufacturerPartNumber?: string | undefined;
|
|
13126
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
13127
|
-
showPinAliases?: boolean | undefined;
|
|
13128
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
13129
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
13130
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
14259
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
13131
14260
|
schPinArrangement?: {
|
|
13132
14261
|
leftSize?: number | undefined;
|
|
13133
14262
|
topSize?: number | undefined;
|
|
@@ -13154,6 +14283,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
13154
14283
|
topPinCount?: number | undefined;
|
|
13155
14284
|
bottomPinCount?: number | undefined;
|
|
13156
14285
|
} | undefined;
|
|
14286
|
+
schWidth?: number | undefined;
|
|
14287
|
+
schHeight?: number | undefined;
|
|
14288
|
+
manufacturerPartNumber?: string | undefined;
|
|
14289
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14290
|
+
showPinAliases?: boolean | undefined;
|
|
14291
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
14292
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
14293
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
13157
14294
|
schPortArrangement?: {
|
|
13158
14295
|
leftSize?: number | undefined;
|
|
13159
14296
|
topSize?: number | undefined;
|
|
@@ -13196,7 +14333,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
13196
14333
|
}> | undefined;
|
|
13197
14334
|
schPinSpacing?: number | undefined;
|
|
13198
14335
|
noSchematicRepresentation?: boolean | undefined;
|
|
13199
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
13200
14336
|
}, {
|
|
13201
14337
|
name: string;
|
|
13202
14338
|
symbol?: SymbolProp | undefined;
|
|
@@ -13236,6 +14372,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13236
14372
|
providesVoltage?: string | number | undefined;
|
|
13237
14373
|
requiresVoltage?: string | number | undefined;
|
|
13238
14374
|
doNotConnect?: boolean | undefined;
|
|
14375
|
+
includeInBoardPinout?: boolean | undefined;
|
|
13239
14376
|
}> | undefined;
|
|
13240
14377
|
cadModel?: string | {
|
|
13241
14378
|
stlUrl: string;
|
|
@@ -13368,14 +14505,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13368
14505
|
children?: any;
|
|
13369
14506
|
symbolName?: string | undefined;
|
|
13370
14507
|
doNotPlace?: boolean | undefined;
|
|
13371
|
-
|
|
13372
|
-
schHeight?: string | number | undefined;
|
|
13373
|
-
manufacturerPartNumber?: string | undefined;
|
|
13374
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
13375
|
-
showPinAliases?: boolean | undefined;
|
|
13376
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
13377
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
13378
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
14508
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
13379
14509
|
schPinArrangement?: {
|
|
13380
14510
|
leftSize?: number | undefined;
|
|
13381
14511
|
topSize?: number | undefined;
|
|
@@ -13402,6 +14532,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
13402
14532
|
topPinCount?: number | undefined;
|
|
13403
14533
|
bottomPinCount?: number | undefined;
|
|
13404
14534
|
} | undefined;
|
|
14535
|
+
schWidth?: string | number | undefined;
|
|
14536
|
+
schHeight?: string | number | undefined;
|
|
14537
|
+
manufacturerPartNumber?: string | undefined;
|
|
14538
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14539
|
+
showPinAliases?: boolean | undefined;
|
|
14540
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
14541
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
14542
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
13405
14543
|
schPortArrangement?: {
|
|
13406
14544
|
leftSize?: number | undefined;
|
|
13407
14545
|
topSize?: number | undefined;
|
|
@@ -13444,7 +14582,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
13444
14582
|
}> | undefined;
|
|
13445
14583
|
schPinSpacing?: string | number | undefined;
|
|
13446
14584
|
noSchematicRepresentation?: boolean | undefined;
|
|
13447
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
13448
14585
|
}>;
|
|
13449
14586
|
/**
|
|
13450
14587
|
* @deprecated Use ChipProps instead.
|
|
@@ -14056,6 +15193,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14056
15193
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14057
15194
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14058
15195
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
15196
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
14059
15197
|
}, "strip", z.ZodTypeAny, {
|
|
14060
15198
|
providesPower?: boolean | undefined;
|
|
14061
15199
|
requiresPower?: boolean | undefined;
|
|
@@ -14064,6 +15202,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14064
15202
|
providesVoltage?: string | number | undefined;
|
|
14065
15203
|
requiresVoltage?: string | number | undefined;
|
|
14066
15204
|
doNotConnect?: boolean | undefined;
|
|
15205
|
+
includeInBoardPinout?: boolean | undefined;
|
|
14067
15206
|
}, {
|
|
14068
15207
|
providesPower?: boolean | undefined;
|
|
14069
15208
|
requiresPower?: boolean | undefined;
|
|
@@ -14072,6 +15211,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14072
15211
|
providesVoltage?: string | number | undefined;
|
|
14073
15212
|
requiresVoltage?: string | number | undefined;
|
|
14074
15213
|
doNotConnect?: boolean | undefined;
|
|
15214
|
+
includeInBoardPinout?: boolean | undefined;
|
|
14075
15215
|
}>>>;
|
|
14076
15216
|
} & {
|
|
14077
15217
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -14360,6 +15500,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14360
15500
|
providesVoltage?: string | number | undefined;
|
|
14361
15501
|
requiresVoltage?: string | number | undefined;
|
|
14362
15502
|
doNotConnect?: boolean | undefined;
|
|
15503
|
+
includeInBoardPinout?: boolean | undefined;
|
|
14363
15504
|
}> | undefined;
|
|
14364
15505
|
cadModel?: string | {
|
|
14365
15506
|
stlUrl: string;
|
|
@@ -14492,14 +15633,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14492
15633
|
children?: any;
|
|
14493
15634
|
symbolName?: string | undefined;
|
|
14494
15635
|
doNotPlace?: boolean | undefined;
|
|
14495
|
-
|
|
14496
|
-
schHeight?: number | undefined;
|
|
14497
|
-
manufacturerPartNumber?: string | undefined;
|
|
14498
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14499
|
-
showPinAliases?: boolean | undefined;
|
|
14500
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
14501
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
14502
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
15636
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14503
15637
|
schPinArrangement?: {
|
|
14504
15638
|
leftSize?: number | undefined;
|
|
14505
15639
|
topSize?: number | undefined;
|
|
@@ -14526,6 +15660,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
14526
15660
|
topPinCount?: number | undefined;
|
|
14527
15661
|
bottomPinCount?: number | undefined;
|
|
14528
15662
|
} | undefined;
|
|
15663
|
+
schWidth?: number | undefined;
|
|
15664
|
+
schHeight?: number | undefined;
|
|
15665
|
+
manufacturerPartNumber?: string | undefined;
|
|
15666
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15667
|
+
showPinAliases?: boolean | undefined;
|
|
15668
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
15669
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
15670
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
14529
15671
|
schPortArrangement?: {
|
|
14530
15672
|
leftSize?: number | undefined;
|
|
14531
15673
|
topSize?: number | undefined;
|
|
@@ -14568,7 +15710,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
14568
15710
|
}> | undefined;
|
|
14569
15711
|
schPinSpacing?: number | undefined;
|
|
14570
15712
|
noSchematicRepresentation?: boolean | undefined;
|
|
14571
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14572
15713
|
}, {
|
|
14573
15714
|
name: string;
|
|
14574
15715
|
symbol?: SymbolProp | undefined;
|
|
@@ -14608,6 +15749,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14608
15749
|
providesVoltage?: string | number | undefined;
|
|
14609
15750
|
requiresVoltage?: string | number | undefined;
|
|
14610
15751
|
doNotConnect?: boolean | undefined;
|
|
15752
|
+
includeInBoardPinout?: boolean | undefined;
|
|
14611
15753
|
}> | undefined;
|
|
14612
15754
|
cadModel?: string | {
|
|
14613
15755
|
stlUrl: string;
|
|
@@ -14740,14 +15882,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
14740
15882
|
children?: any;
|
|
14741
15883
|
symbolName?: string | undefined;
|
|
14742
15884
|
doNotPlace?: boolean | undefined;
|
|
14743
|
-
|
|
14744
|
-
schHeight?: string | number | undefined;
|
|
14745
|
-
manufacturerPartNumber?: string | undefined;
|
|
14746
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
14747
|
-
showPinAliases?: boolean | undefined;
|
|
14748
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
14749
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
14750
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
15885
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
14751
15886
|
schPinArrangement?: {
|
|
14752
15887
|
leftSize?: number | undefined;
|
|
14753
15888
|
topSize?: number | undefined;
|
|
@@ -14774,6 +15909,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
14774
15909
|
topPinCount?: number | undefined;
|
|
14775
15910
|
bottomPinCount?: number | undefined;
|
|
14776
15911
|
} | undefined;
|
|
15912
|
+
schWidth?: string | number | undefined;
|
|
15913
|
+
schHeight?: string | number | undefined;
|
|
15914
|
+
manufacturerPartNumber?: string | undefined;
|
|
15915
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15916
|
+
showPinAliases?: boolean | undefined;
|
|
15917
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
15918
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
15919
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
14777
15920
|
schPortArrangement?: {
|
|
14778
15921
|
leftSize?: number | undefined;
|
|
14779
15922
|
topSize?: number | undefined;
|
|
@@ -14816,7 +15959,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
14816
15959
|
}> | undefined;
|
|
14817
15960
|
schPinSpacing?: string | number | undefined;
|
|
14818
15961
|
noSchematicRepresentation?: boolean | undefined;
|
|
14819
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
14820
15962
|
}>;
|
|
14821
15963
|
type InferredChipProps = z.input<typeof chipProps>;
|
|
14822
15964
|
|
|
@@ -15427,6 +16569,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15427
16569
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15428
16570
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15429
16571
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16572
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
15430
16573
|
}, "strip", z.ZodTypeAny, {
|
|
15431
16574
|
providesPower?: boolean | undefined;
|
|
15432
16575
|
requiresPower?: boolean | undefined;
|
|
@@ -15435,6 +16578,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15435
16578
|
providesVoltage?: string | number | undefined;
|
|
15436
16579
|
requiresVoltage?: string | number | undefined;
|
|
15437
16580
|
doNotConnect?: boolean | undefined;
|
|
16581
|
+
includeInBoardPinout?: boolean | undefined;
|
|
15438
16582
|
}, {
|
|
15439
16583
|
providesPower?: boolean | undefined;
|
|
15440
16584
|
requiresPower?: boolean | undefined;
|
|
@@ -15443,6 +16587,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15443
16587
|
providesVoltage?: string | number | undefined;
|
|
15444
16588
|
requiresVoltage?: string | number | undefined;
|
|
15445
16589
|
doNotConnect?: boolean | undefined;
|
|
16590
|
+
includeInBoardPinout?: boolean | undefined;
|
|
15446
16591
|
}>>>;
|
|
15447
16592
|
} & {
|
|
15448
16593
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -15731,6 +16876,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15731
16876
|
providesVoltage?: string | number | undefined;
|
|
15732
16877
|
requiresVoltage?: string | number | undefined;
|
|
15733
16878
|
doNotConnect?: boolean | undefined;
|
|
16879
|
+
includeInBoardPinout?: boolean | undefined;
|
|
15734
16880
|
}> | undefined;
|
|
15735
16881
|
cadModel?: string | {
|
|
15736
16882
|
stlUrl: string;
|
|
@@ -15863,14 +17009,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15863
17009
|
children?: any;
|
|
15864
17010
|
symbolName?: string | undefined;
|
|
15865
17011
|
doNotPlace?: boolean | undefined;
|
|
15866
|
-
|
|
15867
|
-
schHeight?: number | undefined;
|
|
15868
|
-
manufacturerPartNumber?: string | undefined;
|
|
15869
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15870
|
-
showPinAliases?: boolean | undefined;
|
|
15871
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
15872
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
15873
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
17012
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15874
17013
|
schPinArrangement?: {
|
|
15875
17014
|
leftSize?: number | undefined;
|
|
15876
17015
|
topSize?: number | undefined;
|
|
@@ -15897,6 +17036,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15897
17036
|
topPinCount?: number | undefined;
|
|
15898
17037
|
bottomPinCount?: number | undefined;
|
|
15899
17038
|
} | undefined;
|
|
17039
|
+
schWidth?: number | undefined;
|
|
17040
|
+
schHeight?: number | undefined;
|
|
17041
|
+
manufacturerPartNumber?: string | undefined;
|
|
17042
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17043
|
+
showPinAliases?: boolean | undefined;
|
|
17044
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
17045
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
17046
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
15900
17047
|
schPortArrangement?: {
|
|
15901
17048
|
leftSize?: number | undefined;
|
|
15902
17049
|
topSize?: number | undefined;
|
|
@@ -15939,7 +17086,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15939
17086
|
}> | undefined;
|
|
15940
17087
|
schPinSpacing?: number | undefined;
|
|
15941
17088
|
noSchematicRepresentation?: boolean | undefined;
|
|
15942
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
15943
17089
|
}, {
|
|
15944
17090
|
name: string;
|
|
15945
17091
|
symbol?: SymbolProp | undefined;
|
|
@@ -15979,6 +17125,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
15979
17125
|
providesVoltage?: string | number | undefined;
|
|
15980
17126
|
requiresVoltage?: string | number | undefined;
|
|
15981
17127
|
doNotConnect?: boolean | undefined;
|
|
17128
|
+
includeInBoardPinout?: boolean | undefined;
|
|
15982
17129
|
}> | undefined;
|
|
15983
17130
|
cadModel?: string | {
|
|
15984
17131
|
stlUrl: string;
|
|
@@ -16111,14 +17258,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16111
17258
|
children?: any;
|
|
16112
17259
|
symbolName?: string | undefined;
|
|
16113
17260
|
doNotPlace?: boolean | undefined;
|
|
16114
|
-
|
|
16115
|
-
schHeight?: string | number | undefined;
|
|
16116
|
-
manufacturerPartNumber?: string | undefined;
|
|
16117
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
16118
|
-
showPinAliases?: boolean | undefined;
|
|
16119
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
16120
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
16121
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
17261
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
16122
17262
|
schPinArrangement?: {
|
|
16123
17263
|
leftSize?: number | undefined;
|
|
16124
17264
|
topSize?: number | undefined;
|
|
@@ -16145,6 +17285,14 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16145
17285
|
topPinCount?: number | undefined;
|
|
16146
17286
|
bottomPinCount?: number | undefined;
|
|
16147
17287
|
} | undefined;
|
|
17288
|
+
schWidth?: string | number | undefined;
|
|
17289
|
+
schHeight?: string | number | undefined;
|
|
17290
|
+
manufacturerPartNumber?: string | undefined;
|
|
17291
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17292
|
+
showPinAliases?: boolean | undefined;
|
|
17293
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
17294
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
17295
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
16148
17296
|
schPortArrangement?: {
|
|
16149
17297
|
leftSize?: number | undefined;
|
|
16150
17298
|
topSize?: number | undefined;
|
|
@@ -16187,7 +17335,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16187
17335
|
}> | undefined;
|
|
16188
17336
|
schPinSpacing?: string | number | undefined;
|
|
16189
17337
|
noSchematicRepresentation?: boolean | undefined;
|
|
16190
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
16191
17338
|
}>;
|
|
16192
17339
|
interface PinoutProps<PinLabelMap extends PinLabelsProp | string = string> extends ChipProps<PinLabelMap> {
|
|
16193
17340
|
}
|
|
@@ -16830,6 +17977,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
16830
17977
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16831
17978
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16832
17979
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
17980
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
16833
17981
|
}, "strip", z.ZodTypeAny, {
|
|
16834
17982
|
providesPower?: boolean | undefined;
|
|
16835
17983
|
requiresPower?: boolean | undefined;
|
|
@@ -16838,6 +17986,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
16838
17986
|
providesVoltage?: string | number | undefined;
|
|
16839
17987
|
requiresVoltage?: string | number | undefined;
|
|
16840
17988
|
doNotConnect?: boolean | undefined;
|
|
17989
|
+
includeInBoardPinout?: boolean | undefined;
|
|
16841
17990
|
}, {
|
|
16842
17991
|
providesPower?: boolean | undefined;
|
|
16843
17992
|
requiresPower?: boolean | undefined;
|
|
@@ -16846,6 +17995,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
16846
17995
|
providesVoltage?: string | number | undefined;
|
|
16847
17996
|
requiresVoltage?: string | number | undefined;
|
|
16848
17997
|
doNotConnect?: boolean | undefined;
|
|
17998
|
+
includeInBoardPinout?: boolean | undefined;
|
|
16849
17999
|
}>>>;
|
|
16850
18000
|
} & {
|
|
16851
18001
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -17123,6 +18273,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17123
18273
|
providesVoltage?: string | number | undefined;
|
|
17124
18274
|
requiresVoltage?: string | number | undefined;
|
|
17125
18275
|
doNotConnect?: boolean | undefined;
|
|
18276
|
+
includeInBoardPinout?: boolean | undefined;
|
|
17126
18277
|
}> | undefined;
|
|
17127
18278
|
cadModel?: string | {
|
|
17128
18279
|
stlUrl: string;
|
|
@@ -17255,12 +18406,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17255
18406
|
children?: any;
|
|
17256
18407
|
symbolName?: string | undefined;
|
|
17257
18408
|
doNotPlace?: boolean | undefined;
|
|
17258
|
-
|
|
17259
|
-
schHeight?: number | undefined;
|
|
17260
|
-
manufacturerPartNumber?: string | undefined;
|
|
17261
|
-
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
17262
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
17263
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
18409
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17264
18410
|
schPinArrangement?: {
|
|
17265
18411
|
leftSize?: number | undefined;
|
|
17266
18412
|
topSize?: number | undefined;
|
|
@@ -17287,6 +18433,12 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17287
18433
|
topPinCount?: number | undefined;
|
|
17288
18434
|
bottomPinCount?: number | undefined;
|
|
17289
18435
|
} | undefined;
|
|
18436
|
+
schWidth?: number | undefined;
|
|
18437
|
+
schHeight?: number | undefined;
|
|
18438
|
+
manufacturerPartNumber?: string | undefined;
|
|
18439
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
18440
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
18441
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
17290
18442
|
schPortArrangement?: {
|
|
17291
18443
|
leftSize?: number | undefined;
|
|
17292
18444
|
topSize?: number | undefined;
|
|
@@ -17324,7 +18476,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17324
18476
|
bottomMargin?: number | undefined;
|
|
17325
18477
|
}> | undefined;
|
|
17326
18478
|
schPinSpacing?: number | undefined;
|
|
17327
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
17328
18479
|
schDirection?: "left" | "right" | undefined;
|
|
17329
18480
|
pinCount?: 2 | 3 | undefined;
|
|
17330
18481
|
}, {
|
|
@@ -17366,6 +18517,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17366
18517
|
providesVoltage?: string | number | undefined;
|
|
17367
18518
|
requiresVoltage?: string | number | undefined;
|
|
17368
18519
|
doNotConnect?: boolean | undefined;
|
|
18520
|
+
includeInBoardPinout?: boolean | undefined;
|
|
17369
18521
|
}> | undefined;
|
|
17370
18522
|
cadModel?: string | {
|
|
17371
18523
|
stlUrl: string;
|
|
@@ -17498,12 +18650,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17498
18650
|
children?: any;
|
|
17499
18651
|
symbolName?: string | undefined;
|
|
17500
18652
|
doNotPlace?: boolean | undefined;
|
|
17501
|
-
|
|
17502
|
-
schHeight?: string | number | undefined;
|
|
17503
|
-
manufacturerPartNumber?: string | undefined;
|
|
17504
|
-
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
17505
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
17506
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
18653
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
17507
18654
|
schPinArrangement?: {
|
|
17508
18655
|
leftSize?: number | undefined;
|
|
17509
18656
|
topSize?: number | undefined;
|
|
@@ -17530,6 +18677,12 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17530
18677
|
topPinCount?: number | undefined;
|
|
17531
18678
|
bottomPinCount?: number | undefined;
|
|
17532
18679
|
} | undefined;
|
|
18680
|
+
schWidth?: string | number | undefined;
|
|
18681
|
+
schHeight?: string | number | undefined;
|
|
18682
|
+
manufacturerPartNumber?: string | undefined;
|
|
18683
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
18684
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
18685
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
17533
18686
|
schPortArrangement?: {
|
|
17534
18687
|
leftSize?: number | undefined;
|
|
17535
18688
|
topSize?: number | undefined;
|
|
@@ -17567,7 +18720,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
17567
18720
|
bottomMargin?: string | number | undefined;
|
|
17568
18721
|
}> | undefined;
|
|
17569
18722
|
schPinSpacing?: string | number | undefined;
|
|
17570
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
17571
18723
|
schDirection?: "left" | "right" | undefined;
|
|
17572
18724
|
pinCount?: 2 | 3 | undefined;
|
|
17573
18725
|
}>;
|
|
@@ -18189,6 +19341,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18189
19341
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18190
19342
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18191
19343
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
19344
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
18192
19345
|
}, "strip", z.ZodTypeAny, {
|
|
18193
19346
|
providesPower?: boolean | undefined;
|
|
18194
19347
|
requiresPower?: boolean | undefined;
|
|
@@ -18197,6 +19350,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18197
19350
|
providesVoltage?: string | number | undefined;
|
|
18198
19351
|
requiresVoltage?: string | number | undefined;
|
|
18199
19352
|
doNotConnect?: boolean | undefined;
|
|
19353
|
+
includeInBoardPinout?: boolean | undefined;
|
|
18200
19354
|
}, {
|
|
18201
19355
|
providesPower?: boolean | undefined;
|
|
18202
19356
|
requiresPower?: boolean | undefined;
|
|
@@ -18205,6 +19359,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18205
19359
|
providesVoltage?: string | number | undefined;
|
|
18206
19360
|
requiresVoltage?: string | number | undefined;
|
|
18207
19361
|
doNotConnect?: boolean | undefined;
|
|
19362
|
+
includeInBoardPinout?: boolean | undefined;
|
|
18208
19363
|
}>>>;
|
|
18209
19364
|
} & {
|
|
18210
19365
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -18485,6 +19640,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18485
19640
|
providesVoltage?: string | number | undefined;
|
|
18486
19641
|
requiresVoltage?: string | number | undefined;
|
|
18487
19642
|
doNotConnect?: boolean | undefined;
|
|
19643
|
+
includeInBoardPinout?: boolean | undefined;
|
|
18488
19644
|
}> | undefined;
|
|
18489
19645
|
cadModel?: string | {
|
|
18490
19646
|
stlUrl: string;
|
|
@@ -18617,12 +19773,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18617
19773
|
children?: any;
|
|
18618
19774
|
symbolName?: string | undefined;
|
|
18619
19775
|
doNotPlace?: boolean | undefined;
|
|
18620
|
-
|
|
18621
|
-
schHeight?: number | undefined;
|
|
18622
|
-
manufacturerPartNumber?: string | undefined;
|
|
18623
|
-
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
18624
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
18625
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
19776
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
18626
19777
|
schPinArrangement?: {
|
|
18627
19778
|
leftSize?: number | undefined;
|
|
18628
19779
|
topSize?: number | undefined;
|
|
@@ -18649,6 +19800,12 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18649
19800
|
topPinCount?: number | undefined;
|
|
18650
19801
|
bottomPinCount?: number | undefined;
|
|
18651
19802
|
} | undefined;
|
|
19803
|
+
schWidth?: number | undefined;
|
|
19804
|
+
schHeight?: number | undefined;
|
|
19805
|
+
manufacturerPartNumber?: string | undefined;
|
|
19806
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
19807
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
19808
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
18652
19809
|
schPortArrangement?: {
|
|
18653
19810
|
leftSize?: number | undefined;
|
|
18654
19811
|
topSize?: number | undefined;
|
|
@@ -18686,7 +19843,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18686
19843
|
bottomMargin?: number | undefined;
|
|
18687
19844
|
}> | undefined;
|
|
18688
19845
|
schPinSpacing?: number | undefined;
|
|
18689
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
18690
19846
|
schDirection?: "left" | "right" | undefined;
|
|
18691
19847
|
pinCount?: 2 | 3 | undefined;
|
|
18692
19848
|
bridgedPins?: string[][] | undefined;
|
|
@@ -18730,6 +19886,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18730
19886
|
providesVoltage?: string | number | undefined;
|
|
18731
19887
|
requiresVoltage?: string | number | undefined;
|
|
18732
19888
|
doNotConnect?: boolean | undefined;
|
|
19889
|
+
includeInBoardPinout?: boolean | undefined;
|
|
18733
19890
|
}> | undefined;
|
|
18734
19891
|
cadModel?: string | {
|
|
18735
19892
|
stlUrl: string;
|
|
@@ -18862,12 +20019,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18862
20019
|
children?: any;
|
|
18863
20020
|
symbolName?: string | undefined;
|
|
18864
20021
|
doNotPlace?: boolean | undefined;
|
|
18865
|
-
|
|
18866
|
-
schHeight?: string | number | undefined;
|
|
18867
|
-
manufacturerPartNumber?: string | undefined;
|
|
18868
|
-
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
18869
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
18870
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
20022
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
18871
20023
|
schPinArrangement?: {
|
|
18872
20024
|
leftSize?: number | undefined;
|
|
18873
20025
|
topSize?: number | undefined;
|
|
@@ -18894,6 +20046,12 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18894
20046
|
topPinCount?: number | undefined;
|
|
18895
20047
|
bottomPinCount?: number | undefined;
|
|
18896
20048
|
} | undefined;
|
|
20049
|
+
schWidth?: string | number | undefined;
|
|
20050
|
+
schHeight?: string | number | undefined;
|
|
20051
|
+
manufacturerPartNumber?: string | undefined;
|
|
20052
|
+
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
20053
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
20054
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
18897
20055
|
schPortArrangement?: {
|
|
18898
20056
|
leftSize?: number | undefined;
|
|
18899
20057
|
topSize?: number | undefined;
|
|
@@ -18931,7 +20089,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
18931
20089
|
bottomMargin?: string | number | undefined;
|
|
18932
20090
|
}> | undefined;
|
|
18933
20091
|
schPinSpacing?: string | number | undefined;
|
|
18934
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
18935
20092
|
schDirection?: "left" | "right" | undefined;
|
|
18936
20093
|
pinCount?: 2 | 3 | undefined;
|
|
18937
20094
|
bridgedPins?: string[][] | undefined;
|
|
@@ -19564,6 +20721,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19564
20721
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19565
20722
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19566
20723
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
20724
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
19567
20725
|
}, "strip", z.ZodTypeAny, {
|
|
19568
20726
|
providesPower?: boolean | undefined;
|
|
19569
20727
|
requiresPower?: boolean | undefined;
|
|
@@ -19572,6 +20730,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19572
20730
|
providesVoltage?: string | number | undefined;
|
|
19573
20731
|
requiresVoltage?: string | number | undefined;
|
|
19574
20732
|
doNotConnect?: boolean | undefined;
|
|
20733
|
+
includeInBoardPinout?: boolean | undefined;
|
|
19575
20734
|
}, {
|
|
19576
20735
|
providesPower?: boolean | undefined;
|
|
19577
20736
|
requiresPower?: boolean | undefined;
|
|
@@ -19580,6 +20739,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19580
20739
|
providesVoltage?: string | number | undefined;
|
|
19581
20740
|
requiresVoltage?: string | number | undefined;
|
|
19582
20741
|
doNotConnect?: boolean | undefined;
|
|
20742
|
+
includeInBoardPinout?: boolean | undefined;
|
|
19583
20743
|
}>>>;
|
|
19584
20744
|
} & {
|
|
19585
20745
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -19755,6 +20915,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19755
20915
|
providesVoltage?: string | number | undefined;
|
|
19756
20916
|
requiresVoltage?: string | number | undefined;
|
|
19757
20917
|
doNotConnect?: boolean | undefined;
|
|
20918
|
+
includeInBoardPinout?: boolean | undefined;
|
|
19758
20919
|
}> | undefined;
|
|
19759
20920
|
cadModel?: string | {
|
|
19760
20921
|
stlUrl: string;
|
|
@@ -19970,6 +21131,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
19970
21131
|
providesVoltage?: string | number | undefined;
|
|
19971
21132
|
requiresVoltage?: string | number | undefined;
|
|
19972
21133
|
doNotConnect?: boolean | undefined;
|
|
21134
|
+
includeInBoardPinout?: boolean | undefined;
|
|
19973
21135
|
}> | undefined;
|
|
19974
21136
|
cadModel?: string | {
|
|
19975
21137
|
stlUrl: string;
|
|
@@ -20782,6 +21944,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20782
21944
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20783
21945
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20784
21946
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
21947
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
20785
21948
|
}, "strip", z.ZodTypeAny, {
|
|
20786
21949
|
providesPower?: boolean | undefined;
|
|
20787
21950
|
requiresPower?: boolean | undefined;
|
|
@@ -20790,6 +21953,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20790
21953
|
providesVoltage?: string | number | undefined;
|
|
20791
21954
|
requiresVoltage?: string | number | undefined;
|
|
20792
21955
|
doNotConnect?: boolean | undefined;
|
|
21956
|
+
includeInBoardPinout?: boolean | undefined;
|
|
20793
21957
|
}, {
|
|
20794
21958
|
providesPower?: boolean | undefined;
|
|
20795
21959
|
requiresPower?: boolean | undefined;
|
|
@@ -20798,6 +21962,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20798
21962
|
providesVoltage?: string | number | undefined;
|
|
20799
21963
|
requiresVoltage?: string | number | undefined;
|
|
20800
21964
|
doNotConnect?: boolean | undefined;
|
|
21965
|
+
includeInBoardPinout?: boolean | undefined;
|
|
20801
21966
|
}>>>;
|
|
20802
21967
|
} & {
|
|
20803
21968
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -20843,6 +22008,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
20843
22008
|
providesVoltage?: string | number | undefined;
|
|
20844
22009
|
requiresVoltage?: string | number | undefined;
|
|
20845
22010
|
doNotConnect?: boolean | undefined;
|
|
22011
|
+
includeInBoardPinout?: boolean | undefined;
|
|
20846
22012
|
}> | undefined;
|
|
20847
22013
|
cadModel?: string | {
|
|
20848
22014
|
stlUrl: string;
|
|
@@ -21019,6 +22185,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
21019
22185
|
providesVoltage?: string | number | undefined;
|
|
21020
22186
|
requiresVoltage?: string | number | undefined;
|
|
21021
22187
|
doNotConnect?: boolean | undefined;
|
|
22188
|
+
includeInBoardPinout?: boolean | undefined;
|
|
21022
22189
|
}> | undefined;
|
|
21023
22190
|
cadModel?: string | {
|
|
21024
22191
|
stlUrl: string;
|
|
@@ -22446,6 +23613,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22446
23613
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22447
23614
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22448
23615
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
23616
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
22449
23617
|
}, "strip", z.ZodTypeAny, {
|
|
22450
23618
|
providesPower?: boolean | undefined;
|
|
22451
23619
|
requiresPower?: boolean | undefined;
|
|
@@ -22454,6 +23622,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22454
23622
|
providesVoltage?: string | number | undefined;
|
|
22455
23623
|
requiresVoltage?: string | number | undefined;
|
|
22456
23624
|
doNotConnect?: boolean | undefined;
|
|
23625
|
+
includeInBoardPinout?: boolean | undefined;
|
|
22457
23626
|
}, {
|
|
22458
23627
|
providesPower?: boolean | undefined;
|
|
22459
23628
|
requiresPower?: boolean | undefined;
|
|
@@ -22462,6 +23631,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22462
23631
|
providesVoltage?: string | number | undefined;
|
|
22463
23632
|
requiresVoltage?: string | number | undefined;
|
|
22464
23633
|
doNotConnect?: boolean | undefined;
|
|
23634
|
+
includeInBoardPinout?: boolean | undefined;
|
|
22465
23635
|
}>>>;
|
|
22466
23636
|
} & {
|
|
22467
23637
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -22509,6 +23679,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22509
23679
|
providesVoltage?: string | number | undefined;
|
|
22510
23680
|
requiresVoltage?: string | number | undefined;
|
|
22511
23681
|
doNotConnect?: boolean | undefined;
|
|
23682
|
+
includeInBoardPinout?: boolean | undefined;
|
|
22512
23683
|
}> | undefined;
|
|
22513
23684
|
cadModel?: string | {
|
|
22514
23685
|
stlUrl: string;
|
|
@@ -22687,6 +23858,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
22687
23858
|
providesVoltage?: string | number | undefined;
|
|
22688
23859
|
requiresVoltage?: string | number | undefined;
|
|
22689
23860
|
doNotConnect?: boolean | undefined;
|
|
23861
|
+
includeInBoardPinout?: boolean | undefined;
|
|
22690
23862
|
}> | undefined;
|
|
22691
23863
|
cadModel?: string | {
|
|
22692
23864
|
stlUrl: string;
|
|
@@ -23440,6 +24612,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23440
24612
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23441
24613
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23442
24614
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
24615
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
23443
24616
|
}, "strip", z.ZodTypeAny, {
|
|
23444
24617
|
providesPower?: boolean | undefined;
|
|
23445
24618
|
requiresPower?: boolean | undefined;
|
|
@@ -23448,6 +24621,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23448
24621
|
providesVoltage?: string | number | undefined;
|
|
23449
24622
|
requiresVoltage?: string | number | undefined;
|
|
23450
24623
|
doNotConnect?: boolean | undefined;
|
|
24624
|
+
includeInBoardPinout?: boolean | undefined;
|
|
23451
24625
|
}, {
|
|
23452
24626
|
providesPower?: boolean | undefined;
|
|
23453
24627
|
requiresPower?: boolean | undefined;
|
|
@@ -23456,6 +24630,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23456
24630
|
providesVoltage?: string | number | undefined;
|
|
23457
24631
|
requiresVoltage?: string | number | undefined;
|
|
23458
24632
|
doNotConnect?: boolean | undefined;
|
|
24633
|
+
includeInBoardPinout?: boolean | undefined;
|
|
23459
24634
|
}>>>;
|
|
23460
24635
|
} & {
|
|
23461
24636
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23498,6 +24673,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23498
24673
|
providesVoltage?: string | number | undefined;
|
|
23499
24674
|
requiresVoltage?: string | number | undefined;
|
|
23500
24675
|
doNotConnect?: boolean | undefined;
|
|
24676
|
+
includeInBoardPinout?: boolean | undefined;
|
|
23501
24677
|
}> | undefined;
|
|
23502
24678
|
cadModel?: string | {
|
|
23503
24679
|
stlUrl: string;
|
|
@@ -23671,6 +24847,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
23671
24847
|
providesVoltage?: string | number | undefined;
|
|
23672
24848
|
requiresVoltage?: string | number | undefined;
|
|
23673
24849
|
doNotConnect?: boolean | undefined;
|
|
24850
|
+
includeInBoardPinout?: boolean | undefined;
|
|
23674
24851
|
}> | undefined;
|
|
23675
24852
|
cadModel?: string | {
|
|
23676
24853
|
stlUrl: string;
|
|
@@ -24425,6 +25602,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24425
25602
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24426
25603
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24427
25604
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
25605
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
24428
25606
|
}, "strip", z.ZodTypeAny, {
|
|
24429
25607
|
providesPower?: boolean | undefined;
|
|
24430
25608
|
requiresPower?: boolean | undefined;
|
|
@@ -24433,6 +25611,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24433
25611
|
providesVoltage?: string | number | undefined;
|
|
24434
25612
|
requiresVoltage?: string | number | undefined;
|
|
24435
25613
|
doNotConnect?: boolean | undefined;
|
|
25614
|
+
includeInBoardPinout?: boolean | undefined;
|
|
24436
25615
|
}, {
|
|
24437
25616
|
providesPower?: boolean | undefined;
|
|
24438
25617
|
requiresPower?: boolean | undefined;
|
|
@@ -24441,6 +25620,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24441
25620
|
providesVoltage?: string | number | undefined;
|
|
24442
25621
|
requiresVoltage?: string | number | undefined;
|
|
24443
25622
|
doNotConnect?: boolean | undefined;
|
|
25623
|
+
includeInBoardPinout?: boolean | undefined;
|
|
24444
25624
|
}>>>;
|
|
24445
25625
|
} & {
|
|
24446
25626
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -24489,6 +25669,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24489
25669
|
providesVoltage?: string | number | undefined;
|
|
24490
25670
|
requiresVoltage?: string | number | undefined;
|
|
24491
25671
|
doNotConnect?: boolean | undefined;
|
|
25672
|
+
includeInBoardPinout?: boolean | undefined;
|
|
24492
25673
|
}> | undefined;
|
|
24493
25674
|
cadModel?: string | {
|
|
24494
25675
|
stlUrl: string;
|
|
@@ -24621,8 +25802,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24621
25802
|
children?: any;
|
|
24622
25803
|
symbolName?: string | undefined;
|
|
24623
25804
|
doNotPlace?: boolean | undefined;
|
|
24624
|
-
manufacturerPartNumber?: string | undefined;
|
|
24625
25805
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
25806
|
+
manufacturerPartNumber?: string | undefined;
|
|
24626
25807
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
24627
25808
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
24628
25809
|
mpn?: string | undefined;
|
|
@@ -24667,6 +25848,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24667
25848
|
providesVoltage?: string | number | undefined;
|
|
24668
25849
|
requiresVoltage?: string | number | undefined;
|
|
24669
25850
|
doNotConnect?: boolean | undefined;
|
|
25851
|
+
includeInBoardPinout?: boolean | undefined;
|
|
24670
25852
|
}> | undefined;
|
|
24671
25853
|
cadModel?: string | {
|
|
24672
25854
|
stlUrl: string;
|
|
@@ -24799,8 +25981,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
24799
25981
|
children?: any;
|
|
24800
25982
|
symbolName?: string | undefined;
|
|
24801
25983
|
doNotPlace?: boolean | undefined;
|
|
24802
|
-
manufacturerPartNumber?: string | undefined;
|
|
24803
25984
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
25985
|
+
manufacturerPartNumber?: string | undefined;
|
|
24804
25986
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
24805
25987
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
24806
25988
|
mpn?: string | undefined;
|
|
@@ -25419,6 +26601,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25419
26601
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25420
26602
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25421
26603
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26604
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
25422
26605
|
}, "strip", z.ZodTypeAny, {
|
|
25423
26606
|
providesPower?: boolean | undefined;
|
|
25424
26607
|
requiresPower?: boolean | undefined;
|
|
@@ -25427,6 +26610,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25427
26610
|
providesVoltage?: string | number | undefined;
|
|
25428
26611
|
requiresVoltage?: string | number | undefined;
|
|
25429
26612
|
doNotConnect?: boolean | undefined;
|
|
26613
|
+
includeInBoardPinout?: boolean | undefined;
|
|
25430
26614
|
}, {
|
|
25431
26615
|
providesPower?: boolean | undefined;
|
|
25432
26616
|
requiresPower?: boolean | undefined;
|
|
@@ -25435,6 +26619,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25435
26619
|
providesVoltage?: string | number | undefined;
|
|
25436
26620
|
requiresVoltage?: string | number | undefined;
|
|
25437
26621
|
doNotConnect?: boolean | undefined;
|
|
26622
|
+
includeInBoardPinout?: boolean | undefined;
|
|
25438
26623
|
}>>>;
|
|
25439
26624
|
} & {
|
|
25440
26625
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -25479,6 +26664,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25479
26664
|
providesVoltage?: string | number | undefined;
|
|
25480
26665
|
requiresVoltage?: string | number | undefined;
|
|
25481
26666
|
doNotConnect?: boolean | undefined;
|
|
26667
|
+
includeInBoardPinout?: boolean | undefined;
|
|
25482
26668
|
}> | undefined;
|
|
25483
26669
|
cadModel?: string | {
|
|
25484
26670
|
stlUrl: string;
|
|
@@ -25653,6 +26839,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
25653
26839
|
providesVoltage?: string | number | undefined;
|
|
25654
26840
|
requiresVoltage?: string | number | undefined;
|
|
25655
26841
|
doNotConnect?: boolean | undefined;
|
|
26842
|
+
includeInBoardPinout?: boolean | undefined;
|
|
25656
26843
|
}> | undefined;
|
|
25657
26844
|
cadModel?: string | {
|
|
25658
26845
|
stlUrl: string;
|
|
@@ -26146,6 +27333,108 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26146
27333
|
children: z.ZodOptional<z.ZodAny>;
|
|
26147
27334
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
26148
27335
|
key: z.ZodOptional<z.ZodAny>;
|
|
27336
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
27337
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
27338
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
27339
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
27340
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
27341
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
27342
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
27343
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27344
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27345
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27346
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27347
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
27348
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27349
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27350
|
+
}, "strip", z.ZodTypeAny, {
|
|
27351
|
+
pins: (string | number)[];
|
|
27352
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27353
|
+
}, {
|
|
27354
|
+
pins: (string | number)[];
|
|
27355
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27356
|
+
}>>;
|
|
27357
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
27358
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27359
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27360
|
+
}, "strip", z.ZodTypeAny, {
|
|
27361
|
+
pins: (string | number)[];
|
|
27362
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27363
|
+
}, {
|
|
27364
|
+
pins: (string | number)[];
|
|
27365
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27366
|
+
}>>;
|
|
27367
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
27368
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27369
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27370
|
+
}, "strip", z.ZodTypeAny, {
|
|
27371
|
+
pins: (string | number)[];
|
|
27372
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27373
|
+
}, {
|
|
27374
|
+
pins: (string | number)[];
|
|
27375
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27376
|
+
}>>;
|
|
27377
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
27378
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27379
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27380
|
+
}, "strip", z.ZodTypeAny, {
|
|
27381
|
+
pins: (string | number)[];
|
|
27382
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27383
|
+
}, {
|
|
27384
|
+
pins: (string | number)[];
|
|
27385
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27386
|
+
}>>;
|
|
27387
|
+
}, "strip", z.ZodTypeAny, {
|
|
27388
|
+
leftSize?: number | undefined;
|
|
27389
|
+
topSize?: number | undefined;
|
|
27390
|
+
rightSize?: number | undefined;
|
|
27391
|
+
bottomSize?: number | undefined;
|
|
27392
|
+
leftSide?: {
|
|
27393
|
+
pins: (string | number)[];
|
|
27394
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27395
|
+
} | undefined;
|
|
27396
|
+
topSide?: {
|
|
27397
|
+
pins: (string | number)[];
|
|
27398
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27399
|
+
} | undefined;
|
|
27400
|
+
rightSide?: {
|
|
27401
|
+
pins: (string | number)[];
|
|
27402
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27403
|
+
} | undefined;
|
|
27404
|
+
bottomSide?: {
|
|
27405
|
+
pins: (string | number)[];
|
|
27406
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27407
|
+
} | undefined;
|
|
27408
|
+
leftPinCount?: number | undefined;
|
|
27409
|
+
rightPinCount?: number | undefined;
|
|
27410
|
+
topPinCount?: number | undefined;
|
|
27411
|
+
bottomPinCount?: number | undefined;
|
|
27412
|
+
}, {
|
|
27413
|
+
leftSize?: number | undefined;
|
|
27414
|
+
topSize?: number | undefined;
|
|
27415
|
+
rightSize?: number | undefined;
|
|
27416
|
+
bottomSize?: number | undefined;
|
|
27417
|
+
leftSide?: {
|
|
27418
|
+
pins: (string | number)[];
|
|
27419
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27420
|
+
} | undefined;
|
|
27421
|
+
topSide?: {
|
|
27422
|
+
pins: (string | number)[];
|
|
27423
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27424
|
+
} | undefined;
|
|
27425
|
+
rightSide?: {
|
|
27426
|
+
pins: (string | number)[];
|
|
27427
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27428
|
+
} | undefined;
|
|
27429
|
+
bottomSide?: {
|
|
27430
|
+
pins: (string | number)[];
|
|
27431
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27432
|
+
} | undefined;
|
|
27433
|
+
leftPinCount?: number | undefined;
|
|
27434
|
+
rightPinCount?: number | undefined;
|
|
27435
|
+
topPinCount?: number | undefined;
|
|
27436
|
+
bottomPinCount?: number | undefined;
|
|
27437
|
+
}>>;
|
|
26149
27438
|
} & {
|
|
26150
27439
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
26151
27440
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -26455,6 +27744,34 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26455
27744
|
matchAdapt?: boolean | undefined;
|
|
26456
27745
|
matchAdaptTemplate?: any;
|
|
26457
27746
|
schTitle?: string | undefined;
|
|
27747
|
+
showAsSchematicBox?: boolean | undefined;
|
|
27748
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
27749
|
+
schPinArrangement?: {
|
|
27750
|
+
leftSize?: number | undefined;
|
|
27751
|
+
topSize?: number | undefined;
|
|
27752
|
+
rightSize?: number | undefined;
|
|
27753
|
+
bottomSize?: number | undefined;
|
|
27754
|
+
leftSide?: {
|
|
27755
|
+
pins: (string | number)[];
|
|
27756
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27757
|
+
} | undefined;
|
|
27758
|
+
topSide?: {
|
|
27759
|
+
pins: (string | number)[];
|
|
27760
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27761
|
+
} | undefined;
|
|
27762
|
+
rightSide?: {
|
|
27763
|
+
pins: (string | number)[];
|
|
27764
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27765
|
+
} | undefined;
|
|
27766
|
+
bottomSide?: {
|
|
27767
|
+
pins: (string | number)[];
|
|
27768
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27769
|
+
} | undefined;
|
|
27770
|
+
leftPinCount?: number | undefined;
|
|
27771
|
+
rightPinCount?: number | undefined;
|
|
27772
|
+
topPinCount?: number | undefined;
|
|
27773
|
+
bottomPinCount?: number | undefined;
|
|
27774
|
+
} | undefined;
|
|
26458
27775
|
pcbWidth?: number | undefined;
|
|
26459
27776
|
pcbHeight?: number | undefined;
|
|
26460
27777
|
schWidth?: number | undefined;
|
|
@@ -26717,6 +28034,34 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
26717
28034
|
matchAdapt?: boolean | undefined;
|
|
26718
28035
|
matchAdaptTemplate?: any;
|
|
26719
28036
|
schTitle?: string | undefined;
|
|
28037
|
+
showAsSchematicBox?: boolean | undefined;
|
|
28038
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
28039
|
+
schPinArrangement?: {
|
|
28040
|
+
leftSize?: number | undefined;
|
|
28041
|
+
topSize?: number | undefined;
|
|
28042
|
+
rightSize?: number | undefined;
|
|
28043
|
+
bottomSize?: number | undefined;
|
|
28044
|
+
leftSide?: {
|
|
28045
|
+
pins: (string | number)[];
|
|
28046
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28047
|
+
} | undefined;
|
|
28048
|
+
topSide?: {
|
|
28049
|
+
pins: (string | number)[];
|
|
28050
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28051
|
+
} | undefined;
|
|
28052
|
+
rightSide?: {
|
|
28053
|
+
pins: (string | number)[];
|
|
28054
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28055
|
+
} | undefined;
|
|
28056
|
+
bottomSide?: {
|
|
28057
|
+
pins: (string | number)[];
|
|
28058
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28059
|
+
} | undefined;
|
|
28060
|
+
leftPinCount?: number | undefined;
|
|
28061
|
+
rightPinCount?: number | undefined;
|
|
28062
|
+
topPinCount?: number | undefined;
|
|
28063
|
+
bottomPinCount?: number | undefined;
|
|
28064
|
+
} | undefined;
|
|
26720
28065
|
pcbWidth?: string | number | undefined;
|
|
26721
28066
|
pcbHeight?: string | number | undefined;
|
|
26722
28067
|
schWidth?: string | number | undefined;
|
|
@@ -27539,6 +28884,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27539
28884
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
27540
28885
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
27541
28886
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
28887
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
27542
28888
|
}, "strip", z.ZodTypeAny, {
|
|
27543
28889
|
providesPower?: boolean | undefined;
|
|
27544
28890
|
requiresPower?: boolean | undefined;
|
|
@@ -27547,6 +28893,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27547
28893
|
providesVoltage?: string | number | undefined;
|
|
27548
28894
|
requiresVoltage?: string | number | undefined;
|
|
27549
28895
|
doNotConnect?: boolean | undefined;
|
|
28896
|
+
includeInBoardPinout?: boolean | undefined;
|
|
27550
28897
|
}, {
|
|
27551
28898
|
providesPower?: boolean | undefined;
|
|
27552
28899
|
requiresPower?: boolean | undefined;
|
|
@@ -27555,6 +28902,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27555
28902
|
providesVoltage?: string | number | undefined;
|
|
27556
28903
|
requiresVoltage?: string | number | undefined;
|
|
27557
28904
|
doNotConnect?: boolean | undefined;
|
|
28905
|
+
includeInBoardPinout?: boolean | undefined;
|
|
27558
28906
|
}>>>;
|
|
27559
28907
|
} & {
|
|
27560
28908
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -27608,6 +28956,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27608
28956
|
providesVoltage?: string | number | undefined;
|
|
27609
28957
|
requiresVoltage?: string | number | undefined;
|
|
27610
28958
|
doNotConnect?: boolean | undefined;
|
|
28959
|
+
includeInBoardPinout?: boolean | undefined;
|
|
27611
28960
|
}> | undefined;
|
|
27612
28961
|
cadModel?: string | {
|
|
27613
28962
|
stlUrl: string;
|
|
@@ -27788,6 +29137,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
27788
29137
|
providesVoltage?: string | number | undefined;
|
|
27789
29138
|
requiresVoltage?: string | number | undefined;
|
|
27790
29139
|
doNotConnect?: boolean | undefined;
|
|
29140
|
+
includeInBoardPinout?: boolean | undefined;
|
|
27791
29141
|
}> | undefined;
|
|
27792
29142
|
cadModel?: string | {
|
|
27793
29143
|
stlUrl: string;
|
|
@@ -30597,6 +31947,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30597
31947
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
30598
31948
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
30599
31949
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
31950
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
30600
31951
|
}, "strip", z.ZodTypeAny, {
|
|
30601
31952
|
providesPower?: boolean | undefined;
|
|
30602
31953
|
requiresPower?: boolean | undefined;
|
|
@@ -30605,6 +31956,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30605
31956
|
providesVoltage?: string | number | undefined;
|
|
30606
31957
|
requiresVoltage?: string | number | undefined;
|
|
30607
31958
|
doNotConnect?: boolean | undefined;
|
|
31959
|
+
includeInBoardPinout?: boolean | undefined;
|
|
30608
31960
|
}, {
|
|
30609
31961
|
providesPower?: boolean | undefined;
|
|
30610
31962
|
requiresPower?: boolean | undefined;
|
|
@@ -30613,6 +31965,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30613
31965
|
providesVoltage?: string | number | undefined;
|
|
30614
31966
|
requiresVoltage?: string | number | undefined;
|
|
30615
31967
|
doNotConnect?: boolean | undefined;
|
|
31968
|
+
includeInBoardPinout?: boolean | undefined;
|
|
30616
31969
|
}>>>;
|
|
30617
31970
|
} & {
|
|
30618
31971
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
@@ -30656,6 +32009,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30656
32009
|
providesVoltage?: string | number | undefined;
|
|
30657
32010
|
requiresVoltage?: string | number | undefined;
|
|
30658
32011
|
doNotConnect?: boolean | undefined;
|
|
32012
|
+
includeInBoardPinout?: boolean | undefined;
|
|
30659
32013
|
}> | undefined;
|
|
30660
32014
|
cadModel?: string | {
|
|
30661
32015
|
stlUrl: string;
|
|
@@ -30831,6 +32185,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
30831
32185
|
providesVoltage?: string | number | undefined;
|
|
30832
32186
|
requiresVoltage?: string | number | undefined;
|
|
30833
32187
|
doNotConnect?: boolean | undefined;
|
|
32188
|
+
includeInBoardPinout?: boolean | undefined;
|
|
30834
32189
|
}> | undefined;
|
|
30835
32190
|
cadModel?: string | {
|
|
30836
32191
|
stlUrl: string;
|
|
@@ -31658,6 +33013,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31658
33013
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31659
33014
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31660
33015
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
33016
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
31661
33017
|
}, "strip", z.ZodTypeAny, {
|
|
31662
33018
|
providesPower?: boolean | undefined;
|
|
31663
33019
|
requiresPower?: boolean | undefined;
|
|
@@ -31666,6 +33022,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31666
33022
|
providesVoltage?: string | number | undefined;
|
|
31667
33023
|
requiresVoltage?: string | number | undefined;
|
|
31668
33024
|
doNotConnect?: boolean | undefined;
|
|
33025
|
+
includeInBoardPinout?: boolean | undefined;
|
|
31669
33026
|
}, {
|
|
31670
33027
|
providesPower?: boolean | undefined;
|
|
31671
33028
|
requiresPower?: boolean | undefined;
|
|
@@ -31674,6 +33031,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31674
33031
|
providesVoltage?: string | number | undefined;
|
|
31675
33032
|
requiresVoltage?: string | number | undefined;
|
|
31676
33033
|
doNotConnect?: boolean | undefined;
|
|
33034
|
+
includeInBoardPinout?: boolean | undefined;
|
|
31677
33035
|
}>>>;
|
|
31678
33036
|
} & {
|
|
31679
33037
|
pinCount: z.ZodNumber;
|
|
@@ -31860,6 +33218,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31860
33218
|
providesVoltage?: string | number | undefined;
|
|
31861
33219
|
requiresVoltage?: string | number | undefined;
|
|
31862
33220
|
doNotConnect?: boolean | undefined;
|
|
33221
|
+
includeInBoardPinout?: boolean | undefined;
|
|
31863
33222
|
}> | undefined;
|
|
31864
33223
|
cadModel?: string | {
|
|
31865
33224
|
stlUrl: string;
|
|
@@ -31992,10 +33351,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
31992
33351
|
children?: any;
|
|
31993
33352
|
symbolName?: string | undefined;
|
|
31994
33353
|
doNotPlace?: boolean | undefined;
|
|
31995
|
-
|
|
31996
|
-
schHeight?: number | undefined;
|
|
31997
|
-
pinLabels?: string[] | Record<string, string> | undefined;
|
|
31998
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
33354
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
31999
33355
|
schPinArrangement?: {
|
|
32000
33356
|
leftSize?: number | undefined;
|
|
32001
33357
|
topSize?: number | undefined;
|
|
@@ -32022,6 +33378,10 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32022
33378
|
topPinCount?: number | undefined;
|
|
32023
33379
|
bottomPinCount?: number | undefined;
|
|
32024
33380
|
} | undefined;
|
|
33381
|
+
schWidth?: number | undefined;
|
|
33382
|
+
schHeight?: number | undefined;
|
|
33383
|
+
pinLabels?: string[] | Record<string, string> | undefined;
|
|
33384
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
32025
33385
|
schPinStyle?: Record<string, {
|
|
32026
33386
|
marginLeft?: number | undefined;
|
|
32027
33387
|
marginRight?: number | undefined;
|
|
@@ -32033,7 +33393,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32033
33393
|
bottomMargin?: number | undefined;
|
|
32034
33394
|
}> | undefined;
|
|
32035
33395
|
schPinSpacing?: number | undefined;
|
|
32036
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
32037
33396
|
holeDiameter?: number | undefined;
|
|
32038
33397
|
pitch?: number | undefined;
|
|
32039
33398
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
@@ -32083,6 +33442,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32083
33442
|
providesVoltage?: string | number | undefined;
|
|
32084
33443
|
requiresVoltage?: string | number | undefined;
|
|
32085
33444
|
doNotConnect?: boolean | undefined;
|
|
33445
|
+
includeInBoardPinout?: boolean | undefined;
|
|
32086
33446
|
}> | undefined;
|
|
32087
33447
|
cadModel?: string | {
|
|
32088
33448
|
stlUrl: string;
|
|
@@ -32215,11 +33575,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32215
33575
|
children?: any;
|
|
32216
33576
|
symbolName?: string | undefined;
|
|
32217
33577
|
doNotPlace?: boolean | undefined;
|
|
32218
|
-
|
|
32219
|
-
schHeight?: string | number | undefined;
|
|
32220
|
-
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
32221
|
-
pinLabels?: string[] | Record<string, string> | undefined;
|
|
32222
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
33578
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
32223
33579
|
schPinArrangement?: {
|
|
32224
33580
|
leftSize?: number | undefined;
|
|
32225
33581
|
topSize?: number | undefined;
|
|
@@ -32246,6 +33602,11 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32246
33602
|
topPinCount?: number | undefined;
|
|
32247
33603
|
bottomPinCount?: number | undefined;
|
|
32248
33604
|
} | undefined;
|
|
33605
|
+
schWidth?: string | number | undefined;
|
|
33606
|
+
schHeight?: string | number | undefined;
|
|
33607
|
+
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
33608
|
+
pinLabels?: string[] | Record<string, string> | undefined;
|
|
33609
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
32249
33610
|
schPinStyle?: Record<string, {
|
|
32250
33611
|
marginLeft?: string | number | undefined;
|
|
32251
33612
|
marginRight?: string | number | undefined;
|
|
@@ -32257,7 +33618,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
32257
33618
|
bottomMargin?: string | number | undefined;
|
|
32258
33619
|
}> | undefined;
|
|
32259
33620
|
schPinSpacing?: string | number | undefined;
|
|
32260
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
32261
33621
|
holeDiameter?: string | number | undefined;
|
|
32262
33622
|
pitch?: string | number | undefined;
|
|
32263
33623
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
@@ -32947,6 +34307,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32947
34307
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
32948
34308
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
32949
34309
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
34310
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
32950
34311
|
}, "strip", z.ZodTypeAny, {
|
|
32951
34312
|
providesPower?: boolean | undefined;
|
|
32952
34313
|
requiresPower?: boolean | undefined;
|
|
@@ -32955,6 +34316,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32955
34316
|
providesVoltage?: string | number | undefined;
|
|
32956
34317
|
requiresVoltage?: string | number | undefined;
|
|
32957
34318
|
doNotConnect?: boolean | undefined;
|
|
34319
|
+
includeInBoardPinout?: boolean | undefined;
|
|
32958
34320
|
}, {
|
|
32959
34321
|
providesPower?: boolean | undefined;
|
|
32960
34322
|
requiresPower?: boolean | undefined;
|
|
@@ -32963,6 +34325,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
32963
34325
|
providesVoltage?: string | number | undefined;
|
|
32964
34326
|
requiresVoltage?: string | number | undefined;
|
|
32965
34327
|
doNotConnect?: boolean | undefined;
|
|
34328
|
+
includeInBoardPinout?: boolean | undefined;
|
|
32966
34329
|
}>>>;
|
|
32967
34330
|
} & {
|
|
32968
34331
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -33251,6 +34614,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33251
34614
|
providesVoltage?: string | number | undefined;
|
|
33252
34615
|
requiresVoltage?: string | number | undefined;
|
|
33253
34616
|
doNotConnect?: boolean | undefined;
|
|
34617
|
+
includeInBoardPinout?: boolean | undefined;
|
|
33254
34618
|
}> | undefined;
|
|
33255
34619
|
cadModel?: string | {
|
|
33256
34620
|
stlUrl: string;
|
|
@@ -33383,14 +34747,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33383
34747
|
children?: any;
|
|
33384
34748
|
symbolName?: string | undefined;
|
|
33385
34749
|
doNotPlace?: boolean | undefined;
|
|
33386
|
-
|
|
33387
|
-
schHeight?: number | undefined;
|
|
33388
|
-
manufacturerPartNumber?: string | undefined;
|
|
33389
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33390
|
-
showPinAliases?: boolean | undefined;
|
|
33391
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
33392
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
33393
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
34750
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33394
34751
|
schPinArrangement?: {
|
|
33395
34752
|
leftSize?: number | undefined;
|
|
33396
34753
|
topSize?: number | undefined;
|
|
@@ -33417,6 +34774,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33417
34774
|
topPinCount?: number | undefined;
|
|
33418
34775
|
bottomPinCount?: number | undefined;
|
|
33419
34776
|
} | undefined;
|
|
34777
|
+
schWidth?: number | undefined;
|
|
34778
|
+
schHeight?: number | undefined;
|
|
34779
|
+
manufacturerPartNumber?: string | undefined;
|
|
34780
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
34781
|
+
showPinAliases?: boolean | undefined;
|
|
34782
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
34783
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
34784
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
33420
34785
|
schPortArrangement?: {
|
|
33421
34786
|
leftSize?: number | undefined;
|
|
33422
34787
|
topSize?: number | undefined;
|
|
@@ -33459,7 +34824,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33459
34824
|
}> | undefined;
|
|
33460
34825
|
schPinSpacing?: number | undefined;
|
|
33461
34826
|
noSchematicRepresentation?: boolean | undefined;
|
|
33462
|
-
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33463
34827
|
}, {
|
|
33464
34828
|
name: string;
|
|
33465
34829
|
symbol?: SymbolProp | undefined;
|
|
@@ -33499,6 +34863,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33499
34863
|
providesVoltage?: string | number | undefined;
|
|
33500
34864
|
requiresVoltage?: string | number | undefined;
|
|
33501
34865
|
doNotConnect?: boolean | undefined;
|
|
34866
|
+
includeInBoardPinout?: boolean | undefined;
|
|
33502
34867
|
}> | undefined;
|
|
33503
34868
|
cadModel?: string | {
|
|
33504
34869
|
stlUrl: string;
|
|
@@ -33631,14 +34996,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33631
34996
|
children?: any;
|
|
33632
34997
|
symbolName?: string | undefined;
|
|
33633
34998
|
doNotPlace?: boolean | undefined;
|
|
33634
|
-
|
|
33635
|
-
schHeight?: string | number | undefined;
|
|
33636
|
-
manufacturerPartNumber?: string | undefined;
|
|
33637
|
-
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
33638
|
-
showPinAliases?: boolean | undefined;
|
|
33639
|
-
pcbPinLabels?: Record<string, string> | undefined;
|
|
33640
|
-
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
33641
|
-
externallyConnectedPins?: string[][] | undefined;
|
|
34999
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
33642
35000
|
schPinArrangement?: {
|
|
33643
35001
|
leftSize?: number | undefined;
|
|
33644
35002
|
topSize?: number | undefined;
|
|
@@ -33665,6 +35023,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33665
35023
|
topPinCount?: number | undefined;
|
|
33666
35024
|
bottomPinCount?: number | undefined;
|
|
33667
35025
|
} | undefined;
|
|
35026
|
+
schWidth?: string | number | undefined;
|
|
35027
|
+
schHeight?: string | number | undefined;
|
|
35028
|
+
manufacturerPartNumber?: string | undefined;
|
|
35029
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
35030
|
+
showPinAliases?: boolean | undefined;
|
|
35031
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
35032
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
35033
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
33668
35034
|
schPortArrangement?: {
|
|
33669
35035
|
leftSize?: number | undefined;
|
|
33670
35036
|
topSize?: number | undefined;
|
|
@@ -33707,7 +35073,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
33707
35073
|
}> | undefined;
|
|
33708
35074
|
schPinSpacing?: string | number | undefined;
|
|
33709
35075
|
noSchematicRepresentation?: boolean | undefined;
|
|
33710
|
-
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
33711
35076
|
}>;
|
|
33712
35077
|
|
|
33713
35078
|
type SubcircuitProps = SubcircuitGroupProps;
|
|
@@ -34057,6 +35422,108 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34057
35422
|
children: z.ZodOptional<z.ZodAny>;
|
|
34058
35423
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
34059
35424
|
key: z.ZodOptional<z.ZodAny>;
|
|
35425
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
35426
|
+
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
35427
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
35428
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
35429
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
35430
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
35431
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
35432
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35433
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35434
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35435
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
35436
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
35437
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35438
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35439
|
+
}, "strip", z.ZodTypeAny, {
|
|
35440
|
+
pins: (string | number)[];
|
|
35441
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35442
|
+
}, {
|
|
35443
|
+
pins: (string | number)[];
|
|
35444
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35445
|
+
}>>;
|
|
35446
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
35447
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35448
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35449
|
+
}, "strip", z.ZodTypeAny, {
|
|
35450
|
+
pins: (string | number)[];
|
|
35451
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35452
|
+
}, {
|
|
35453
|
+
pins: (string | number)[];
|
|
35454
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35455
|
+
}>>;
|
|
35456
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
35457
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35458
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35459
|
+
}, "strip", z.ZodTypeAny, {
|
|
35460
|
+
pins: (string | number)[];
|
|
35461
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35462
|
+
}, {
|
|
35463
|
+
pins: (string | number)[];
|
|
35464
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35465
|
+
}>>;
|
|
35466
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
35467
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
35468
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
35469
|
+
}, "strip", z.ZodTypeAny, {
|
|
35470
|
+
pins: (string | number)[];
|
|
35471
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35472
|
+
}, {
|
|
35473
|
+
pins: (string | number)[];
|
|
35474
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35475
|
+
}>>;
|
|
35476
|
+
}, "strip", z.ZodTypeAny, {
|
|
35477
|
+
leftSize?: number | undefined;
|
|
35478
|
+
topSize?: number | undefined;
|
|
35479
|
+
rightSize?: number | undefined;
|
|
35480
|
+
bottomSize?: number | undefined;
|
|
35481
|
+
leftSide?: {
|
|
35482
|
+
pins: (string | number)[];
|
|
35483
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35484
|
+
} | undefined;
|
|
35485
|
+
topSide?: {
|
|
35486
|
+
pins: (string | number)[];
|
|
35487
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35488
|
+
} | undefined;
|
|
35489
|
+
rightSide?: {
|
|
35490
|
+
pins: (string | number)[];
|
|
35491
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35492
|
+
} | undefined;
|
|
35493
|
+
bottomSide?: {
|
|
35494
|
+
pins: (string | number)[];
|
|
35495
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35496
|
+
} | undefined;
|
|
35497
|
+
leftPinCount?: number | undefined;
|
|
35498
|
+
rightPinCount?: number | undefined;
|
|
35499
|
+
topPinCount?: number | undefined;
|
|
35500
|
+
bottomPinCount?: number | undefined;
|
|
35501
|
+
}, {
|
|
35502
|
+
leftSize?: number | undefined;
|
|
35503
|
+
topSize?: number | undefined;
|
|
35504
|
+
rightSize?: number | undefined;
|
|
35505
|
+
bottomSize?: number | undefined;
|
|
35506
|
+
leftSide?: {
|
|
35507
|
+
pins: (string | number)[];
|
|
35508
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35509
|
+
} | undefined;
|
|
35510
|
+
topSide?: {
|
|
35511
|
+
pins: (string | number)[];
|
|
35512
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35513
|
+
} | undefined;
|
|
35514
|
+
rightSide?: {
|
|
35515
|
+
pins: (string | number)[];
|
|
35516
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35517
|
+
} | undefined;
|
|
35518
|
+
bottomSide?: {
|
|
35519
|
+
pins: (string | number)[];
|
|
35520
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35521
|
+
} | undefined;
|
|
35522
|
+
leftPinCount?: number | undefined;
|
|
35523
|
+
rightPinCount?: number | undefined;
|
|
35524
|
+
topPinCount?: number | undefined;
|
|
35525
|
+
bottomPinCount?: number | undefined;
|
|
35526
|
+
}>>;
|
|
34060
35527
|
} & {
|
|
34061
35528
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
34062
35529
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -34345,6 +35812,34 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34345
35812
|
matchAdapt?: boolean | undefined;
|
|
34346
35813
|
matchAdaptTemplate?: any;
|
|
34347
35814
|
schTitle?: string | undefined;
|
|
35815
|
+
showAsSchematicBox?: boolean | undefined;
|
|
35816
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
35817
|
+
schPinArrangement?: {
|
|
35818
|
+
leftSize?: number | undefined;
|
|
35819
|
+
topSize?: number | undefined;
|
|
35820
|
+
rightSize?: number | undefined;
|
|
35821
|
+
bottomSize?: number | undefined;
|
|
35822
|
+
leftSide?: {
|
|
35823
|
+
pins: (string | number)[];
|
|
35824
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35825
|
+
} | undefined;
|
|
35826
|
+
topSide?: {
|
|
35827
|
+
pins: (string | number)[];
|
|
35828
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35829
|
+
} | undefined;
|
|
35830
|
+
rightSide?: {
|
|
35831
|
+
pins: (string | number)[];
|
|
35832
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35833
|
+
} | undefined;
|
|
35834
|
+
bottomSide?: {
|
|
35835
|
+
pins: (string | number)[];
|
|
35836
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
35837
|
+
} | undefined;
|
|
35838
|
+
leftPinCount?: number | undefined;
|
|
35839
|
+
rightPinCount?: number | undefined;
|
|
35840
|
+
topPinCount?: number | undefined;
|
|
35841
|
+
bottomPinCount?: number | undefined;
|
|
35842
|
+
} | undefined;
|
|
34348
35843
|
pcbWidth?: number | undefined;
|
|
34349
35844
|
pcbHeight?: number | undefined;
|
|
34350
35845
|
schWidth?: number | undefined;
|
|
@@ -34596,6 +36091,34 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
34596
36091
|
matchAdapt?: boolean | undefined;
|
|
34597
36092
|
matchAdaptTemplate?: any;
|
|
34598
36093
|
schTitle?: string | undefined;
|
|
36094
|
+
showAsSchematicBox?: boolean | undefined;
|
|
36095
|
+
connections?: Record<string, string | readonly string[] | string[] | undefined> | undefined;
|
|
36096
|
+
schPinArrangement?: {
|
|
36097
|
+
leftSize?: number | undefined;
|
|
36098
|
+
topSize?: number | undefined;
|
|
36099
|
+
rightSize?: number | undefined;
|
|
36100
|
+
bottomSize?: number | undefined;
|
|
36101
|
+
leftSide?: {
|
|
36102
|
+
pins: (string | number)[];
|
|
36103
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36104
|
+
} | undefined;
|
|
36105
|
+
topSide?: {
|
|
36106
|
+
pins: (string | number)[];
|
|
36107
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36108
|
+
} | undefined;
|
|
36109
|
+
rightSide?: {
|
|
36110
|
+
pins: (string | number)[];
|
|
36111
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36112
|
+
} | undefined;
|
|
36113
|
+
bottomSide?: {
|
|
36114
|
+
pins: (string | number)[];
|
|
36115
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
36116
|
+
} | undefined;
|
|
36117
|
+
leftPinCount?: number | undefined;
|
|
36118
|
+
rightPinCount?: number | undefined;
|
|
36119
|
+
topPinCount?: number | undefined;
|
|
36120
|
+
bottomPinCount?: number | undefined;
|
|
36121
|
+
} | undefined;
|
|
34599
36122
|
pcbWidth?: string | number | undefined;
|
|
34600
36123
|
pcbHeight?: string | number | undefined;
|
|
34601
36124
|
schWidth?: string | number | undefined;
|
|
@@ -35400,6 +36923,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35400
36923
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35401
36924
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35402
36925
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
36926
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
35403
36927
|
}, "strip", z.ZodTypeAny, {
|
|
35404
36928
|
providesPower?: boolean | undefined;
|
|
35405
36929
|
requiresPower?: boolean | undefined;
|
|
@@ -35408,6 +36932,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35408
36932
|
providesVoltage?: string | number | undefined;
|
|
35409
36933
|
requiresVoltage?: string | number | undefined;
|
|
35410
36934
|
doNotConnect?: boolean | undefined;
|
|
36935
|
+
includeInBoardPinout?: boolean | undefined;
|
|
35411
36936
|
}, {
|
|
35412
36937
|
providesPower?: boolean | undefined;
|
|
35413
36938
|
requiresPower?: boolean | undefined;
|
|
@@ -35416,6 +36941,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35416
36941
|
providesVoltage?: string | number | undefined;
|
|
35417
36942
|
requiresVoltage?: string | number | undefined;
|
|
35418
36943
|
doNotConnect?: boolean | undefined;
|
|
36944
|
+
includeInBoardPinout?: boolean | undefined;
|
|
35419
36945
|
}>>>;
|
|
35420
36946
|
} & {
|
|
35421
36947
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -35458,6 +36984,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35458
36984
|
providesVoltage?: string | number | undefined;
|
|
35459
36985
|
requiresVoltage?: string | number | undefined;
|
|
35460
36986
|
doNotConnect?: boolean | undefined;
|
|
36987
|
+
includeInBoardPinout?: boolean | undefined;
|
|
35461
36988
|
}> | undefined;
|
|
35462
36989
|
cadModel?: string | {
|
|
35463
36990
|
stlUrl: string;
|
|
@@ -35631,6 +37158,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
35631
37158
|
providesVoltage?: string | number | undefined;
|
|
35632
37159
|
requiresVoltage?: string | number | undefined;
|
|
35633
37160
|
doNotConnect?: boolean | undefined;
|
|
37161
|
+
includeInBoardPinout?: boolean | undefined;
|
|
35634
37162
|
}> | undefined;
|
|
35635
37163
|
cadModel?: string | {
|
|
35636
37164
|
stlUrl: string;
|
|
@@ -36379,6 +37907,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36379
37907
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
36380
37908
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
36381
37909
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
37910
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
36382
37911
|
}, "strip", z.ZodTypeAny, {
|
|
36383
37912
|
providesPower?: boolean | undefined;
|
|
36384
37913
|
requiresPower?: boolean | undefined;
|
|
@@ -36387,6 +37916,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36387
37916
|
providesVoltage?: string | number | undefined;
|
|
36388
37917
|
requiresVoltage?: string | number | undefined;
|
|
36389
37918
|
doNotConnect?: boolean | undefined;
|
|
37919
|
+
includeInBoardPinout?: boolean | undefined;
|
|
36390
37920
|
}, {
|
|
36391
37921
|
providesPower?: boolean | undefined;
|
|
36392
37922
|
requiresPower?: boolean | undefined;
|
|
@@ -36395,6 +37925,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36395
37925
|
providesVoltage?: string | number | undefined;
|
|
36396
37926
|
requiresVoltage?: string | number | undefined;
|
|
36397
37927
|
doNotConnect?: boolean | undefined;
|
|
37928
|
+
includeInBoardPinout?: boolean | undefined;
|
|
36398
37929
|
}>>>;
|
|
36399
37930
|
} & {
|
|
36400
37931
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
@@ -36438,6 +37969,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36438
37969
|
providesVoltage?: string | number | undefined;
|
|
36439
37970
|
requiresVoltage?: string | number | undefined;
|
|
36440
37971
|
doNotConnect?: boolean | undefined;
|
|
37972
|
+
includeInBoardPinout?: boolean | undefined;
|
|
36441
37973
|
}> | undefined;
|
|
36442
37974
|
cadModel?: string | {
|
|
36443
37975
|
stlUrl: string;
|
|
@@ -36611,6 +38143,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
36611
38143
|
providesVoltage?: string | number | undefined;
|
|
36612
38144
|
requiresVoltage?: string | number | undefined;
|
|
36613
38145
|
doNotConnect?: boolean | undefined;
|
|
38146
|
+
includeInBoardPinout?: boolean | undefined;
|
|
36614
38147
|
}> | undefined;
|
|
36615
38148
|
cadModel?: string | {
|
|
36616
38149
|
stlUrl: string;
|
|
@@ -37362,6 +38895,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37362
38895
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37363
38896
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37364
38897
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
38898
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
37365
38899
|
}, "strip", z.ZodTypeAny, {
|
|
37366
38900
|
providesPower?: boolean | undefined;
|
|
37367
38901
|
requiresPower?: boolean | undefined;
|
|
@@ -37370,6 +38904,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37370
38904
|
providesVoltage?: string | number | undefined;
|
|
37371
38905
|
requiresVoltage?: string | number | undefined;
|
|
37372
38906
|
doNotConnect?: boolean | undefined;
|
|
38907
|
+
includeInBoardPinout?: boolean | undefined;
|
|
37373
38908
|
}, {
|
|
37374
38909
|
providesPower?: boolean | undefined;
|
|
37375
38910
|
requiresPower?: boolean | undefined;
|
|
@@ -37378,6 +38913,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37378
38913
|
providesVoltage?: string | number | undefined;
|
|
37379
38914
|
requiresVoltage?: string | number | undefined;
|
|
37380
38915
|
doNotConnect?: boolean | undefined;
|
|
38916
|
+
includeInBoardPinout?: boolean | undefined;
|
|
37381
38917
|
}>>>;
|
|
37382
38918
|
} & {
|
|
37383
38919
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -37422,6 +38958,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37422
38958
|
providesVoltage?: string | number | undefined;
|
|
37423
38959
|
requiresVoltage?: string | number | undefined;
|
|
37424
38960
|
doNotConnect?: boolean | undefined;
|
|
38961
|
+
includeInBoardPinout?: boolean | undefined;
|
|
37425
38962
|
}> | undefined;
|
|
37426
38963
|
cadModel?: string | {
|
|
37427
38964
|
stlUrl: string;
|
|
@@ -37597,6 +39134,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
37597
39134
|
providesVoltage?: string | number | undefined;
|
|
37598
39135
|
requiresVoltage?: string | number | undefined;
|
|
37599
39136
|
doNotConnect?: boolean | undefined;
|
|
39137
|
+
includeInBoardPinout?: boolean | undefined;
|
|
37600
39138
|
}> | undefined;
|
|
37601
39139
|
cadModel?: string | {
|
|
37602
39140
|
stlUrl: string;
|
|
@@ -38341,6 +39879,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38341
39879
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
38342
39880
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
38343
39881
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39882
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
38344
39883
|
}, "strip", z.ZodTypeAny, {
|
|
38345
39884
|
providesPower?: boolean | undefined;
|
|
38346
39885
|
requiresPower?: boolean | undefined;
|
|
@@ -38349,6 +39888,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38349
39888
|
providesVoltage?: string | number | undefined;
|
|
38350
39889
|
requiresVoltage?: string | number | undefined;
|
|
38351
39890
|
doNotConnect?: boolean | undefined;
|
|
39891
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38352
39892
|
}, {
|
|
38353
39893
|
providesPower?: boolean | undefined;
|
|
38354
39894
|
requiresPower?: boolean | undefined;
|
|
@@ -38357,6 +39897,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38357
39897
|
providesVoltage?: string | number | undefined;
|
|
38358
39898
|
requiresVoltage?: string | number | undefined;
|
|
38359
39899
|
doNotConnect?: boolean | undefined;
|
|
39900
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38360
39901
|
}>>>;
|
|
38361
39902
|
} & {
|
|
38362
39903
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -38406,6 +39947,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38406
39947
|
providesVoltage?: string | number | undefined;
|
|
38407
39948
|
requiresVoltage?: string | number | undefined;
|
|
38408
39949
|
doNotConnect?: boolean | undefined;
|
|
39950
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38409
39951
|
}> | undefined;
|
|
38410
39952
|
cadModel?: string | {
|
|
38411
39953
|
stlUrl: string;
|
|
@@ -38585,6 +40127,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38585
40127
|
providesVoltage?: string | number | undefined;
|
|
38586
40128
|
requiresVoltage?: string | number | undefined;
|
|
38587
40129
|
doNotConnect?: boolean | undefined;
|
|
40130
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38588
40131
|
}> | undefined;
|
|
38589
40132
|
cadModel?: string | {
|
|
38590
40133
|
stlUrl: string;
|
|
@@ -38764,6 +40307,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38764
40307
|
providesVoltage?: string | number | undefined;
|
|
38765
40308
|
requiresVoltage?: string | number | undefined;
|
|
38766
40309
|
doNotConnect?: boolean | undefined;
|
|
40310
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38767
40311
|
}> | undefined;
|
|
38768
40312
|
cadModel?: string | {
|
|
38769
40313
|
stlUrl: string;
|
|
@@ -38943,6 +40487,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
38943
40487
|
providesVoltage?: string | number | undefined;
|
|
38944
40488
|
requiresVoltage?: string | number | undefined;
|
|
38945
40489
|
doNotConnect?: boolean | undefined;
|
|
40490
|
+
includeInBoardPinout?: boolean | undefined;
|
|
38946
40491
|
}> | undefined;
|
|
38947
40492
|
cadModel?: string | {
|
|
38948
40493
|
stlUrl: string;
|
|
@@ -39128,6 +40673,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39128
40673
|
providesVoltage?: string | number | undefined;
|
|
39129
40674
|
requiresVoltage?: string | number | undefined;
|
|
39130
40675
|
doNotConnect?: boolean | undefined;
|
|
40676
|
+
includeInBoardPinout?: boolean | undefined;
|
|
39131
40677
|
}> | undefined;
|
|
39132
40678
|
cadModel?: string | {
|
|
39133
40679
|
stlUrl: string;
|
|
@@ -39301,6 +40847,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
39301
40847
|
providesVoltage?: string | number | undefined;
|
|
39302
40848
|
requiresVoltage?: string | number | undefined;
|
|
39303
40849
|
doNotConnect?: boolean | undefined;
|
|
40850
|
+
includeInBoardPinout?: boolean | undefined;
|
|
39304
40851
|
}> | undefined;
|
|
39305
40852
|
cadModel?: string | {
|
|
39306
40853
|
stlUrl: string;
|
|
@@ -40073,6 +41620,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40073
41620
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40074
41621
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40075
41622
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
41623
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
40076
41624
|
}, "strip", z.ZodTypeAny, {
|
|
40077
41625
|
providesPower?: boolean | undefined;
|
|
40078
41626
|
requiresPower?: boolean | undefined;
|
|
@@ -40081,6 +41629,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40081
41629
|
providesVoltage?: string | number | undefined;
|
|
40082
41630
|
requiresVoltage?: string | number | undefined;
|
|
40083
41631
|
doNotConnect?: boolean | undefined;
|
|
41632
|
+
includeInBoardPinout?: boolean | undefined;
|
|
40084
41633
|
}, {
|
|
40085
41634
|
providesPower?: boolean | undefined;
|
|
40086
41635
|
requiresPower?: boolean | undefined;
|
|
@@ -40089,6 +41638,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40089
41638
|
providesVoltage?: string | number | undefined;
|
|
40090
41639
|
requiresVoltage?: string | number | undefined;
|
|
40091
41640
|
doNotConnect?: boolean | undefined;
|
|
41641
|
+
includeInBoardPinout?: boolean | undefined;
|
|
40092
41642
|
}>>>;
|
|
40093
41643
|
} & {
|
|
40094
41644
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -40134,6 +41684,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40134
41684
|
providesVoltage?: string | number | undefined;
|
|
40135
41685
|
requiresVoltage?: string | number | undefined;
|
|
40136
41686
|
doNotConnect?: boolean | undefined;
|
|
41687
|
+
includeInBoardPinout?: boolean | undefined;
|
|
40137
41688
|
}> | undefined;
|
|
40138
41689
|
cadModel?: string | {
|
|
40139
41690
|
stlUrl: string;
|
|
@@ -40266,9 +41817,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
40266
41817
|
children?: any;
|
|
40267
41818
|
symbolName?: string | undefined;
|
|
40268
41819
|
doNotPlace?: boolean | undefined;
|
|
41820
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
40269
41821
|
color?: string | undefined;
|
|
40270
41822
|
wavelength?: string | undefined;
|
|
40271
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
40272
41823
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
40273
41824
|
schDisplayValue?: string | undefined;
|
|
40274
41825
|
laser?: boolean | undefined;
|
|
@@ -40311,6 +41862,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
40311
41862
|
providesVoltage?: string | number | undefined;
|
|
40312
41863
|
requiresVoltage?: string | number | undefined;
|
|
40313
41864
|
doNotConnect?: boolean | undefined;
|
|
41865
|
+
includeInBoardPinout?: boolean | undefined;
|
|
40314
41866
|
}> | undefined;
|
|
40315
41867
|
cadModel?: string | {
|
|
40316
41868
|
stlUrl: string;
|
|
@@ -40443,9 +41995,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
40443
41995
|
children?: any;
|
|
40444
41996
|
symbolName?: string | undefined;
|
|
40445
41997
|
doNotPlace?: boolean | undefined;
|
|
41998
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
40446
41999
|
color?: string | undefined;
|
|
40447
42000
|
wavelength?: string | undefined;
|
|
40448
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
40449
42001
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
40450
42002
|
schDisplayValue?: string | undefined;
|
|
40451
42003
|
laser?: boolean | undefined;
|
|
@@ -41068,6 +42620,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41068
42620
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41069
42621
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41070
42622
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
42623
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
41071
42624
|
}, "strip", z.ZodTypeAny, {
|
|
41072
42625
|
providesPower?: boolean | undefined;
|
|
41073
42626
|
requiresPower?: boolean | undefined;
|
|
@@ -41076,6 +42629,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41076
42629
|
providesVoltage?: string | number | undefined;
|
|
41077
42630
|
requiresVoltage?: string | number | undefined;
|
|
41078
42631
|
doNotConnect?: boolean | undefined;
|
|
42632
|
+
includeInBoardPinout?: boolean | undefined;
|
|
41079
42633
|
}, {
|
|
41080
42634
|
providesPower?: boolean | undefined;
|
|
41081
42635
|
requiresPower?: boolean | undefined;
|
|
@@ -41084,6 +42638,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41084
42638
|
providesVoltage?: string | number | undefined;
|
|
41085
42639
|
requiresVoltage?: string | number | undefined;
|
|
41086
42640
|
doNotConnect?: boolean | undefined;
|
|
42641
|
+
includeInBoardPinout?: boolean | undefined;
|
|
41087
42642
|
}>>>;
|
|
41088
42643
|
} & {
|
|
41089
42644
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -41131,6 +42686,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41131
42686
|
providesVoltage?: string | number | undefined;
|
|
41132
42687
|
requiresVoltage?: string | number | undefined;
|
|
41133
42688
|
doNotConnect?: boolean | undefined;
|
|
42689
|
+
includeInBoardPinout?: boolean | undefined;
|
|
41134
42690
|
}> | undefined;
|
|
41135
42691
|
cadModel?: string | {
|
|
41136
42692
|
stlUrl: string;
|
|
@@ -41307,6 +42863,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41307
42863
|
providesVoltage?: string | number | undefined;
|
|
41308
42864
|
requiresVoltage?: string | number | undefined;
|
|
41309
42865
|
doNotConnect?: boolean | undefined;
|
|
42866
|
+
includeInBoardPinout?: boolean | undefined;
|
|
41310
42867
|
}> | undefined;
|
|
41311
42868
|
cadModel?: string | {
|
|
41312
42869
|
stlUrl: string;
|
|
@@ -41484,6 +43041,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
41484
43041
|
providesVoltage?: string | number | undefined;
|
|
41485
43042
|
requiresVoltage?: string | number | undefined;
|
|
41486
43043
|
doNotConnect?: boolean | undefined;
|
|
43044
|
+
includeInBoardPinout?: boolean | undefined;
|
|
41487
43045
|
}> | undefined;
|
|
41488
43046
|
cadModel?: string | {
|
|
41489
43047
|
stlUrl: string;
|
|
@@ -42624,6 +44182,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42624
44182
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
42625
44183
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
42626
44184
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
44185
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
42627
44186
|
}, "strip", z.ZodTypeAny, {
|
|
42628
44187
|
providesPower?: boolean | undefined;
|
|
42629
44188
|
requiresPower?: boolean | undefined;
|
|
@@ -42632,6 +44191,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42632
44191
|
providesVoltage?: string | number | undefined;
|
|
42633
44192
|
requiresVoltage?: string | number | undefined;
|
|
42634
44193
|
doNotConnect?: boolean | undefined;
|
|
44194
|
+
includeInBoardPinout?: boolean | undefined;
|
|
42635
44195
|
}, {
|
|
42636
44196
|
providesPower?: boolean | undefined;
|
|
42637
44197
|
requiresPower?: boolean | undefined;
|
|
@@ -42640,6 +44200,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42640
44200
|
providesVoltage?: string | number | undefined;
|
|
42641
44201
|
requiresVoltage?: string | number | undefined;
|
|
42642
44202
|
doNotConnect?: boolean | undefined;
|
|
44203
|
+
includeInBoardPinout?: boolean | undefined;
|
|
42643
44204
|
}>>>;
|
|
42644
44205
|
} & {
|
|
42645
44206
|
footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -42686,6 +44247,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42686
44247
|
providesVoltage?: string | number | undefined;
|
|
42687
44248
|
requiresVoltage?: string | number | undefined;
|
|
42688
44249
|
doNotConnect?: boolean | undefined;
|
|
44250
|
+
includeInBoardPinout?: boolean | undefined;
|
|
42689
44251
|
}> | undefined;
|
|
42690
44252
|
cadModel?: string | {
|
|
42691
44253
|
stlUrl: string;
|
|
@@ -42862,6 +44424,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
42862
44424
|
providesVoltage?: string | number | undefined;
|
|
42863
44425
|
requiresVoltage?: string | number | undefined;
|
|
42864
44426
|
doNotConnect?: boolean | undefined;
|
|
44427
|
+
includeInBoardPinout?: boolean | undefined;
|
|
42865
44428
|
}> | undefined;
|
|
42866
44429
|
cadModel?: string | {
|
|
42867
44430
|
stlUrl: string;
|
|
@@ -43038,6 +44601,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43038
44601
|
providesVoltage?: string | number | undefined;
|
|
43039
44602
|
requiresVoltage?: string | number | undefined;
|
|
43040
44603
|
doNotConnect?: boolean | undefined;
|
|
44604
|
+
includeInBoardPinout?: boolean | undefined;
|
|
43041
44605
|
}> | undefined;
|
|
43042
44606
|
cadModel?: string | {
|
|
43043
44607
|
stlUrl: string;
|
|
@@ -43214,6 +44778,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
43214
44778
|
providesVoltage?: string | number | undefined;
|
|
43215
44779
|
requiresVoltage?: string | number | undefined;
|
|
43216
44780
|
doNotConnect?: boolean | undefined;
|
|
44781
|
+
includeInBoardPinout?: boolean | undefined;
|
|
43217
44782
|
}> | undefined;
|
|
43218
44783
|
cadModel?: string | {
|
|
43219
44784
|
stlUrl: string;
|
|
@@ -44311,6 +45876,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44311
45876
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
44312
45877
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
44313
45878
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
45879
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
44314
45880
|
}, "strip", z.ZodTypeAny, {
|
|
44315
45881
|
providesPower?: boolean | undefined;
|
|
44316
45882
|
requiresPower?: boolean | undefined;
|
|
@@ -44319,6 +45885,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44319
45885
|
providesVoltage?: string | number | undefined;
|
|
44320
45886
|
requiresVoltage?: string | number | undefined;
|
|
44321
45887
|
doNotConnect?: boolean | undefined;
|
|
45888
|
+
includeInBoardPinout?: boolean | undefined;
|
|
44322
45889
|
}, {
|
|
44323
45890
|
providesPower?: boolean | undefined;
|
|
44324
45891
|
requiresPower?: boolean | undefined;
|
|
@@ -44327,6 +45894,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44327
45894
|
providesVoltage?: string | number | undefined;
|
|
44328
45895
|
requiresVoltage?: string | number | undefined;
|
|
44329
45896
|
doNotConnect?: boolean | undefined;
|
|
45897
|
+
includeInBoardPinout?: boolean | undefined;
|
|
44330
45898
|
}>>>;
|
|
44331
45899
|
} & {
|
|
44332
45900
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -44368,6 +45936,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44368
45936
|
providesVoltage?: string | number | undefined;
|
|
44369
45937
|
requiresVoltage?: string | number | undefined;
|
|
44370
45938
|
doNotConnect?: boolean | undefined;
|
|
45939
|
+
includeInBoardPinout?: boolean | undefined;
|
|
44371
45940
|
}> | undefined;
|
|
44372
45941
|
cadModel?: string | {
|
|
44373
45942
|
stlUrl: string;
|
|
@@ -44540,6 +46109,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
44540
46109
|
providesVoltage?: string | number | undefined;
|
|
44541
46110
|
requiresVoltage?: string | number | undefined;
|
|
44542
46111
|
doNotConnect?: boolean | undefined;
|
|
46112
|
+
includeInBoardPinout?: boolean | undefined;
|
|
44543
46113
|
}> | undefined;
|
|
44544
46114
|
cadModel?: string | {
|
|
44545
46115
|
stlUrl: string;
|
|
@@ -45294,6 +46864,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45294
46864
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45295
46865
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45296
46866
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
46867
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
45297
46868
|
}, "strip", z.ZodTypeAny, {
|
|
45298
46869
|
providesPower?: boolean | undefined;
|
|
45299
46870
|
requiresPower?: boolean | undefined;
|
|
@@ -45302,6 +46873,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45302
46873
|
providesVoltage?: string | number | undefined;
|
|
45303
46874
|
requiresVoltage?: string | number | undefined;
|
|
45304
46875
|
doNotConnect?: boolean | undefined;
|
|
46876
|
+
includeInBoardPinout?: boolean | undefined;
|
|
45305
46877
|
}, {
|
|
45306
46878
|
providesPower?: boolean | undefined;
|
|
45307
46879
|
requiresPower?: boolean | undefined;
|
|
@@ -45310,6 +46882,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45310
46882
|
providesVoltage?: string | number | undefined;
|
|
45311
46883
|
requiresVoltage?: string | number | undefined;
|
|
45312
46884
|
doNotConnect?: boolean | undefined;
|
|
46885
|
+
includeInBoardPinout?: boolean | undefined;
|
|
45313
46886
|
}>>>;
|
|
45314
46887
|
} & {
|
|
45315
46888
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -45356,6 +46929,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45356
46929
|
providesVoltage?: string | number | undefined;
|
|
45357
46930
|
requiresVoltage?: string | number | undefined;
|
|
45358
46931
|
doNotConnect?: boolean | undefined;
|
|
46932
|
+
includeInBoardPinout?: boolean | undefined;
|
|
45359
46933
|
}> | undefined;
|
|
45360
46934
|
cadModel?: string | {
|
|
45361
46935
|
stlUrl: string;
|
|
@@ -45488,9 +47062,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45488
47062
|
children?: any;
|
|
45489
47063
|
symbolName?: string | undefined;
|
|
45490
47064
|
doNotPlace?: boolean | undefined;
|
|
47065
|
+
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
45491
47066
|
voltage?: number | undefined;
|
|
45492
47067
|
frequency?: number | undefined;
|
|
45493
|
-
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
45494
47068
|
peakToPeakVoltage?: number | undefined;
|
|
45495
47069
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
45496
47070
|
phase?: number | undefined;
|
|
@@ -45534,6 +47108,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45534
47108
|
providesVoltage?: string | number | undefined;
|
|
45535
47109
|
requiresVoltage?: string | number | undefined;
|
|
45536
47110
|
doNotConnect?: boolean | undefined;
|
|
47111
|
+
includeInBoardPinout?: boolean | undefined;
|
|
45537
47112
|
}> | undefined;
|
|
45538
47113
|
cadModel?: string | {
|
|
45539
47114
|
stlUrl: string;
|
|
@@ -45666,9 +47241,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
45666
47241
|
children?: any;
|
|
45667
47242
|
symbolName?: string | undefined;
|
|
45668
47243
|
doNotPlace?: boolean | undefined;
|
|
47244
|
+
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
45669
47245
|
voltage?: string | number | undefined;
|
|
45670
47246
|
frequency?: string | number | undefined;
|
|
45671
|
-
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
45672
47247
|
peakToPeakVoltage?: string | number | undefined;
|
|
45673
47248
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
45674
47249
|
phase?: string | number | undefined;
|