circuit-json 0.0.335 → 0.0.336
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.mts +96 -0
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1352,6 +1352,7 @@ var pcb_hole_circle = z75.object({
|
|
|
1352
1352
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1353
1353
|
pcb_group_id: z75.string().optional(),
|
|
1354
1354
|
subcircuit_id: z75.string().optional(),
|
|
1355
|
+
pcb_component_id: z75.string().optional(),
|
|
1355
1356
|
hole_shape: z75.literal("circle"),
|
|
1356
1357
|
hole_diameter: z75.number(),
|
|
1357
1358
|
x: distance,
|
|
@@ -1368,6 +1369,7 @@ var pcb_hole_rect = z75.object({
|
|
|
1368
1369
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1369
1370
|
pcb_group_id: z75.string().optional(),
|
|
1370
1371
|
subcircuit_id: z75.string().optional(),
|
|
1372
|
+
pcb_component_id: z75.string().optional(),
|
|
1371
1373
|
hole_shape: z75.literal("rect"),
|
|
1372
1374
|
hole_width: z75.number(),
|
|
1373
1375
|
hole_height: z75.number(),
|
|
@@ -1385,6 +1387,7 @@ var pcb_hole_circle_or_square = z75.object({
|
|
|
1385
1387
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1386
1388
|
pcb_group_id: z75.string().optional(),
|
|
1387
1389
|
subcircuit_id: z75.string().optional(),
|
|
1390
|
+
pcb_component_id: z75.string().optional(),
|
|
1388
1391
|
hole_shape: z75.enum(["circle", "square"]),
|
|
1389
1392
|
hole_diameter: z75.number(),
|
|
1390
1393
|
x: distance,
|
|
@@ -1401,6 +1404,7 @@ var pcb_hole_oval = z75.object({
|
|
|
1401
1404
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1402
1405
|
pcb_group_id: z75.string().optional(),
|
|
1403
1406
|
subcircuit_id: z75.string().optional(),
|
|
1407
|
+
pcb_component_id: z75.string().optional(),
|
|
1404
1408
|
hole_shape: z75.literal("oval"),
|
|
1405
1409
|
hole_width: z75.number(),
|
|
1406
1410
|
hole_height: z75.number(),
|
|
@@ -1418,6 +1422,7 @@ var pcb_hole_pill = z75.object({
|
|
|
1418
1422
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1419
1423
|
pcb_group_id: z75.string().optional(),
|
|
1420
1424
|
subcircuit_id: z75.string().optional(),
|
|
1425
|
+
pcb_component_id: z75.string().optional(),
|
|
1421
1426
|
hole_shape: z75.literal("pill"),
|
|
1422
1427
|
hole_width: z75.number(),
|
|
1423
1428
|
hole_height: z75.number(),
|
|
@@ -1435,6 +1440,7 @@ var pcb_hole_rotated_pill = z75.object({
|
|
|
1435
1440
|
pcb_hole_id: getZodPrefixedIdWithDefault("pcb_hole"),
|
|
1436
1441
|
pcb_group_id: z75.string().optional(),
|
|
1437
1442
|
subcircuit_id: z75.string().optional(),
|
|
1443
|
+
pcb_component_id: z75.string().optional(),
|
|
1438
1444
|
hole_shape: z75.literal("rotated_pill"),
|
|
1439
1445
|
hole_width: z75.number(),
|
|
1440
1446
|
hole_height: z75.number(),
|