circuit-json 0.0.83 → 0.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +144 -0
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -97,6 +97,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
97
97
|
name: z.ZodString;
|
|
98
98
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
99
99
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
100
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
100
101
|
}, {
|
|
101
102
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
102
103
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -108,6 +109,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
108
109
|
capacitance: number;
|
|
109
110
|
manufacturer_part_number?: string | undefined;
|
|
110
111
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
112
|
+
display_value?: string | undefined;
|
|
111
113
|
}, {
|
|
112
114
|
type: "source_component";
|
|
113
115
|
ftype: "simple_capacitor";
|
|
@@ -116,6 +118,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
116
118
|
capacitance: string | number;
|
|
117
119
|
manufacturer_part_number?: string | undefined;
|
|
118
120
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
121
|
+
display_value?: string | undefined;
|
|
119
122
|
}>;
|
|
120
123
|
type SourceSimpleCapacitor = z.infer<typeof source_simple_capacitor>;
|
|
121
124
|
type SourceSimpleCapacitorInput = z.input<typeof source_simple_capacitor>;
|
|
@@ -127,6 +130,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
127
130
|
name: z.ZodString;
|
|
128
131
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
129
132
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
133
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
130
134
|
}, {
|
|
131
135
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
132
136
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -138,6 +142,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
138
142
|
resistance: number;
|
|
139
143
|
manufacturer_part_number?: string | undefined;
|
|
140
144
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
145
|
+
display_value?: string | undefined;
|
|
141
146
|
}, {
|
|
142
147
|
type: "source_component";
|
|
143
148
|
ftype: "simple_resistor";
|
|
@@ -146,6 +151,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
146
151
|
resistance: string | number;
|
|
147
152
|
manufacturer_part_number?: string | undefined;
|
|
148
153
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
154
|
+
display_value?: string | undefined;
|
|
149
155
|
}>;
|
|
150
156
|
type SourceSimpleResistor = z.infer<typeof source_simple_resistor>;
|
|
151
157
|
type SourceSimpleResistorInput = z.input<typeof source_simple_resistor>;
|
|
@@ -157,6 +163,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
157
163
|
name: z.ZodString;
|
|
158
164
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
159
165
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
166
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
160
167
|
}, {
|
|
161
168
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
162
169
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -166,6 +173,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
166
173
|
name: string;
|
|
167
174
|
manufacturer_part_number?: string | undefined;
|
|
168
175
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
176
|
+
display_value?: string | undefined;
|
|
169
177
|
}, {
|
|
170
178
|
type: "source_component";
|
|
171
179
|
ftype: "simple_diode";
|
|
@@ -173,6 +181,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
173
181
|
name: string;
|
|
174
182
|
manufacturer_part_number?: string | undefined;
|
|
175
183
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
184
|
+
display_value?: string | undefined;
|
|
176
185
|
}>;
|
|
177
186
|
type SourceSimpleDiode = z.infer<typeof source_simple_diode>;
|
|
178
187
|
type SourceSimpleDiodeInput = z.input<typeof source_simple_diode>;
|
|
@@ -184,6 +193,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
184
193
|
name: z.ZodString;
|
|
185
194
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
186
195
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
196
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
187
197
|
}, {
|
|
188
198
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
189
199
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -193,6 +203,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
193
203
|
name: string;
|
|
194
204
|
manufacturer_part_number?: string | undefined;
|
|
195
205
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
206
|
+
display_value?: string | undefined;
|
|
196
207
|
}, {
|
|
197
208
|
type: "source_component";
|
|
198
209
|
ftype: "simple_ground";
|
|
@@ -200,6 +211,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
200
211
|
name: string;
|
|
201
212
|
manufacturer_part_number?: string | undefined;
|
|
202
213
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
214
|
+
display_value?: string | undefined;
|
|
203
215
|
}>;
|
|
204
216
|
type SourceSimpleGround = z.infer<typeof source_simple_ground>;
|
|
205
217
|
type SourceSimpleGroundInput = z.input<typeof source_simple_ground>;
|
|
@@ -214,6 +226,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
214
226
|
name: z.ZodString;
|
|
215
227
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
216
228
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
229
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
217
230
|
}, {
|
|
218
231
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
219
232
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -223,6 +236,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
223
236
|
name: string;
|
|
224
237
|
manufacturer_part_number?: string | undefined;
|
|
225
238
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
239
|
+
display_value?: string | undefined;
|
|
226
240
|
}, {
|
|
227
241
|
type: "source_component";
|
|
228
242
|
ftype: "simple_bug";
|
|
@@ -230,6 +244,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
230
244
|
name: string;
|
|
231
245
|
manufacturer_part_number?: string | undefined;
|
|
232
246
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
247
|
+
display_value?: string | undefined;
|
|
233
248
|
}>;
|
|
234
249
|
type source_simple_bug = z.infer<typeof source_simple_bug>;
|
|
235
250
|
type SourceSimpleBugInput = z.input<typeof source_simple_bug>;
|
|
@@ -241,6 +256,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
241
256
|
name: z.ZodString;
|
|
242
257
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
243
258
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
259
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
244
260
|
}, {
|
|
245
261
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
246
262
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -250,6 +266,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
250
266
|
name: string;
|
|
251
267
|
manufacturer_part_number?: string | undefined;
|
|
252
268
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
269
|
+
display_value?: string | undefined;
|
|
253
270
|
}, {
|
|
254
271
|
type: "source_component";
|
|
255
272
|
ftype: "simple_chip";
|
|
@@ -257,6 +274,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
257
274
|
name: string;
|
|
258
275
|
manufacturer_part_number?: string | undefined;
|
|
259
276
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
277
|
+
display_value?: string | undefined;
|
|
260
278
|
}>;
|
|
261
279
|
type SourceSimpleChip = z.infer<typeof source_simple_chip>;
|
|
262
280
|
type SourceSimpleChipInput = z.input<typeof source_simple_chip>;
|
|
@@ -268,6 +286,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
268
286
|
name: z.ZodString;
|
|
269
287
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
270
288
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
289
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
271
290
|
}, {
|
|
272
291
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
273
292
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -279,6 +298,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
279
298
|
inductance: number;
|
|
280
299
|
manufacturer_part_number?: string | undefined;
|
|
281
300
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
301
|
+
display_value?: string | undefined;
|
|
282
302
|
}, {
|
|
283
303
|
type: "source_component";
|
|
284
304
|
ftype: "simple_inductor";
|
|
@@ -287,6 +307,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
287
307
|
inductance: string | number;
|
|
288
308
|
manufacturer_part_number?: string | undefined;
|
|
289
309
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
310
|
+
display_value?: string | undefined;
|
|
290
311
|
}>;
|
|
291
312
|
type SourceSimpleInductor = z.infer<typeof source_simple_inductor>;
|
|
292
313
|
type SourceSimpleInductorInput = z.input<typeof source_simple_inductor>;
|
|
@@ -298,6 +319,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
298
319
|
name: z.ZodString;
|
|
299
320
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
300
321
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
322
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
301
323
|
}, {
|
|
302
324
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
303
325
|
}>, {
|
|
@@ -309,6 +331,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
309
331
|
name: string;
|
|
310
332
|
manufacturer_part_number?: string | undefined;
|
|
311
333
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
334
|
+
display_value?: string | undefined;
|
|
312
335
|
}, {
|
|
313
336
|
type: "source_component";
|
|
314
337
|
ftype: "led";
|
|
@@ -316,6 +339,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
316
339
|
name: string;
|
|
317
340
|
manufacturer_part_number?: string | undefined;
|
|
318
341
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
342
|
+
display_value?: string | undefined;
|
|
319
343
|
}>;
|
|
320
344
|
type SourceLed = z.infer<typeof source_led>;
|
|
321
345
|
type SourceLedInput = z.input<typeof source_led>;
|
|
@@ -327,6 +351,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
327
351
|
name: z.ZodString;
|
|
328
352
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
329
353
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
354
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
330
355
|
}, {
|
|
331
356
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
332
357
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -338,6 +363,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
338
363
|
voltage: number;
|
|
339
364
|
manufacturer_part_number?: string | undefined;
|
|
340
365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
366
|
+
display_value?: string | undefined;
|
|
341
367
|
}, {
|
|
342
368
|
type: "source_component";
|
|
343
369
|
ftype: "simple_power_source";
|
|
@@ -346,6 +372,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
346
372
|
voltage: string | number;
|
|
347
373
|
manufacturer_part_number?: string | undefined;
|
|
348
374
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
375
|
+
display_value?: string | undefined;
|
|
349
376
|
}>;
|
|
350
377
|
type SourceSimplePowerSource = z.infer<typeof source_simple_power_source>;
|
|
351
378
|
type SourceSimplePowerSourceInput = z.input<typeof source_simple_power_source>;
|
|
@@ -357,6 +384,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
357
384
|
name: z.ZodString;
|
|
358
385
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
359
386
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
387
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
360
388
|
}, {
|
|
361
389
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
362
390
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -368,6 +396,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
368
396
|
resistance: number;
|
|
369
397
|
manufacturer_part_number?: string | undefined;
|
|
370
398
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
399
|
+
display_value?: string | undefined;
|
|
371
400
|
}, {
|
|
372
401
|
type: "source_component";
|
|
373
402
|
ftype: "simple_resistor";
|
|
@@ -376,6 +405,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
376
405
|
resistance: string | number;
|
|
377
406
|
manufacturer_part_number?: string | undefined;
|
|
378
407
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
408
|
+
display_value?: string | undefined;
|
|
379
409
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
380
410
|
type: z.ZodLiteral<"source_component">;
|
|
381
411
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -383,6 +413,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
383
413
|
name: z.ZodString;
|
|
384
414
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
385
415
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
416
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
386
417
|
}, {
|
|
387
418
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
388
419
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -394,6 +425,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
394
425
|
capacitance: number;
|
|
395
426
|
manufacturer_part_number?: string | undefined;
|
|
396
427
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
428
|
+
display_value?: string | undefined;
|
|
397
429
|
}, {
|
|
398
430
|
type: "source_component";
|
|
399
431
|
ftype: "simple_capacitor";
|
|
@@ -402,6 +434,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
402
434
|
capacitance: string | number;
|
|
403
435
|
manufacturer_part_number?: string | undefined;
|
|
404
436
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
437
|
+
display_value?: string | undefined;
|
|
405
438
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
406
439
|
type: z.ZodLiteral<"source_component">;
|
|
407
440
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -409,6 +442,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
409
442
|
name: z.ZodString;
|
|
410
443
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
411
444
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
445
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
412
446
|
}, {
|
|
413
447
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
414
448
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -418,6 +452,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
418
452
|
name: string;
|
|
419
453
|
manufacturer_part_number?: string | undefined;
|
|
420
454
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
455
|
+
display_value?: string | undefined;
|
|
421
456
|
}, {
|
|
422
457
|
type: "source_component";
|
|
423
458
|
ftype: "simple_diode";
|
|
@@ -425,6 +460,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
425
460
|
name: string;
|
|
426
461
|
manufacturer_part_number?: string | undefined;
|
|
427
462
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
463
|
+
display_value?: string | undefined;
|
|
428
464
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
429
465
|
type: z.ZodLiteral<"source_component">;
|
|
430
466
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -432,6 +468,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
432
468
|
name: z.ZodString;
|
|
433
469
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
434
470
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
471
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
435
472
|
}, {
|
|
436
473
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
437
474
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -441,6 +478,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
441
478
|
name: string;
|
|
442
479
|
manufacturer_part_number?: string | undefined;
|
|
443
480
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
481
|
+
display_value?: string | undefined;
|
|
444
482
|
}, {
|
|
445
483
|
type: "source_component";
|
|
446
484
|
ftype: "simple_ground";
|
|
@@ -448,6 +486,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
448
486
|
name: string;
|
|
449
487
|
manufacturer_part_number?: string | undefined;
|
|
450
488
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
489
|
+
display_value?: string | undefined;
|
|
451
490
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
452
491
|
type: z.ZodLiteral<"source_component">;
|
|
453
492
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -455,6 +494,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
455
494
|
name: z.ZodString;
|
|
456
495
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
457
496
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
497
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
458
498
|
}, {
|
|
459
499
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
460
500
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -464,6 +504,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
464
504
|
name: string;
|
|
465
505
|
manufacturer_part_number?: string | undefined;
|
|
466
506
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
507
|
+
display_value?: string | undefined;
|
|
467
508
|
}, {
|
|
468
509
|
type: "source_component";
|
|
469
510
|
ftype: "simple_chip";
|
|
@@ -471,6 +512,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
471
512
|
name: string;
|
|
472
513
|
manufacturer_part_number?: string | undefined;
|
|
473
514
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
515
|
+
display_value?: string | undefined;
|
|
474
516
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
475
517
|
type: z.ZodLiteral<"source_component">;
|
|
476
518
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -478,6 +520,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
478
520
|
name: z.ZodString;
|
|
479
521
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
480
522
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
523
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
481
524
|
}, {
|
|
482
525
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
483
526
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -487,6 +530,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
487
530
|
name: string;
|
|
488
531
|
manufacturer_part_number?: string | undefined;
|
|
489
532
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
533
|
+
display_value?: string | undefined;
|
|
490
534
|
}, {
|
|
491
535
|
type: "source_component";
|
|
492
536
|
ftype: "simple_bug";
|
|
@@ -494,6 +538,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
494
538
|
name: string;
|
|
495
539
|
manufacturer_part_number?: string | undefined;
|
|
496
540
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
541
|
+
display_value?: string | undefined;
|
|
497
542
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
498
543
|
type: z.ZodLiteral<"source_component">;
|
|
499
544
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -501,6 +546,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
501
546
|
name: z.ZodString;
|
|
502
547
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
503
548
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
549
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
504
550
|
}, {
|
|
505
551
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
506
552
|
}>, {
|
|
@@ -512,6 +558,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
512
558
|
name: string;
|
|
513
559
|
manufacturer_part_number?: string | undefined;
|
|
514
560
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
561
|
+
display_value?: string | undefined;
|
|
515
562
|
}, {
|
|
516
563
|
type: "source_component";
|
|
517
564
|
ftype: "led";
|
|
@@ -519,6 +566,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
519
566
|
name: string;
|
|
520
567
|
manufacturer_part_number?: string | undefined;
|
|
521
568
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
569
|
+
display_value?: string | undefined;
|
|
522
570
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
523
571
|
type: z.ZodLiteral<"source_component">;
|
|
524
572
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -526,6 +574,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
526
574
|
name: z.ZodString;
|
|
527
575
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
528
576
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
577
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
529
578
|
}, {
|
|
530
579
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
531
580
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -537,6 +586,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
537
586
|
voltage: number;
|
|
538
587
|
manufacturer_part_number?: string | undefined;
|
|
539
588
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
589
|
+
display_value?: string | undefined;
|
|
540
590
|
}, {
|
|
541
591
|
type: "source_component";
|
|
542
592
|
ftype: "simple_power_source";
|
|
@@ -545,6 +595,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
545
595
|
voltage: string | number;
|
|
546
596
|
manufacturer_part_number?: string | undefined;
|
|
547
597
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
598
|
+
display_value?: string | undefined;
|
|
548
599
|
}>]>;
|
|
549
600
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
550
601
|
|
|
@@ -597,6 +648,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
597
648
|
name: z.ZodString;
|
|
598
649
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
599
650
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
651
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
600
652
|
}, "strip", z.ZodTypeAny, {
|
|
601
653
|
type: "source_component";
|
|
602
654
|
source_component_id: string;
|
|
@@ -604,6 +656,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
604
656
|
ftype?: string | undefined;
|
|
605
657
|
manufacturer_part_number?: string | undefined;
|
|
606
658
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
659
|
+
display_value?: string | undefined;
|
|
607
660
|
}, {
|
|
608
661
|
type: "source_component";
|
|
609
662
|
source_component_id: string;
|
|
@@ -611,6 +664,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
611
664
|
ftype?: string | undefined;
|
|
612
665
|
manufacturer_part_number?: string | undefined;
|
|
613
666
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
667
|
+
display_value?: string | undefined;
|
|
614
668
|
}>;
|
|
615
669
|
type SourceComponentBase = z.infer<typeof source_component_base>;
|
|
616
670
|
|
|
@@ -3476,6 +3530,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3476
3530
|
name: z.ZodString;
|
|
3477
3531
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3478
3532
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3533
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3479
3534
|
}, {
|
|
3480
3535
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
3481
3536
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3487,6 +3542,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3487
3542
|
resistance: number;
|
|
3488
3543
|
manufacturer_part_number?: string | undefined;
|
|
3489
3544
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3545
|
+
display_value?: string | undefined;
|
|
3490
3546
|
}, {
|
|
3491
3547
|
type: "source_component";
|
|
3492
3548
|
ftype: "simple_resistor";
|
|
@@ -3495,6 +3551,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3495
3551
|
resistance: string | number;
|
|
3496
3552
|
manufacturer_part_number?: string | undefined;
|
|
3497
3553
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3554
|
+
display_value?: string | undefined;
|
|
3498
3555
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3499
3556
|
type: z.ZodLiteral<"source_component">;
|
|
3500
3557
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3502,6 +3559,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3502
3559
|
name: z.ZodString;
|
|
3503
3560
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3504
3561
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3562
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3505
3563
|
}, {
|
|
3506
3564
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
3507
3565
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3513,6 +3571,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3513
3571
|
capacitance: number;
|
|
3514
3572
|
manufacturer_part_number?: string | undefined;
|
|
3515
3573
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3574
|
+
display_value?: string | undefined;
|
|
3516
3575
|
}, {
|
|
3517
3576
|
type: "source_component";
|
|
3518
3577
|
ftype: "simple_capacitor";
|
|
@@ -3521,6 +3580,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3521
3580
|
capacitance: string | number;
|
|
3522
3581
|
manufacturer_part_number?: string | undefined;
|
|
3523
3582
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3583
|
+
display_value?: string | undefined;
|
|
3524
3584
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3525
3585
|
type: z.ZodLiteral<"source_component">;
|
|
3526
3586
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3528,6 +3588,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3528
3588
|
name: z.ZodString;
|
|
3529
3589
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3530
3590
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3591
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3531
3592
|
}, {
|
|
3532
3593
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
3533
3594
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3537,6 +3598,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3537
3598
|
name: string;
|
|
3538
3599
|
manufacturer_part_number?: string | undefined;
|
|
3539
3600
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3601
|
+
display_value?: string | undefined;
|
|
3540
3602
|
}, {
|
|
3541
3603
|
type: "source_component";
|
|
3542
3604
|
ftype: "simple_diode";
|
|
@@ -3544,6 +3606,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3544
3606
|
name: string;
|
|
3545
3607
|
manufacturer_part_number?: string | undefined;
|
|
3546
3608
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3609
|
+
display_value?: string | undefined;
|
|
3547
3610
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3548
3611
|
type: z.ZodLiteral<"source_component">;
|
|
3549
3612
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3551,6 +3614,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3551
3614
|
name: z.ZodString;
|
|
3552
3615
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3553
3616
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3617
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3554
3618
|
}, {
|
|
3555
3619
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
3556
3620
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3560,6 +3624,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3560
3624
|
name: string;
|
|
3561
3625
|
manufacturer_part_number?: string | undefined;
|
|
3562
3626
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3627
|
+
display_value?: string | undefined;
|
|
3563
3628
|
}, {
|
|
3564
3629
|
type: "source_component";
|
|
3565
3630
|
ftype: "simple_ground";
|
|
@@ -3567,6 +3632,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3567
3632
|
name: string;
|
|
3568
3633
|
manufacturer_part_number?: string | undefined;
|
|
3569
3634
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3635
|
+
display_value?: string | undefined;
|
|
3570
3636
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3571
3637
|
type: z.ZodLiteral<"source_component">;
|
|
3572
3638
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3574,6 +3640,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3574
3640
|
name: z.ZodString;
|
|
3575
3641
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3576
3642
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3643
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3577
3644
|
}, {
|
|
3578
3645
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
3579
3646
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3583,6 +3650,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3583
3650
|
name: string;
|
|
3584
3651
|
manufacturer_part_number?: string | undefined;
|
|
3585
3652
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3653
|
+
display_value?: string | undefined;
|
|
3586
3654
|
}, {
|
|
3587
3655
|
type: "source_component";
|
|
3588
3656
|
ftype: "simple_chip";
|
|
@@ -3590,6 +3658,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3590
3658
|
name: string;
|
|
3591
3659
|
manufacturer_part_number?: string | undefined;
|
|
3592
3660
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3661
|
+
display_value?: string | undefined;
|
|
3593
3662
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3594
3663
|
type: z.ZodLiteral<"source_component">;
|
|
3595
3664
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3597,6 +3666,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3597
3666
|
name: z.ZodString;
|
|
3598
3667
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3599
3668
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3669
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3600
3670
|
}, {
|
|
3601
3671
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
3602
3672
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3606,6 +3676,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3606
3676
|
name: string;
|
|
3607
3677
|
manufacturer_part_number?: string | undefined;
|
|
3608
3678
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3679
|
+
display_value?: string | undefined;
|
|
3609
3680
|
}, {
|
|
3610
3681
|
type: "source_component";
|
|
3611
3682
|
ftype: "simple_bug";
|
|
@@ -3613,6 +3684,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3613
3684
|
name: string;
|
|
3614
3685
|
manufacturer_part_number?: string | undefined;
|
|
3615
3686
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3687
|
+
display_value?: string | undefined;
|
|
3616
3688
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3617
3689
|
type: z.ZodLiteral<"source_component">;
|
|
3618
3690
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3620,6 +3692,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3620
3692
|
name: z.ZodString;
|
|
3621
3693
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3622
3694
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3695
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3623
3696
|
}, {
|
|
3624
3697
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
3625
3698
|
}>, {
|
|
@@ -3631,6 +3704,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3631
3704
|
name: string;
|
|
3632
3705
|
manufacturer_part_number?: string | undefined;
|
|
3633
3706
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3707
|
+
display_value?: string | undefined;
|
|
3634
3708
|
}, {
|
|
3635
3709
|
type: "source_component";
|
|
3636
3710
|
ftype: "led";
|
|
@@ -3638,6 +3712,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3638
3712
|
name: string;
|
|
3639
3713
|
manufacturer_part_number?: string | undefined;
|
|
3640
3714
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3715
|
+
display_value?: string | undefined;
|
|
3641
3716
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3642
3717
|
type: z.ZodLiteral<"source_component">;
|
|
3643
3718
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3645,6 +3720,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3645
3720
|
name: z.ZodString;
|
|
3646
3721
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3647
3722
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3723
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3648
3724
|
}, {
|
|
3649
3725
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
3650
3726
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3656,6 +3732,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3656
3732
|
voltage: number;
|
|
3657
3733
|
manufacturer_part_number?: string | undefined;
|
|
3658
3734
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3735
|
+
display_value?: string | undefined;
|
|
3659
3736
|
}, {
|
|
3660
3737
|
type: "source_component";
|
|
3661
3738
|
ftype: "simple_power_source";
|
|
@@ -3664,6 +3741,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3664
3741
|
voltage: string | number;
|
|
3665
3742
|
manufacturer_part_number?: string | undefined;
|
|
3666
3743
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3744
|
+
display_value?: string | undefined;
|
|
3667
3745
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
3668
3746
|
type: z.ZodLiteral<"source_component">;
|
|
3669
3747
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3671,6 +3749,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3671
3749
|
name: z.ZodString;
|
|
3672
3750
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3673
3751
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3752
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3674
3753
|
}, {
|
|
3675
3754
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
3676
3755
|
}>, {
|
|
@@ -3682,6 +3761,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3682
3761
|
name: string;
|
|
3683
3762
|
manufacturer_part_number?: string | undefined;
|
|
3684
3763
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3764
|
+
display_value?: string | undefined;
|
|
3685
3765
|
}, {
|
|
3686
3766
|
type: "source_component";
|
|
3687
3767
|
ftype: "led";
|
|
@@ -3689,6 +3769,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3689
3769
|
name: string;
|
|
3690
3770
|
manufacturer_part_number?: string | undefined;
|
|
3691
3771
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3772
|
+
display_value?: string | undefined;
|
|
3692
3773
|
}>, z.ZodObject<{
|
|
3693
3774
|
type: z.ZodLiteral<"source_net">;
|
|
3694
3775
|
source_net_id: z.ZodString;
|
|
@@ -3738,6 +3819,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3738
3819
|
name: z.ZodString;
|
|
3739
3820
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3740
3821
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3822
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3741
3823
|
}, {
|
|
3742
3824
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
3743
3825
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3747,6 +3829,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3747
3829
|
name: string;
|
|
3748
3830
|
manufacturer_part_number?: string | undefined;
|
|
3749
3831
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3832
|
+
display_value?: string | undefined;
|
|
3750
3833
|
}, {
|
|
3751
3834
|
type: "source_component";
|
|
3752
3835
|
ftype: "simple_bug";
|
|
@@ -3754,6 +3837,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3754
3837
|
name: string;
|
|
3755
3838
|
manufacturer_part_number?: string | undefined;
|
|
3756
3839
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3840
|
+
display_value?: string | undefined;
|
|
3757
3841
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3758
3842
|
type: z.ZodLiteral<"source_component">;
|
|
3759
3843
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3761,6 +3845,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3761
3845
|
name: z.ZodString;
|
|
3762
3846
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3763
3847
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3848
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3764
3849
|
}, {
|
|
3765
3850
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
3766
3851
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3770,6 +3855,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3770
3855
|
name: string;
|
|
3771
3856
|
manufacturer_part_number?: string | undefined;
|
|
3772
3857
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3858
|
+
display_value?: string | undefined;
|
|
3773
3859
|
}, {
|
|
3774
3860
|
type: "source_component";
|
|
3775
3861
|
ftype: "simple_chip";
|
|
@@ -3777,6 +3863,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3777
3863
|
name: string;
|
|
3778
3864
|
manufacturer_part_number?: string | undefined;
|
|
3779
3865
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3866
|
+
display_value?: string | undefined;
|
|
3780
3867
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3781
3868
|
type: z.ZodLiteral<"source_component">;
|
|
3782
3869
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3784,6 +3871,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3784
3871
|
name: z.ZodString;
|
|
3785
3872
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3786
3873
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3874
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3787
3875
|
}, {
|
|
3788
3876
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
3789
3877
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3795,6 +3883,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3795
3883
|
capacitance: number;
|
|
3796
3884
|
manufacturer_part_number?: string | undefined;
|
|
3797
3885
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3886
|
+
display_value?: string | undefined;
|
|
3798
3887
|
}, {
|
|
3799
3888
|
type: "source_component";
|
|
3800
3889
|
ftype: "simple_capacitor";
|
|
@@ -3803,6 +3892,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3803
3892
|
capacitance: string | number;
|
|
3804
3893
|
manufacturer_part_number?: string | undefined;
|
|
3805
3894
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3895
|
+
display_value?: string | undefined;
|
|
3806
3896
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3807
3897
|
type: z.ZodLiteral<"source_component">;
|
|
3808
3898
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3810,6 +3900,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3810
3900
|
name: z.ZodString;
|
|
3811
3901
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3812
3902
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3903
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3813
3904
|
}, {
|
|
3814
3905
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
3815
3906
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -3819,6 +3910,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3819
3910
|
name: string;
|
|
3820
3911
|
manufacturer_part_number?: string | undefined;
|
|
3821
3912
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3913
|
+
display_value?: string | undefined;
|
|
3822
3914
|
}, {
|
|
3823
3915
|
type: "source_component";
|
|
3824
3916
|
ftype: "simple_diode";
|
|
@@ -3826,6 +3918,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3826
3918
|
name: string;
|
|
3827
3919
|
manufacturer_part_number?: string | undefined;
|
|
3828
3920
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3921
|
+
display_value?: string | undefined;
|
|
3829
3922
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3830
3923
|
type: z.ZodLiteral<"source_component">;
|
|
3831
3924
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3833,6 +3926,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3833
3926
|
name: z.ZodString;
|
|
3834
3927
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3835
3928
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3929
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3836
3930
|
}, {
|
|
3837
3931
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
3838
3932
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3844,6 +3938,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3844
3938
|
resistance: number;
|
|
3845
3939
|
manufacturer_part_number?: string | undefined;
|
|
3846
3940
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3941
|
+
display_value?: string | undefined;
|
|
3847
3942
|
}, {
|
|
3848
3943
|
type: "source_component";
|
|
3849
3944
|
ftype: "simple_resistor";
|
|
@@ -3852,6 +3947,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3852
3947
|
resistance: string | number;
|
|
3853
3948
|
manufacturer_part_number?: string | undefined;
|
|
3854
3949
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3950
|
+
display_value?: string | undefined;
|
|
3855
3951
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3856
3952
|
type: z.ZodLiteral<"source_component">;
|
|
3857
3953
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -3859,6 +3955,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3859
3955
|
name: z.ZodString;
|
|
3860
3956
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
3861
3957
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
3958
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
3862
3959
|
}, {
|
|
3863
3960
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
3864
3961
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3870,6 +3967,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3870
3967
|
voltage: number;
|
|
3871
3968
|
manufacturer_part_number?: string | undefined;
|
|
3872
3969
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3970
|
+
display_value?: string | undefined;
|
|
3873
3971
|
}, {
|
|
3874
3972
|
type: "source_component";
|
|
3875
3973
|
ftype: "simple_power_source";
|
|
@@ -3878,6 +3976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
3878
3976
|
voltage: string | number;
|
|
3879
3977
|
manufacturer_part_number?: string | undefined;
|
|
3880
3978
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
3979
|
+
display_value?: string | undefined;
|
|
3881
3980
|
}>, z.ZodObject<{
|
|
3882
3981
|
type: z.ZodLiteral<"pcb_component">;
|
|
3883
3982
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -5788,6 +5887,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5788
5887
|
name: z.ZodString;
|
|
5789
5888
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5790
5889
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5890
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5791
5891
|
}, {
|
|
5792
5892
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5793
5893
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5799,6 +5899,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5799
5899
|
resistance: number;
|
|
5800
5900
|
manufacturer_part_number?: string | undefined;
|
|
5801
5901
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5902
|
+
display_value?: string | undefined;
|
|
5802
5903
|
}, {
|
|
5803
5904
|
type: "source_component";
|
|
5804
5905
|
ftype: "simple_resistor";
|
|
@@ -5807,6 +5908,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5807
5908
|
resistance: string | number;
|
|
5808
5909
|
manufacturer_part_number?: string | undefined;
|
|
5809
5910
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5911
|
+
display_value?: string | undefined;
|
|
5810
5912
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5811
5913
|
type: z.ZodLiteral<"source_component">;
|
|
5812
5914
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5814,6 +5916,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5814
5916
|
name: z.ZodString;
|
|
5815
5917
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5816
5918
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5919
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5817
5920
|
}, {
|
|
5818
5921
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5819
5922
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5825,6 +5928,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5825
5928
|
capacitance: number;
|
|
5826
5929
|
manufacturer_part_number?: string | undefined;
|
|
5827
5930
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5931
|
+
display_value?: string | undefined;
|
|
5828
5932
|
}, {
|
|
5829
5933
|
type: "source_component";
|
|
5830
5934
|
ftype: "simple_capacitor";
|
|
@@ -5833,6 +5937,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5833
5937
|
capacitance: string | number;
|
|
5834
5938
|
manufacturer_part_number?: string | undefined;
|
|
5835
5939
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5940
|
+
display_value?: string | undefined;
|
|
5836
5941
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5837
5942
|
type: z.ZodLiteral<"source_component">;
|
|
5838
5943
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5840,6 +5945,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5840
5945
|
name: z.ZodString;
|
|
5841
5946
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5842
5947
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5948
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5843
5949
|
}, {
|
|
5844
5950
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5845
5951
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5849,6 +5955,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5849
5955
|
name: string;
|
|
5850
5956
|
manufacturer_part_number?: string | undefined;
|
|
5851
5957
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5958
|
+
display_value?: string | undefined;
|
|
5852
5959
|
}, {
|
|
5853
5960
|
type: "source_component";
|
|
5854
5961
|
ftype: "simple_diode";
|
|
@@ -5856,6 +5963,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5856
5963
|
name: string;
|
|
5857
5964
|
manufacturer_part_number?: string | undefined;
|
|
5858
5965
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5966
|
+
display_value?: string | undefined;
|
|
5859
5967
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5860
5968
|
type: z.ZodLiteral<"source_component">;
|
|
5861
5969
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5863,6 +5971,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5863
5971
|
name: z.ZodString;
|
|
5864
5972
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5865
5973
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5974
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5866
5975
|
}, {
|
|
5867
5976
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5868
5977
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5872,6 +5981,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5872
5981
|
name: string;
|
|
5873
5982
|
manufacturer_part_number?: string | undefined;
|
|
5874
5983
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5984
|
+
display_value?: string | undefined;
|
|
5875
5985
|
}, {
|
|
5876
5986
|
type: "source_component";
|
|
5877
5987
|
ftype: "simple_ground";
|
|
@@ -5879,6 +5989,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5879
5989
|
name: string;
|
|
5880
5990
|
manufacturer_part_number?: string | undefined;
|
|
5881
5991
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5992
|
+
display_value?: string | undefined;
|
|
5882
5993
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5883
5994
|
type: z.ZodLiteral<"source_component">;
|
|
5884
5995
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5886,6 +5997,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5886
5997
|
name: z.ZodString;
|
|
5887
5998
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5888
5999
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6000
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5889
6001
|
}, {
|
|
5890
6002
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5891
6003
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5895,6 +6007,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5895
6007
|
name: string;
|
|
5896
6008
|
manufacturer_part_number?: string | undefined;
|
|
5897
6009
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6010
|
+
display_value?: string | undefined;
|
|
5898
6011
|
}, {
|
|
5899
6012
|
type: "source_component";
|
|
5900
6013
|
ftype: "simple_chip";
|
|
@@ -5902,6 +6015,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5902
6015
|
name: string;
|
|
5903
6016
|
manufacturer_part_number?: string | undefined;
|
|
5904
6017
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6018
|
+
display_value?: string | undefined;
|
|
5905
6019
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5906
6020
|
type: z.ZodLiteral<"source_component">;
|
|
5907
6021
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5909,6 +6023,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5909
6023
|
name: z.ZodString;
|
|
5910
6024
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5911
6025
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6026
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5912
6027
|
}, {
|
|
5913
6028
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5914
6029
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5918,6 +6033,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5918
6033
|
name: string;
|
|
5919
6034
|
manufacturer_part_number?: string | undefined;
|
|
5920
6035
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6036
|
+
display_value?: string | undefined;
|
|
5921
6037
|
}, {
|
|
5922
6038
|
type: "source_component";
|
|
5923
6039
|
ftype: "simple_bug";
|
|
@@ -5925,6 +6041,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5925
6041
|
name: string;
|
|
5926
6042
|
manufacturer_part_number?: string | undefined;
|
|
5927
6043
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6044
|
+
display_value?: string | undefined;
|
|
5928
6045
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5929
6046
|
type: z.ZodLiteral<"source_component">;
|
|
5930
6047
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5932,6 +6049,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5932
6049
|
name: z.ZodString;
|
|
5933
6050
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5934
6051
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6052
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5935
6053
|
}, {
|
|
5936
6054
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5937
6055
|
}>, {
|
|
@@ -5943,6 +6061,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5943
6061
|
name: string;
|
|
5944
6062
|
manufacturer_part_number?: string | undefined;
|
|
5945
6063
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6064
|
+
display_value?: string | undefined;
|
|
5946
6065
|
}, {
|
|
5947
6066
|
type: "source_component";
|
|
5948
6067
|
ftype: "led";
|
|
@@ -5950,6 +6069,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5950
6069
|
name: string;
|
|
5951
6070
|
manufacturer_part_number?: string | undefined;
|
|
5952
6071
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6072
|
+
display_value?: string | undefined;
|
|
5953
6073
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5954
6074
|
type: z.ZodLiteral<"source_component">;
|
|
5955
6075
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5957,6 +6077,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5957
6077
|
name: z.ZodString;
|
|
5958
6078
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5959
6079
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6080
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5960
6081
|
}, {
|
|
5961
6082
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5962
6083
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5968,6 +6089,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5968
6089
|
voltage: number;
|
|
5969
6090
|
manufacturer_part_number?: string | undefined;
|
|
5970
6091
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6092
|
+
display_value?: string | undefined;
|
|
5971
6093
|
}, {
|
|
5972
6094
|
type: "source_component";
|
|
5973
6095
|
ftype: "simple_power_source";
|
|
@@ -5976,6 +6098,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5976
6098
|
voltage: string | number;
|
|
5977
6099
|
manufacturer_part_number?: string | undefined;
|
|
5978
6100
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6101
|
+
display_value?: string | undefined;
|
|
5979
6102
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5980
6103
|
type: z.ZodLiteral<"source_component">;
|
|
5981
6104
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5983,6 +6106,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5983
6106
|
name: z.ZodString;
|
|
5984
6107
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5985
6108
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6109
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
5986
6110
|
}, {
|
|
5987
6111
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5988
6112
|
}>, {
|
|
@@ -5994,6 +6118,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
5994
6118
|
name: string;
|
|
5995
6119
|
manufacturer_part_number?: string | undefined;
|
|
5996
6120
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6121
|
+
display_value?: string | undefined;
|
|
5997
6122
|
}, {
|
|
5998
6123
|
type: "source_component";
|
|
5999
6124
|
ftype: "led";
|
|
@@ -6001,6 +6126,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6001
6126
|
name: string;
|
|
6002
6127
|
manufacturer_part_number?: string | undefined;
|
|
6003
6128
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6129
|
+
display_value?: string | undefined;
|
|
6004
6130
|
}>, z.ZodObject<{
|
|
6005
6131
|
type: z.ZodLiteral<"source_net">;
|
|
6006
6132
|
source_net_id: z.ZodString;
|
|
@@ -6050,6 +6176,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6050
6176
|
name: z.ZodString;
|
|
6051
6177
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6052
6178
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6179
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6053
6180
|
}, {
|
|
6054
6181
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6055
6182
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6059,6 +6186,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6059
6186
|
name: string;
|
|
6060
6187
|
manufacturer_part_number?: string | undefined;
|
|
6061
6188
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6189
|
+
display_value?: string | undefined;
|
|
6062
6190
|
}, {
|
|
6063
6191
|
type: "source_component";
|
|
6064
6192
|
ftype: "simple_bug";
|
|
@@ -6066,6 +6194,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6066
6194
|
name: string;
|
|
6067
6195
|
manufacturer_part_number?: string | undefined;
|
|
6068
6196
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6197
|
+
display_value?: string | undefined;
|
|
6069
6198
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6070
6199
|
type: z.ZodLiteral<"source_component">;
|
|
6071
6200
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6073,6 +6202,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6073
6202
|
name: z.ZodString;
|
|
6074
6203
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6075
6204
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6205
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6076
6206
|
}, {
|
|
6077
6207
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6078
6208
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6082,6 +6212,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6082
6212
|
name: string;
|
|
6083
6213
|
manufacturer_part_number?: string | undefined;
|
|
6084
6214
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6215
|
+
display_value?: string | undefined;
|
|
6085
6216
|
}, {
|
|
6086
6217
|
type: "source_component";
|
|
6087
6218
|
ftype: "simple_chip";
|
|
@@ -6089,6 +6220,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6089
6220
|
name: string;
|
|
6090
6221
|
manufacturer_part_number?: string | undefined;
|
|
6091
6222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6223
|
+
display_value?: string | undefined;
|
|
6092
6224
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6093
6225
|
type: z.ZodLiteral<"source_component">;
|
|
6094
6226
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6096,6 +6228,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6096
6228
|
name: z.ZodString;
|
|
6097
6229
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6098
6230
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6231
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6099
6232
|
}, {
|
|
6100
6233
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6101
6234
|
capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6107,6 +6240,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6107
6240
|
capacitance: number;
|
|
6108
6241
|
manufacturer_part_number?: string | undefined;
|
|
6109
6242
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6243
|
+
display_value?: string | undefined;
|
|
6110
6244
|
}, {
|
|
6111
6245
|
type: "source_component";
|
|
6112
6246
|
ftype: "simple_capacitor";
|
|
@@ -6115,6 +6249,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6115
6249
|
capacitance: string | number;
|
|
6116
6250
|
manufacturer_part_number?: string | undefined;
|
|
6117
6251
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6252
|
+
display_value?: string | undefined;
|
|
6118
6253
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6119
6254
|
type: z.ZodLiteral<"source_component">;
|
|
6120
6255
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6122,6 +6257,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6122
6257
|
name: z.ZodString;
|
|
6123
6258
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6124
6259
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6260
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6125
6261
|
}, {
|
|
6126
6262
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6127
6263
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6131,6 +6267,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6131
6267
|
name: string;
|
|
6132
6268
|
manufacturer_part_number?: string | undefined;
|
|
6133
6269
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6270
|
+
display_value?: string | undefined;
|
|
6134
6271
|
}, {
|
|
6135
6272
|
type: "source_component";
|
|
6136
6273
|
ftype: "simple_diode";
|
|
@@ -6138,6 +6275,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6138
6275
|
name: string;
|
|
6139
6276
|
manufacturer_part_number?: string | undefined;
|
|
6140
6277
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6278
|
+
display_value?: string | undefined;
|
|
6141
6279
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6142
6280
|
type: z.ZodLiteral<"source_component">;
|
|
6143
6281
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6145,6 +6283,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6145
6283
|
name: z.ZodString;
|
|
6146
6284
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6147
6285
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6286
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6148
6287
|
}, {
|
|
6149
6288
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6150
6289
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6156,6 +6295,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6156
6295
|
resistance: number;
|
|
6157
6296
|
manufacturer_part_number?: string | undefined;
|
|
6158
6297
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6298
|
+
display_value?: string | undefined;
|
|
6159
6299
|
}, {
|
|
6160
6300
|
type: "source_component";
|
|
6161
6301
|
ftype: "simple_resistor";
|
|
@@ -6164,6 +6304,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6164
6304
|
resistance: string | number;
|
|
6165
6305
|
manufacturer_part_number?: string | undefined;
|
|
6166
6306
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6307
|
+
display_value?: string | undefined;
|
|
6167
6308
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6168
6309
|
type: z.ZodLiteral<"source_component">;
|
|
6169
6310
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6171,6 +6312,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6171
6312
|
name: z.ZodString;
|
|
6172
6313
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6173
6314
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6315
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
6174
6316
|
}, {
|
|
6175
6317
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6176
6318
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6182,6 +6324,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6182
6324
|
voltage: number;
|
|
6183
6325
|
manufacturer_part_number?: string | undefined;
|
|
6184
6326
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6327
|
+
display_value?: string | undefined;
|
|
6185
6328
|
}, {
|
|
6186
6329
|
type: "source_component";
|
|
6187
6330
|
ftype: "simple_power_source";
|
|
@@ -6190,6 +6333,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6190
6333
|
voltage: string | number;
|
|
6191
6334
|
manufacturer_part_number?: string | undefined;
|
|
6192
6335
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6336
|
+
display_value?: string | undefined;
|
|
6193
6337
|
}>, z.ZodObject<{
|
|
6194
6338
|
type: z.ZodLiteral<"pcb_component">;
|
|
6195
6339
|
pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|