circuit-json 0.0.252 → 0.0.254
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 +5 -1
- package/dist/index.d.mts +113 -10
- package/dist/index.mjs +18 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1190,6 +1190,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1190
1190
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1191
1191
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1192
1192
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1193
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1193
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1194
1195
|
x: number;
|
|
1195
1196
|
y: number;
|
|
@@ -1205,6 +1206,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1205
1206
|
pcb_group_id?: string | undefined;
|
|
1206
1207
|
port_hints?: string[] | undefined;
|
|
1207
1208
|
pcb_port_id?: string | undefined;
|
|
1209
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1208
1210
|
}, {
|
|
1209
1211
|
x: string | number;
|
|
1210
1212
|
y: string | number;
|
|
@@ -1222,6 +1224,7 @@ declare const pcb_smtpad_pill: z.ZodObject<{
|
|
|
1222
1224
|
port_hints?: string[] | undefined;
|
|
1223
1225
|
pcb_port_id?: string | undefined;
|
|
1224
1226
|
pcb_smtpad_id?: string | undefined;
|
|
1227
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1225
1228
|
}>;
|
|
1226
1229
|
declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
1227
1230
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
@@ -1244,6 +1247,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1244
1247
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1245
1248
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1246
1249
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1247
1251
|
}, "strip", z.ZodTypeAny, {
|
|
1248
1252
|
x: number;
|
|
1249
1253
|
y: number;
|
|
@@ -1257,6 +1261,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1257
1261
|
pcb_group_id?: string | undefined;
|
|
1258
1262
|
port_hints?: string[] | undefined;
|
|
1259
1263
|
pcb_port_id?: string | undefined;
|
|
1264
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1260
1265
|
}, {
|
|
1261
1266
|
x: string | number;
|
|
1262
1267
|
y: string | number;
|
|
@@ -1272,6 +1277,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1272
1277
|
port_hints?: string[] | undefined;
|
|
1273
1278
|
pcb_port_id?: string | undefined;
|
|
1274
1279
|
pcb_smtpad_id?: string | undefined;
|
|
1280
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1275
1281
|
}>, z.ZodObject<{
|
|
1276
1282
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1277
1283
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -1295,6 +1301,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1295
1301
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1296
1302
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1297
1303
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1304
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1298
1305
|
}, "strip", z.ZodTypeAny, {
|
|
1299
1306
|
x: number;
|
|
1300
1307
|
y: number;
|
|
@@ -1310,6 +1317,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1310
1317
|
port_hints?: string[] | undefined;
|
|
1311
1318
|
pcb_port_id?: string | undefined;
|
|
1312
1319
|
rect_border_radius?: number | undefined;
|
|
1320
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1313
1321
|
}, {
|
|
1314
1322
|
x: string | number;
|
|
1315
1323
|
y: string | number;
|
|
@@ -1327,6 +1335,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1327
1335
|
pcb_port_id?: string | undefined;
|
|
1328
1336
|
rect_border_radius?: number | undefined;
|
|
1329
1337
|
pcb_smtpad_id?: string | undefined;
|
|
1338
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1330
1339
|
}>, z.ZodObject<{
|
|
1331
1340
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1332
1341
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -1351,6 +1360,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1351
1360
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1352
1361
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1353
1362
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1354
1364
|
}, "strip", z.ZodTypeAny, {
|
|
1355
1365
|
x: number;
|
|
1356
1366
|
y: number;
|
|
@@ -1367,6 +1377,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1367
1377
|
port_hints?: string[] | undefined;
|
|
1368
1378
|
pcb_port_id?: string | undefined;
|
|
1369
1379
|
rect_border_radius?: number | undefined;
|
|
1380
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1370
1381
|
}, {
|
|
1371
1382
|
x: string | number;
|
|
1372
1383
|
y: string | number;
|
|
@@ -1385,6 +1396,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1385
1396
|
pcb_port_id?: string | undefined;
|
|
1386
1397
|
rect_border_radius?: number | undefined;
|
|
1387
1398
|
pcb_smtpad_id?: string | undefined;
|
|
1399
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1388
1400
|
}>, z.ZodObject<{
|
|
1389
1401
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1390
1402
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -1409,6 +1421,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1409
1421
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1410
1422
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1411
1423
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1424
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1412
1425
|
}, "strip", z.ZodTypeAny, {
|
|
1413
1426
|
x: number;
|
|
1414
1427
|
y: number;
|
|
@@ -1425,6 +1438,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1425
1438
|
pcb_group_id?: string | undefined;
|
|
1426
1439
|
port_hints?: string[] | undefined;
|
|
1427
1440
|
pcb_port_id?: string | undefined;
|
|
1441
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1428
1442
|
}, {
|
|
1429
1443
|
x: string | number;
|
|
1430
1444
|
y: string | number;
|
|
@@ -1443,6 +1457,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1443
1457
|
port_hints?: string[] | undefined;
|
|
1444
1458
|
pcb_port_id?: string | undefined;
|
|
1445
1459
|
pcb_smtpad_id?: string | undefined;
|
|
1460
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1446
1461
|
}>, z.ZodObject<{
|
|
1447
1462
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1448
1463
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -1466,6 +1481,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1466
1481
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1467
1482
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1468
1483
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1469
1485
|
}, "strip", z.ZodTypeAny, {
|
|
1470
1486
|
x: number;
|
|
1471
1487
|
y: number;
|
|
@@ -1481,6 +1497,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1481
1497
|
pcb_group_id?: string | undefined;
|
|
1482
1498
|
port_hints?: string[] | undefined;
|
|
1483
1499
|
pcb_port_id?: string | undefined;
|
|
1500
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1484
1501
|
}, {
|
|
1485
1502
|
x: string | number;
|
|
1486
1503
|
y: string | number;
|
|
@@ -1498,6 +1515,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1498
1515
|
port_hints?: string[] | undefined;
|
|
1499
1516
|
pcb_port_id?: string | undefined;
|
|
1500
1517
|
pcb_smtpad_id?: string | undefined;
|
|
1518
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1501
1519
|
}>, z.ZodObject<{
|
|
1502
1520
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1503
1521
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -1526,6 +1544,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1526
1544
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1527
1545
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
1528
1546
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
1547
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1529
1548
|
}, "strip", z.ZodTypeAny, {
|
|
1530
1549
|
type: "pcb_smtpad";
|
|
1531
1550
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -1540,6 +1559,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1540
1559
|
pcb_group_id?: string | undefined;
|
|
1541
1560
|
port_hints?: string[] | undefined;
|
|
1542
1561
|
pcb_port_id?: string | undefined;
|
|
1562
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1543
1563
|
}, {
|
|
1544
1564
|
type: "pcb_smtpad";
|
|
1545
1565
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -1556,6 +1576,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1556
1576
|
port_hints?: string[] | undefined;
|
|
1557
1577
|
pcb_port_id?: string | undefined;
|
|
1558
1578
|
pcb_smtpad_id?: string | undefined;
|
|
1579
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1559
1580
|
}>]>;
|
|
1560
1581
|
type PCBSMTPadInput = z.input<typeof pcb_smtpad>;
|
|
1561
1582
|
/**
|
|
@@ -1574,6 +1595,7 @@ interface PcbSmtPadCircle {
|
|
|
1574
1595
|
port_hints?: string[];
|
|
1575
1596
|
pcb_component_id?: string;
|
|
1576
1597
|
pcb_port_id?: string;
|
|
1598
|
+
is_covered_with_solder_mask?: boolean;
|
|
1577
1599
|
}
|
|
1578
1600
|
/**
|
|
1579
1601
|
* Defines a rectangular SMT pad on the PCB
|
|
@@ -1593,6 +1615,7 @@ interface PcbSmtPadRect {
|
|
|
1593
1615
|
port_hints?: string[];
|
|
1594
1616
|
pcb_component_id?: string;
|
|
1595
1617
|
pcb_port_id?: string;
|
|
1618
|
+
is_covered_with_solder_mask?: boolean;
|
|
1596
1619
|
}
|
|
1597
1620
|
/**
|
|
1598
1621
|
* Defines a rotated rectangular SMT pad on the PCB
|
|
@@ -1613,6 +1636,7 @@ interface PcbSmtPadRotatedRect {
|
|
|
1613
1636
|
port_hints?: string[];
|
|
1614
1637
|
pcb_component_id?: string;
|
|
1615
1638
|
pcb_port_id?: string;
|
|
1639
|
+
is_covered_with_solder_mask?: boolean;
|
|
1616
1640
|
}
|
|
1617
1641
|
/**
|
|
1618
1642
|
* Defines a pill-shaped SMT pad on the PCB (rounded rectangle).
|
|
@@ -1632,6 +1656,7 @@ interface PcbSmtPadPill {
|
|
|
1632
1656
|
port_hints?: string[];
|
|
1633
1657
|
pcb_component_id?: string;
|
|
1634
1658
|
pcb_port_id?: string;
|
|
1659
|
+
is_covered_with_solder_mask?: boolean;
|
|
1635
1660
|
}
|
|
1636
1661
|
/**
|
|
1637
1662
|
* Defines a rotated pill-shaped SMT pad on the PCB
|
|
@@ -1652,6 +1677,7 @@ interface PcbSmtPadRotatedPill {
|
|
|
1652
1677
|
port_hints?: string[];
|
|
1653
1678
|
pcb_component_id?: string;
|
|
1654
1679
|
pcb_port_id?: string;
|
|
1680
|
+
is_covered_with_solder_mask?: boolean;
|
|
1655
1681
|
}
|
|
1656
1682
|
/**
|
|
1657
1683
|
* Defines a polygonal SMT pad on the PCB
|
|
@@ -1667,6 +1693,7 @@ interface PcbSmtPadPolygon {
|
|
|
1667
1693
|
port_hints?: string[];
|
|
1668
1694
|
pcb_component_id?: string;
|
|
1669
1695
|
pcb_port_id?: string;
|
|
1696
|
+
is_covered_with_solder_mask?: boolean;
|
|
1670
1697
|
}
|
|
1671
1698
|
type PcbSmtPad = PcbSmtPadCircle | PcbSmtPadRect | PcbSmtPadRotatedRect | PcbSmtPadRotatedPill | PcbSmtPadPill | PcbSmtPadPolygon;
|
|
1672
1699
|
/**
|
|
@@ -5257,7 +5284,7 @@ interface SchematicComponent {
|
|
|
5257
5284
|
type: "schematic_component";
|
|
5258
5285
|
size: Size;
|
|
5259
5286
|
center: Point;
|
|
5260
|
-
source_component_id
|
|
5287
|
+
source_component_id?: string;
|
|
5261
5288
|
schematic_component_id: string;
|
|
5262
5289
|
pin_spacing?: number;
|
|
5263
5290
|
pin_styles?: Record<string, {
|
|
@@ -5273,6 +5300,8 @@ interface SchematicComponent {
|
|
|
5273
5300
|
symbol_display_value?: string;
|
|
5274
5301
|
subcircuit_id?: string;
|
|
5275
5302
|
schematic_group_id?: string;
|
|
5303
|
+
is_schematic_group?: boolean;
|
|
5304
|
+
source_group_id?: string;
|
|
5276
5305
|
}
|
|
5277
5306
|
declare const schematic_component_port_arrangement_by_size: z.ZodObject<{
|
|
5278
5307
|
left_size: z.ZodNumber;
|
|
@@ -5479,7 +5508,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5479
5508
|
x: string | number;
|
|
5480
5509
|
y: string | number;
|
|
5481
5510
|
}>;
|
|
5482
|
-
source_component_id: z.ZodString
|
|
5511
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
5483
5512
|
schematic_component_id: z.ZodString;
|
|
5484
5513
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5485
5514
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -5595,9 +5624,10 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5595
5624
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
5596
5625
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
5597
5626
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
5627
|
+
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
5628
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5598
5629
|
}, "strip", z.ZodTypeAny, {
|
|
5599
5630
|
type: "schematic_component";
|
|
5600
|
-
source_component_id: string;
|
|
5601
5631
|
center: {
|
|
5602
5632
|
x: number;
|
|
5603
5633
|
y: number;
|
|
@@ -5607,7 +5637,9 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5607
5637
|
width: number;
|
|
5608
5638
|
height: number;
|
|
5609
5639
|
};
|
|
5640
|
+
source_component_id?: string | undefined;
|
|
5610
5641
|
subcircuit_id?: string | undefined;
|
|
5642
|
+
source_group_id?: string | undefined;
|
|
5611
5643
|
pin_spacing?: number | undefined;
|
|
5612
5644
|
pin_styles?: Record<string, {
|
|
5613
5645
|
left_margin?: number | undefined;
|
|
@@ -5643,9 +5675,9 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5643
5675
|
port_labels?: Record<string, string> | undefined;
|
|
5644
5676
|
symbol_display_value?: string | undefined;
|
|
5645
5677
|
schematic_group_id?: string | undefined;
|
|
5678
|
+
is_schematic_group?: boolean | undefined;
|
|
5646
5679
|
}, {
|
|
5647
5680
|
type: "schematic_component";
|
|
5648
|
-
source_component_id: string;
|
|
5649
5681
|
center: {
|
|
5650
5682
|
x: string | number;
|
|
5651
5683
|
y: string | number;
|
|
@@ -5655,7 +5687,9 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5655
5687
|
width: number;
|
|
5656
5688
|
height: number;
|
|
5657
5689
|
};
|
|
5690
|
+
source_component_id?: string | undefined;
|
|
5658
5691
|
subcircuit_id?: string | undefined;
|
|
5692
|
+
source_group_id?: string | undefined;
|
|
5659
5693
|
pin_spacing?: string | number | undefined;
|
|
5660
5694
|
pin_styles?: Record<string, {
|
|
5661
5695
|
left_margin?: string | number | undefined;
|
|
@@ -5691,6 +5725,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
5691
5725
|
port_labels?: Record<string, string> | undefined;
|
|
5692
5726
|
symbol_display_value?: string | undefined;
|
|
5693
5727
|
schematic_group_id?: string | undefined;
|
|
5728
|
+
is_schematic_group?: boolean | undefined;
|
|
5694
5729
|
}>;
|
|
5695
5730
|
type SchematicComponentInput = z.input<typeof schematic_component>;
|
|
5696
5731
|
|
|
@@ -6609,6 +6644,7 @@ declare const schematic_group: z.ZodObject<{
|
|
|
6609
6644
|
y: string | number;
|
|
6610
6645
|
}>;
|
|
6611
6646
|
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
6647
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
6612
6648
|
name: z.ZodOptional<z.ZodString>;
|
|
6613
6649
|
description: z.ZodOptional<z.ZodString>;
|
|
6614
6650
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6626,6 +6662,7 @@ declare const schematic_group: z.ZodObject<{
|
|
|
6626
6662
|
name?: string | undefined;
|
|
6627
6663
|
subcircuit_id?: string | undefined;
|
|
6628
6664
|
is_subcircuit?: boolean | undefined;
|
|
6665
|
+
show_as_schematic_box?: boolean | undefined;
|
|
6629
6666
|
}, {
|
|
6630
6667
|
type: "schematic_group";
|
|
6631
6668
|
width: string | number;
|
|
@@ -6641,6 +6678,7 @@ declare const schematic_group: z.ZodObject<{
|
|
|
6641
6678
|
subcircuit_id?: string | undefined;
|
|
6642
6679
|
is_subcircuit?: boolean | undefined;
|
|
6643
6680
|
schematic_group_id?: string | undefined;
|
|
6681
|
+
show_as_schematic_box?: boolean | undefined;
|
|
6644
6682
|
}>;
|
|
6645
6683
|
type SchematicGroupInput = z.input<typeof schematic_group>;
|
|
6646
6684
|
/**
|
|
@@ -6656,6 +6694,7 @@ interface SchematicGroup {
|
|
|
6656
6694
|
height: Length;
|
|
6657
6695
|
center: Point;
|
|
6658
6696
|
schematic_component_ids: string[];
|
|
6697
|
+
show_as_schematic_box?: boolean;
|
|
6659
6698
|
name?: string;
|
|
6660
6699
|
description?: string;
|
|
6661
6700
|
}
|
|
@@ -9250,6 +9289,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9250
9289
|
parent_subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
9251
9290
|
parent_source_group_id: z.ZodOptional<z.ZodString>;
|
|
9252
9291
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
9292
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
9253
9293
|
name: z.ZodOptional<z.ZodString>;
|
|
9254
9294
|
}, "strip", z.ZodTypeAny, {
|
|
9255
9295
|
type: "source_group";
|
|
@@ -9257,6 +9297,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9257
9297
|
name?: string | undefined;
|
|
9258
9298
|
subcircuit_id?: string | undefined;
|
|
9259
9299
|
is_subcircuit?: boolean | undefined;
|
|
9300
|
+
show_as_schematic_box?: boolean | undefined;
|
|
9260
9301
|
parent_subcircuit_id?: string | undefined;
|
|
9261
9302
|
parent_source_group_id?: string | undefined;
|
|
9262
9303
|
}, {
|
|
@@ -9265,6 +9306,7 @@ declare const source_group: z.ZodObject<{
|
|
|
9265
9306
|
name?: string | undefined;
|
|
9266
9307
|
subcircuit_id?: string | undefined;
|
|
9267
9308
|
is_subcircuit?: boolean | undefined;
|
|
9309
|
+
show_as_schematic_box?: boolean | undefined;
|
|
9268
9310
|
parent_subcircuit_id?: string | undefined;
|
|
9269
9311
|
parent_source_group_id?: string | undefined;
|
|
9270
9312
|
}>;
|
|
@@ -9276,6 +9318,7 @@ interface SourceGroup {
|
|
|
9276
9318
|
parent_subcircuit_id?: string;
|
|
9277
9319
|
parent_source_group_id?: string;
|
|
9278
9320
|
is_subcircuit?: boolean;
|
|
9321
|
+
show_as_schematic_box?: boolean;
|
|
9279
9322
|
name?: string;
|
|
9280
9323
|
}
|
|
9281
9324
|
|
|
@@ -10850,6 +10893,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10850
10893
|
parent_subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10851
10894
|
parent_source_group_id: z.ZodOptional<z.ZodString>;
|
|
10852
10895
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
10896
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
10853
10897
|
name: z.ZodOptional<z.ZodString>;
|
|
10854
10898
|
}, "strip", z.ZodTypeAny, {
|
|
10855
10899
|
type: "source_group";
|
|
@@ -10857,6 +10901,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10857
10901
|
name?: string | undefined;
|
|
10858
10902
|
subcircuit_id?: string | undefined;
|
|
10859
10903
|
is_subcircuit?: boolean | undefined;
|
|
10904
|
+
show_as_schematic_box?: boolean | undefined;
|
|
10860
10905
|
parent_subcircuit_id?: string | undefined;
|
|
10861
10906
|
parent_source_group_id?: string | undefined;
|
|
10862
10907
|
}, {
|
|
@@ -10865,6 +10910,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10865
10910
|
name?: string | undefined;
|
|
10866
10911
|
subcircuit_id?: string | undefined;
|
|
10867
10912
|
is_subcircuit?: boolean | undefined;
|
|
10913
|
+
show_as_schematic_box?: boolean | undefined;
|
|
10868
10914
|
parent_subcircuit_id?: string | undefined;
|
|
10869
10915
|
parent_source_group_id?: string | undefined;
|
|
10870
10916
|
}>, z.ZodObject<{
|
|
@@ -12616,6 +12662,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12616
12662
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12617
12663
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12618
12664
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12665
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12619
12666
|
}, "strip", z.ZodTypeAny, {
|
|
12620
12667
|
x: number;
|
|
12621
12668
|
y: number;
|
|
@@ -12629,6 +12676,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12629
12676
|
pcb_group_id?: string | undefined;
|
|
12630
12677
|
port_hints?: string[] | undefined;
|
|
12631
12678
|
pcb_port_id?: string | undefined;
|
|
12679
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12632
12680
|
}, {
|
|
12633
12681
|
x: string | number;
|
|
12634
12682
|
y: string | number;
|
|
@@ -12644,6 +12692,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12644
12692
|
port_hints?: string[] | undefined;
|
|
12645
12693
|
pcb_port_id?: string | undefined;
|
|
12646
12694
|
pcb_smtpad_id?: string | undefined;
|
|
12695
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12647
12696
|
}>, z.ZodObject<{
|
|
12648
12697
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
12649
12698
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -12667,6 +12716,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12667
12716
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12668
12717
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12669
12718
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12719
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12670
12720
|
}, "strip", z.ZodTypeAny, {
|
|
12671
12721
|
x: number;
|
|
12672
12722
|
y: number;
|
|
@@ -12682,6 +12732,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12682
12732
|
port_hints?: string[] | undefined;
|
|
12683
12733
|
pcb_port_id?: string | undefined;
|
|
12684
12734
|
rect_border_radius?: number | undefined;
|
|
12735
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12685
12736
|
}, {
|
|
12686
12737
|
x: string | number;
|
|
12687
12738
|
y: string | number;
|
|
@@ -12699,6 +12750,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12699
12750
|
pcb_port_id?: string | undefined;
|
|
12700
12751
|
rect_border_radius?: number | undefined;
|
|
12701
12752
|
pcb_smtpad_id?: string | undefined;
|
|
12753
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12702
12754
|
}>, z.ZodObject<{
|
|
12703
12755
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
12704
12756
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -12723,6 +12775,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12723
12775
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12724
12776
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12725
12777
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12778
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12726
12779
|
}, "strip", z.ZodTypeAny, {
|
|
12727
12780
|
x: number;
|
|
12728
12781
|
y: number;
|
|
@@ -12739,6 +12792,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12739
12792
|
port_hints?: string[] | undefined;
|
|
12740
12793
|
pcb_port_id?: string | undefined;
|
|
12741
12794
|
rect_border_radius?: number | undefined;
|
|
12795
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12742
12796
|
}, {
|
|
12743
12797
|
x: string | number;
|
|
12744
12798
|
y: string | number;
|
|
@@ -12757,6 +12811,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12757
12811
|
pcb_port_id?: string | undefined;
|
|
12758
12812
|
rect_border_radius?: number | undefined;
|
|
12759
12813
|
pcb_smtpad_id?: string | undefined;
|
|
12814
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12760
12815
|
}>, z.ZodObject<{
|
|
12761
12816
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
12762
12817
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -12781,6 +12836,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12781
12836
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12782
12837
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12783
12838
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12839
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12784
12840
|
}, "strip", z.ZodTypeAny, {
|
|
12785
12841
|
x: number;
|
|
12786
12842
|
y: number;
|
|
@@ -12797,6 +12853,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12797
12853
|
pcb_group_id?: string | undefined;
|
|
12798
12854
|
port_hints?: string[] | undefined;
|
|
12799
12855
|
pcb_port_id?: string | undefined;
|
|
12856
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12800
12857
|
}, {
|
|
12801
12858
|
x: string | number;
|
|
12802
12859
|
y: string | number;
|
|
@@ -12815,6 +12872,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12815
12872
|
port_hints?: string[] | undefined;
|
|
12816
12873
|
pcb_port_id?: string | undefined;
|
|
12817
12874
|
pcb_smtpad_id?: string | undefined;
|
|
12875
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12818
12876
|
}>, z.ZodObject<{
|
|
12819
12877
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
12820
12878
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -12838,6 +12896,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12838
12896
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12839
12897
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12840
12898
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12899
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12841
12900
|
}, "strip", z.ZodTypeAny, {
|
|
12842
12901
|
x: number;
|
|
12843
12902
|
y: number;
|
|
@@ -12853,6 +12912,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12853
12912
|
pcb_group_id?: string | undefined;
|
|
12854
12913
|
port_hints?: string[] | undefined;
|
|
12855
12914
|
pcb_port_id?: string | undefined;
|
|
12915
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12856
12916
|
}, {
|
|
12857
12917
|
x: string | number;
|
|
12858
12918
|
y: string | number;
|
|
@@ -12870,6 +12930,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12870
12930
|
port_hints?: string[] | undefined;
|
|
12871
12931
|
pcb_port_id?: string | undefined;
|
|
12872
12932
|
pcb_smtpad_id?: string | undefined;
|
|
12933
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12873
12934
|
}>, z.ZodObject<{
|
|
12874
12935
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
12875
12936
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -12898,6 +12959,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12898
12959
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12899
12960
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
12900
12961
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
12962
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
12901
12963
|
}, "strip", z.ZodTypeAny, {
|
|
12902
12964
|
type: "pcb_smtpad";
|
|
12903
12965
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -12912,6 +12974,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12912
12974
|
pcb_group_id?: string | undefined;
|
|
12913
12975
|
port_hints?: string[] | undefined;
|
|
12914
12976
|
pcb_port_id?: string | undefined;
|
|
12977
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12915
12978
|
}, {
|
|
12916
12979
|
type: "pcb_smtpad";
|
|
12917
12980
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -12928,6 +12991,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12928
12991
|
port_hints?: string[] | undefined;
|
|
12929
12992
|
pcb_port_id?: string | undefined;
|
|
12930
12993
|
pcb_smtpad_id?: string | undefined;
|
|
12994
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
12931
12995
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
12932
12996
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
12933
12997
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -14733,7 +14797,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14733
14797
|
x: string | number;
|
|
14734
14798
|
y: string | number;
|
|
14735
14799
|
}>;
|
|
14736
|
-
source_component_id: z.ZodString
|
|
14800
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
14737
14801
|
schematic_component_id: z.ZodString;
|
|
14738
14802
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14739
14803
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -14849,9 +14913,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14849
14913
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
14850
14914
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
14851
14915
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
14916
|
+
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
14917
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
14852
14918
|
}, "strip", z.ZodTypeAny, {
|
|
14853
14919
|
type: "schematic_component";
|
|
14854
|
-
source_component_id: string;
|
|
14855
14920
|
center: {
|
|
14856
14921
|
x: number;
|
|
14857
14922
|
y: number;
|
|
@@ -14861,7 +14926,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14861
14926
|
width: number;
|
|
14862
14927
|
height: number;
|
|
14863
14928
|
};
|
|
14929
|
+
source_component_id?: string | undefined;
|
|
14864
14930
|
subcircuit_id?: string | undefined;
|
|
14931
|
+
source_group_id?: string | undefined;
|
|
14865
14932
|
pin_spacing?: number | undefined;
|
|
14866
14933
|
pin_styles?: Record<string, {
|
|
14867
14934
|
left_margin?: number | undefined;
|
|
@@ -14897,9 +14964,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14897
14964
|
port_labels?: Record<string, string> | undefined;
|
|
14898
14965
|
symbol_display_value?: string | undefined;
|
|
14899
14966
|
schematic_group_id?: string | undefined;
|
|
14967
|
+
is_schematic_group?: boolean | undefined;
|
|
14900
14968
|
}, {
|
|
14901
14969
|
type: "schematic_component";
|
|
14902
|
-
source_component_id: string;
|
|
14903
14970
|
center: {
|
|
14904
14971
|
x: string | number;
|
|
14905
14972
|
y: string | number;
|
|
@@ -14909,7 +14976,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14909
14976
|
width: number;
|
|
14910
14977
|
height: number;
|
|
14911
14978
|
};
|
|
14979
|
+
source_component_id?: string | undefined;
|
|
14912
14980
|
subcircuit_id?: string | undefined;
|
|
14981
|
+
source_group_id?: string | undefined;
|
|
14913
14982
|
pin_spacing?: string | number | undefined;
|
|
14914
14983
|
pin_styles?: Record<string, {
|
|
14915
14984
|
left_margin?: string | number | undefined;
|
|
@@ -14945,6 +15014,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14945
15014
|
port_labels?: Record<string, string> | undefined;
|
|
14946
15015
|
symbol_display_value?: string | undefined;
|
|
14947
15016
|
schematic_group_id?: string | undefined;
|
|
15017
|
+
is_schematic_group?: boolean | undefined;
|
|
14948
15018
|
}>, z.ZodObject<{
|
|
14949
15019
|
type: z.ZodLiteral<"schematic_port">;
|
|
14950
15020
|
schematic_port_id: z.ZodString;
|
|
@@ -15486,6 +15556,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15486
15556
|
y: string | number;
|
|
15487
15557
|
}>;
|
|
15488
15558
|
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
15559
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
15489
15560
|
name: z.ZodOptional<z.ZodString>;
|
|
15490
15561
|
description: z.ZodOptional<z.ZodString>;
|
|
15491
15562
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15503,6 +15574,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15503
15574
|
name?: string | undefined;
|
|
15504
15575
|
subcircuit_id?: string | undefined;
|
|
15505
15576
|
is_subcircuit?: boolean | undefined;
|
|
15577
|
+
show_as_schematic_box?: boolean | undefined;
|
|
15506
15578
|
}, {
|
|
15507
15579
|
type: "schematic_group";
|
|
15508
15580
|
width: string | number;
|
|
@@ -15518,6 +15590,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15518
15590
|
subcircuit_id?: string | undefined;
|
|
15519
15591
|
is_subcircuit?: boolean | undefined;
|
|
15520
15592
|
schematic_group_id?: string | undefined;
|
|
15593
|
+
show_as_schematic_box?: boolean | undefined;
|
|
15521
15594
|
}>, z.ZodObject<{
|
|
15522
15595
|
type: z.ZodLiteral<"schematic_table">;
|
|
15523
15596
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -16948,6 +17021,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16948
17021
|
parent_subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16949
17022
|
parent_source_group_id: z.ZodOptional<z.ZodString>;
|
|
16950
17023
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
17024
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
16951
17025
|
name: z.ZodOptional<z.ZodString>;
|
|
16952
17026
|
}, "strip", z.ZodTypeAny, {
|
|
16953
17027
|
type: "source_group";
|
|
@@ -16955,6 +17029,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16955
17029
|
name?: string | undefined;
|
|
16956
17030
|
subcircuit_id?: string | undefined;
|
|
16957
17031
|
is_subcircuit?: boolean | undefined;
|
|
17032
|
+
show_as_schematic_box?: boolean | undefined;
|
|
16958
17033
|
parent_subcircuit_id?: string | undefined;
|
|
16959
17034
|
parent_source_group_id?: string | undefined;
|
|
16960
17035
|
}, {
|
|
@@ -16963,6 +17038,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16963
17038
|
name?: string | undefined;
|
|
16964
17039
|
subcircuit_id?: string | undefined;
|
|
16965
17040
|
is_subcircuit?: boolean | undefined;
|
|
17041
|
+
show_as_schematic_box?: boolean | undefined;
|
|
16966
17042
|
parent_subcircuit_id?: string | undefined;
|
|
16967
17043
|
parent_source_group_id?: string | undefined;
|
|
16968
17044
|
}>, z.ZodObject<{
|
|
@@ -18714,6 +18790,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18714
18790
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18715
18791
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18716
18792
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
18793
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18717
18794
|
}, "strip", z.ZodTypeAny, {
|
|
18718
18795
|
x: number;
|
|
18719
18796
|
y: number;
|
|
@@ -18727,6 +18804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18727
18804
|
pcb_group_id?: string | undefined;
|
|
18728
18805
|
port_hints?: string[] | undefined;
|
|
18729
18806
|
pcb_port_id?: string | undefined;
|
|
18807
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18730
18808
|
}, {
|
|
18731
18809
|
x: string | number;
|
|
18732
18810
|
y: string | number;
|
|
@@ -18742,6 +18820,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18742
18820
|
port_hints?: string[] | undefined;
|
|
18743
18821
|
pcb_port_id?: string | undefined;
|
|
18744
18822
|
pcb_smtpad_id?: string | undefined;
|
|
18823
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18745
18824
|
}>, z.ZodObject<{
|
|
18746
18825
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
18747
18826
|
shape: z.ZodLiteral<"rect">;
|
|
@@ -18765,6 +18844,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18765
18844
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18766
18845
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18767
18846
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
18847
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18768
18848
|
}, "strip", z.ZodTypeAny, {
|
|
18769
18849
|
x: number;
|
|
18770
18850
|
y: number;
|
|
@@ -18780,6 +18860,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18780
18860
|
port_hints?: string[] | undefined;
|
|
18781
18861
|
pcb_port_id?: string | undefined;
|
|
18782
18862
|
rect_border_radius?: number | undefined;
|
|
18863
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18783
18864
|
}, {
|
|
18784
18865
|
x: string | number;
|
|
18785
18866
|
y: string | number;
|
|
@@ -18797,6 +18878,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18797
18878
|
pcb_port_id?: string | undefined;
|
|
18798
18879
|
rect_border_radius?: number | undefined;
|
|
18799
18880
|
pcb_smtpad_id?: string | undefined;
|
|
18881
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18800
18882
|
}>, z.ZodObject<{
|
|
18801
18883
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
18802
18884
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -18821,6 +18903,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18821
18903
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18822
18904
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18823
18905
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
18906
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18824
18907
|
}, "strip", z.ZodTypeAny, {
|
|
18825
18908
|
x: number;
|
|
18826
18909
|
y: number;
|
|
@@ -18837,6 +18920,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18837
18920
|
port_hints?: string[] | undefined;
|
|
18838
18921
|
pcb_port_id?: string | undefined;
|
|
18839
18922
|
rect_border_radius?: number | undefined;
|
|
18923
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18840
18924
|
}, {
|
|
18841
18925
|
x: string | number;
|
|
18842
18926
|
y: string | number;
|
|
@@ -18855,6 +18939,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18855
18939
|
pcb_port_id?: string | undefined;
|
|
18856
18940
|
rect_border_radius?: number | undefined;
|
|
18857
18941
|
pcb_smtpad_id?: string | undefined;
|
|
18942
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18858
18943
|
}>, z.ZodObject<{
|
|
18859
18944
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
18860
18945
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -18879,6 +18964,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18879
18964
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18880
18965
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18881
18966
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
18967
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18882
18968
|
}, "strip", z.ZodTypeAny, {
|
|
18883
18969
|
x: number;
|
|
18884
18970
|
y: number;
|
|
@@ -18895,6 +18981,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18895
18981
|
pcb_group_id?: string | undefined;
|
|
18896
18982
|
port_hints?: string[] | undefined;
|
|
18897
18983
|
pcb_port_id?: string | undefined;
|
|
18984
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18898
18985
|
}, {
|
|
18899
18986
|
x: string | number;
|
|
18900
18987
|
y: string | number;
|
|
@@ -18913,6 +19000,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18913
19000
|
port_hints?: string[] | undefined;
|
|
18914
19001
|
pcb_port_id?: string | undefined;
|
|
18915
19002
|
pcb_smtpad_id?: string | undefined;
|
|
19003
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18916
19004
|
}>, z.ZodObject<{
|
|
18917
19005
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
18918
19006
|
shape: z.ZodLiteral<"pill">;
|
|
@@ -18936,6 +19024,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18936
19024
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18937
19025
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18938
19026
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
19027
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18939
19028
|
}, "strip", z.ZodTypeAny, {
|
|
18940
19029
|
x: number;
|
|
18941
19030
|
y: number;
|
|
@@ -18951,6 +19040,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18951
19040
|
pcb_group_id?: string | undefined;
|
|
18952
19041
|
port_hints?: string[] | undefined;
|
|
18953
19042
|
pcb_port_id?: string | undefined;
|
|
19043
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18954
19044
|
}, {
|
|
18955
19045
|
x: string | number;
|
|
18956
19046
|
y: string | number;
|
|
@@ -18968,6 +19058,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18968
19058
|
port_hints?: string[] | undefined;
|
|
18969
19059
|
pcb_port_id?: string | undefined;
|
|
18970
19060
|
pcb_smtpad_id?: string | undefined;
|
|
19061
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
18971
19062
|
}>, z.ZodObject<{
|
|
18972
19063
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
18973
19064
|
shape: z.ZodLiteral<"polygon">;
|
|
@@ -18996,6 +19087,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
18996
19087
|
port_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18997
19088
|
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
18998
19089
|
pcb_port_id: z.ZodOptional<z.ZodString>;
|
|
19090
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
18999
19091
|
}, "strip", z.ZodTypeAny, {
|
|
19000
19092
|
type: "pcb_smtpad";
|
|
19001
19093
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
@@ -19010,6 +19102,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19010
19102
|
pcb_group_id?: string | undefined;
|
|
19011
19103
|
port_hints?: string[] | undefined;
|
|
19012
19104
|
pcb_port_id?: string | undefined;
|
|
19105
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
19013
19106
|
}, {
|
|
19014
19107
|
type: "pcb_smtpad";
|
|
19015
19108
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
@@ -19026,6 +19119,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
19026
19119
|
port_hints?: string[] | undefined;
|
|
19027
19120
|
pcb_port_id?: string | undefined;
|
|
19028
19121
|
pcb_smtpad_id?: string | undefined;
|
|
19122
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
19029
19123
|
}>]>, z.ZodUnion<[z.ZodObject<{
|
|
19030
19124
|
type: z.ZodLiteral<"pcb_solder_paste">;
|
|
19031
19125
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -20831,7 +20925,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20831
20925
|
x: string | number;
|
|
20832
20926
|
y: string | number;
|
|
20833
20927
|
}>;
|
|
20834
|
-
source_component_id: z.ZodString
|
|
20928
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
20835
20929
|
schematic_component_id: z.ZodString;
|
|
20836
20930
|
pin_spacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20837
20931
|
pin_styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -20947,9 +21041,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20947
21041
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
20948
21042
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
20949
21043
|
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
21044
|
+
is_schematic_group: z.ZodOptional<z.ZodBoolean>;
|
|
21045
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
20950
21046
|
}, "strip", z.ZodTypeAny, {
|
|
20951
21047
|
type: "schematic_component";
|
|
20952
|
-
source_component_id: string;
|
|
20953
21048
|
center: {
|
|
20954
21049
|
x: number;
|
|
20955
21050
|
y: number;
|
|
@@ -20959,7 +21054,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20959
21054
|
width: number;
|
|
20960
21055
|
height: number;
|
|
20961
21056
|
};
|
|
21057
|
+
source_component_id?: string | undefined;
|
|
20962
21058
|
subcircuit_id?: string | undefined;
|
|
21059
|
+
source_group_id?: string | undefined;
|
|
20963
21060
|
pin_spacing?: number | undefined;
|
|
20964
21061
|
pin_styles?: Record<string, {
|
|
20965
21062
|
left_margin?: number | undefined;
|
|
@@ -20995,9 +21092,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
20995
21092
|
port_labels?: Record<string, string> | undefined;
|
|
20996
21093
|
symbol_display_value?: string | undefined;
|
|
20997
21094
|
schematic_group_id?: string | undefined;
|
|
21095
|
+
is_schematic_group?: boolean | undefined;
|
|
20998
21096
|
}, {
|
|
20999
21097
|
type: "schematic_component";
|
|
21000
|
-
source_component_id: string;
|
|
21001
21098
|
center: {
|
|
21002
21099
|
x: string | number;
|
|
21003
21100
|
y: string | number;
|
|
@@ -21007,7 +21104,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21007
21104
|
width: number;
|
|
21008
21105
|
height: number;
|
|
21009
21106
|
};
|
|
21107
|
+
source_component_id?: string | undefined;
|
|
21010
21108
|
subcircuit_id?: string | undefined;
|
|
21109
|
+
source_group_id?: string | undefined;
|
|
21011
21110
|
pin_spacing?: string | number | undefined;
|
|
21012
21111
|
pin_styles?: Record<string, {
|
|
21013
21112
|
left_margin?: string | number | undefined;
|
|
@@ -21043,6 +21142,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21043
21142
|
port_labels?: Record<string, string> | undefined;
|
|
21044
21143
|
symbol_display_value?: string | undefined;
|
|
21045
21144
|
schematic_group_id?: string | undefined;
|
|
21145
|
+
is_schematic_group?: boolean | undefined;
|
|
21046
21146
|
}>, z.ZodObject<{
|
|
21047
21147
|
type: z.ZodLiteral<"schematic_port">;
|
|
21048
21148
|
schematic_port_id: z.ZodString;
|
|
@@ -21584,6 +21684,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21584
21684
|
y: string | number;
|
|
21585
21685
|
}>;
|
|
21586
21686
|
schematic_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
21687
|
+
show_as_schematic_box: z.ZodOptional<z.ZodBoolean>;
|
|
21587
21688
|
name: z.ZodOptional<z.ZodString>;
|
|
21588
21689
|
description: z.ZodOptional<z.ZodString>;
|
|
21589
21690
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21601,6 +21702,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21601
21702
|
name?: string | undefined;
|
|
21602
21703
|
subcircuit_id?: string | undefined;
|
|
21603
21704
|
is_subcircuit?: boolean | undefined;
|
|
21705
|
+
show_as_schematic_box?: boolean | undefined;
|
|
21604
21706
|
}, {
|
|
21605
21707
|
type: "schematic_group";
|
|
21606
21708
|
width: string | number;
|
|
@@ -21616,6 +21718,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21616
21718
|
subcircuit_id?: string | undefined;
|
|
21617
21719
|
is_subcircuit?: boolean | undefined;
|
|
21618
21720
|
schematic_group_id?: string | undefined;
|
|
21721
|
+
show_as_schematic_box?: boolean | undefined;
|
|
21619
21722
|
}>, z.ZodObject<{
|
|
21620
21723
|
type: z.ZodLiteral<"schematic_table">;
|
|
21621
21724
|
schematic_table_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|