@seed-hypermedia/client 0.0.2 → 0.0.4

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.
@@ -75,7 +75,7 @@ export declare const unpackedHmIdSchema: z.ZodObject<{
75
75
  targetDocPath?: string[] | null | undefined;
76
76
  }>;
77
77
  export type UnpackedHypermediaId = z.infer<typeof unpackedHmIdSchema>;
78
- export declare const HMBlockChildrenTypeSchema: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>;
78
+ export declare const HMBlockChildrenTypeSchema: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>;
79
79
  export type HMBlockChildrenType = z.infer<typeof HMBlockChildrenTypeSchema>;
80
80
  export declare const HMEmbedViewSchema: z.ZodUnion<[z.ZodLiteral<"Content">, z.ZodLiteral<"Card">, z.ZodLiteral<"Comments">]>;
81
81
  export type HMEmbedView = z.infer<typeof HMEmbedViewSchema>;
@@ -534,11 +534,14 @@ export declare const HMAnnotationsSchema: z.ZodOptional<z.ZodArray<z.ZodDiscrimi
534
534
  export type HMAnnotations = z.infer<typeof HMAnnotationsSchema>;
535
535
  export declare const HMBlockParagraphSchema: z.ZodObject<{
536
536
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
537
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
537
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
538
+ columnCount: z.ZodOptional<z.ZodNumber>;
538
539
  }, "strip", z.ZodTypeAny, {
539
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
540
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
541
+ columnCount?: number | undefined;
540
542
  }, {
541
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
543
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
544
+ columnCount?: number | undefined;
542
545
  }>>>;
543
546
  text: z.ZodDefault<z.ZodString>;
544
547
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -694,7 +697,8 @@ export declare const HMBlockParagraphSchema: z.ZodObject<{
694
697
  type: "Paragraph";
695
698
  id: string;
696
699
  attributes: {
697
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
700
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
701
+ columnCount?: number | undefined;
698
702
  };
699
703
  text: string;
700
704
  link?: "" | undefined;
@@ -753,7 +757,8 @@ export declare const HMBlockParagraphSchema: z.ZodObject<{
753
757
  id: string;
754
758
  link?: "" | undefined;
755
759
  attributes?: {
756
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
760
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
761
+ columnCount?: number | undefined;
757
762
  } | undefined;
758
763
  text?: string | undefined;
759
764
  annotations?: ({
@@ -809,11 +814,14 @@ export declare const HMBlockParagraphSchema: z.ZodObject<{
809
814
  }>;
810
815
  export declare const HMBlockHeadingSchema: z.ZodObject<{
811
816
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
812
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
817
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
818
+ columnCount: z.ZodOptional<z.ZodNumber>;
813
819
  }, "strip", z.ZodTypeAny, {
814
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
820
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
821
+ columnCount?: number | undefined;
815
822
  }, {
816
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
823
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
824
+ columnCount?: number | undefined;
817
825
  }>>>;
818
826
  text: z.ZodDefault<z.ZodString>;
819
827
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -969,7 +977,8 @@ export declare const HMBlockHeadingSchema: z.ZodObject<{
969
977
  type: "Heading";
970
978
  id: string;
971
979
  attributes: {
972
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
980
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
981
+ columnCount?: number | undefined;
973
982
  };
974
983
  text: string;
975
984
  link?: "" | undefined;
@@ -1028,7 +1037,8 @@ export declare const HMBlockHeadingSchema: z.ZodObject<{
1028
1037
  id: string;
1029
1038
  link?: "" | undefined;
1030
1039
  attributes?: {
1031
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1040
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1041
+ columnCount?: number | undefined;
1032
1042
  } | undefined;
1033
1043
  text?: string | undefined;
1034
1044
  annotations?: ({
@@ -1085,12 +1095,15 @@ export declare const HMBlockHeadingSchema: z.ZodObject<{
1085
1095
  export declare const HMBlockCodeSchema: z.ZodObject<{
1086
1096
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1087
1097
  language: z.ZodOptional<z.ZodString>;
1088
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1098
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1099
+ columnCount: z.ZodOptional<z.ZodNumber>;
1089
1100
  }, "strip", z.ZodTypeAny, {
1090
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1101
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1102
+ columnCount?: number | undefined;
1091
1103
  language?: string | undefined;
1092
1104
  }, {
1093
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1105
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1106
+ columnCount?: number | undefined;
1094
1107
  language?: string | undefined;
1095
1108
  }>>>;
1096
1109
  text: z.ZodDefault<z.ZodString>;
@@ -1103,7 +1116,8 @@ export declare const HMBlockCodeSchema: z.ZodObject<{
1103
1116
  type: "Code";
1104
1117
  id: string;
1105
1118
  attributes: {
1106
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1119
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1120
+ columnCount?: number | undefined;
1107
1121
  language?: string | undefined;
1108
1122
  };
1109
1123
  text: string;
@@ -1115,7 +1129,8 @@ export declare const HMBlockCodeSchema: z.ZodObject<{
1115
1129
  id: string;
1116
1130
  link?: "" | undefined;
1117
1131
  attributes?: {
1118
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1132
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1133
+ columnCount?: number | undefined;
1119
1134
  language?: string | undefined;
1120
1135
  } | undefined;
1121
1136
  text?: string | undefined;
@@ -1124,11 +1139,14 @@ export declare const HMBlockCodeSchema: z.ZodObject<{
1124
1139
  }>;
1125
1140
  export declare const HMBlockMathSchema: z.ZodObject<{
1126
1141
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1127
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1142
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1143
+ columnCount: z.ZodOptional<z.ZodNumber>;
1128
1144
  }, "strip", z.ZodTypeAny, {
1129
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1145
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1146
+ columnCount?: number | undefined;
1130
1147
  }, {
1131
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1148
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1149
+ columnCount?: number | undefined;
1132
1150
  }>>>;
1133
1151
  text: z.ZodDefault<z.ZodString>;
1134
1152
  id: z.ZodString;
@@ -1140,7 +1158,8 @@ export declare const HMBlockMathSchema: z.ZodObject<{
1140
1158
  type: "Math";
1141
1159
  id: string;
1142
1160
  attributes: {
1143
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1161
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1162
+ columnCount?: number | undefined;
1144
1163
  };
1145
1164
  text: string;
1146
1165
  link?: "" | undefined;
@@ -1151,7 +1170,8 @@ export declare const HMBlockMathSchema: z.ZodObject<{
1151
1170
  id: string;
1152
1171
  link?: "" | undefined;
1153
1172
  attributes?: {
1154
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1173
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1174
+ columnCount?: number | undefined;
1155
1175
  } | undefined;
1156
1176
  text?: string | undefined;
1157
1177
  annotations?: never[] | undefined;
@@ -1162,14 +1182,17 @@ export declare const HMBlockImageSchema: z.ZodObject<{
1162
1182
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1163
1183
  width: z.ZodOptional<z.ZodNumber>;
1164
1184
  name: z.ZodOptional<z.ZodString>;
1165
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1185
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1186
+ columnCount: z.ZodOptional<z.ZodNumber>;
1166
1187
  }, "strip", z.ZodTypeAny, {
1167
1188
  name?: string | undefined;
1168
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1189
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1190
+ columnCount?: number | undefined;
1169
1191
  width?: number | undefined;
1170
1192
  }, {
1171
1193
  name?: string | undefined;
1172
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1194
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1195
+ columnCount?: number | undefined;
1173
1196
  width?: number | undefined;
1174
1197
  }>>>;
1175
1198
  link: z.ZodString;
@@ -1328,7 +1351,8 @@ export declare const HMBlockImageSchema: z.ZodObject<{
1328
1351
  id: string;
1329
1352
  attributes: {
1330
1353
  name?: string | undefined;
1331
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1354
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1355
+ columnCount?: number | undefined;
1332
1356
  width?: number | undefined;
1333
1357
  };
1334
1358
  text: string;
@@ -1388,7 +1412,8 @@ export declare const HMBlockImageSchema: z.ZodObject<{
1388
1412
  id: string;
1389
1413
  attributes?: {
1390
1414
  name?: string | undefined;
1391
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1415
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1416
+ columnCount?: number | undefined;
1392
1417
  width?: number | undefined;
1393
1418
  } | undefined;
1394
1419
  text?: string | undefined;
@@ -1447,14 +1472,17 @@ export declare const HMBlockVideoSchema: z.ZodObject<{
1447
1472
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1448
1473
  width: z.ZodOptional<z.ZodNumber>;
1449
1474
  name: z.ZodOptional<z.ZodString>;
1450
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1475
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1476
+ columnCount: z.ZodOptional<z.ZodNumber>;
1451
1477
  }, "strip", z.ZodTypeAny, {
1452
1478
  name?: string | undefined;
1453
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1479
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1480
+ columnCount?: number | undefined;
1454
1481
  width?: number | undefined;
1455
1482
  }, {
1456
1483
  name?: string | undefined;
1457
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1484
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1485
+ columnCount?: number | undefined;
1458
1486
  width?: number | undefined;
1459
1487
  }>>>;
1460
1488
  link: z.ZodString;
@@ -1469,7 +1497,8 @@ export declare const HMBlockVideoSchema: z.ZodObject<{
1469
1497
  id: string;
1470
1498
  attributes: {
1471
1499
  name?: string | undefined;
1472
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1500
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1501
+ columnCount?: number | undefined;
1473
1502
  width?: number | undefined;
1474
1503
  };
1475
1504
  text?: "" | undefined;
@@ -1481,7 +1510,8 @@ export declare const HMBlockVideoSchema: z.ZodObject<{
1481
1510
  id: string;
1482
1511
  attributes?: {
1483
1512
  name?: string | undefined;
1484
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1513
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1514
+ columnCount?: number | undefined;
1485
1515
  width?: number | undefined;
1486
1516
  } | undefined;
1487
1517
  text?: "" | undefined;
@@ -1492,15 +1522,18 @@ export declare const HMBlockFileSchema: z.ZodObject<{
1492
1522
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1493
1523
  size: z.ZodEffects<z.ZodOptional<z.ZodNumber>, number | null, number | undefined>;
1494
1524
  name: z.ZodOptional<z.ZodString>;
1495
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1525
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1526
+ columnCount: z.ZodOptional<z.ZodNumber>;
1496
1527
  }, "strip", z.ZodTypeAny, {
1497
1528
  size: number | null;
1498
1529
  name?: string | undefined;
1499
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1530
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1531
+ columnCount?: number | undefined;
1500
1532
  }, {
1501
1533
  size?: number | undefined;
1502
1534
  name?: string | undefined;
1503
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1535
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1536
+ columnCount?: number | undefined;
1504
1537
  }>>>;
1505
1538
  link: z.ZodString;
1506
1539
  id: z.ZodString;
@@ -1515,7 +1548,8 @@ export declare const HMBlockFileSchema: z.ZodObject<{
1515
1548
  attributes: {
1516
1549
  size: number | null;
1517
1550
  name?: string | undefined;
1518
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1551
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1552
+ columnCount?: number | undefined;
1519
1553
  };
1520
1554
  text?: "" | undefined;
1521
1555
  annotations?: never[] | undefined;
@@ -1527,7 +1561,8 @@ export declare const HMBlockFileSchema: z.ZodObject<{
1527
1561
  attributes?: {
1528
1562
  size?: number | undefined;
1529
1563
  name?: string | undefined;
1530
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1564
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1565
+ columnCount?: number | undefined;
1531
1566
  } | undefined;
1532
1567
  text?: "" | undefined;
1533
1568
  annotations?: never[] | undefined;
@@ -1539,14 +1574,17 @@ export declare const HMBlockButtonSchema: z.ZodObject<{
1539
1574
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1540
1575
  name: z.ZodOptional<z.ZodString>;
1541
1576
  alignment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"center">, z.ZodLiteral<"flex-end">]>>;
1542
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1577
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1578
+ columnCount: z.ZodOptional<z.ZodNumber>;
1543
1579
  }, "strip", z.ZodTypeAny, {
1544
1580
  name?: string | undefined;
1545
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1581
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1582
+ columnCount?: number | undefined;
1546
1583
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
1547
1584
  }, {
1548
1585
  name?: string | undefined;
1549
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1586
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1587
+ columnCount?: number | undefined;
1550
1588
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
1551
1589
  }>>>;
1552
1590
  text: z.ZodOptional<z.ZodString>;
@@ -1561,7 +1599,8 @@ export declare const HMBlockButtonSchema: z.ZodObject<{
1561
1599
  id: string;
1562
1600
  attributes: {
1563
1601
  name?: string | undefined;
1564
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1602
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1603
+ columnCount?: number | undefined;
1565
1604
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
1566
1605
  };
1567
1606
  text?: string | undefined;
@@ -1573,7 +1612,8 @@ export declare const HMBlockButtonSchema: z.ZodObject<{
1573
1612
  id: string;
1574
1613
  attributes?: {
1575
1614
  name?: string | undefined;
1576
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1615
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1616
+ columnCount?: number | undefined;
1577
1617
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
1578
1618
  } | undefined;
1579
1619
  text?: string | undefined;
@@ -1584,12 +1624,15 @@ export declare const HMBlockEmbedSchema: z.ZodObject<{
1584
1624
  link: z.ZodString;
1585
1625
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1586
1626
  view: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Content">, z.ZodLiteral<"Card">, z.ZodLiteral<"Comments">]>>;
1587
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
1627
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
1628
+ columnCount: z.ZodOptional<z.ZodNumber>;
1588
1629
  }, "strip", z.ZodTypeAny, {
1589
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1630
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1631
+ columnCount?: number | undefined;
1590
1632
  view?: "Content" | "Card" | "Comments" | undefined;
1591
1633
  }, {
1592
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1634
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1635
+ columnCount?: number | undefined;
1593
1636
  view?: "Content" | "Card" | "Comments" | undefined;
1594
1637
  }>>>;
1595
1638
  id: z.ZodString;
@@ -1602,7 +1645,8 @@ export declare const HMBlockEmbedSchema: z.ZodObject<{
1602
1645
  type: "Embed";
1603
1646
  id: string;
1604
1647
  attributes: {
1605
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1648
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1649
+ columnCount?: number | undefined;
1606
1650
  view?: "Content" | "Card" | "Comments" | undefined;
1607
1651
  };
1608
1652
  text?: "" | undefined;
@@ -1613,7 +1657,8 @@ export declare const HMBlockEmbedSchema: z.ZodObject<{
1613
1657
  type: "Embed";
1614
1658
  id: string;
1615
1659
  attributes?: {
1616
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
1660
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
1661
+ columnCount?: number | undefined;
1617
1662
  view?: "Content" | "Card" | "Comments" | undefined;
1618
1663
  } | undefined;
1619
1664
  text?: "" | undefined;
@@ -4709,10 +4754,10 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4709
4754
  limit?: unknown;
4710
4755
  }>;
4711
4756
  banner: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
4712
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
4757
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
4713
4758
  }, "strip", z.ZodTypeAny, {
4714
- style: "Card" | "List";
4715
4759
  columnCount: number;
4760
+ style: "Card" | "List";
4716
4761
  query: {
4717
4762
  includes: {
4718
4763
  space: string;
@@ -4726,7 +4771,7 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4726
4771
  limit?: number | undefined;
4727
4772
  };
4728
4773
  banner: boolean;
4729
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4774
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4730
4775
  }, {
4731
4776
  query: {
4732
4777
  includes: {
@@ -4740,9 +4785,9 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4740
4785
  }[] | undefined;
4741
4786
  limit?: unknown;
4742
4787
  };
4743
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4744
- style?: "Card" | "List" | undefined;
4788
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4745
4789
  columnCount?: number | undefined;
4790
+ style?: "Card" | "List" | undefined;
4746
4791
  banner?: boolean | undefined;
4747
4792
  }>;
4748
4793
  id: z.ZodString;
@@ -4755,8 +4800,8 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4755
4800
  type: "Query";
4756
4801
  id: string;
4757
4802
  attributes: {
4758
- style: "Card" | "List";
4759
4803
  columnCount: number;
4804
+ style: "Card" | "List";
4760
4805
  query: {
4761
4806
  includes: {
4762
4807
  space: string;
@@ -4770,7 +4815,7 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4770
4815
  limit?: number | undefined;
4771
4816
  };
4772
4817
  banner: boolean;
4773
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4818
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4774
4819
  };
4775
4820
  link?: "" | undefined;
4776
4821
  text?: "" | undefined;
@@ -4792,9 +4837,9 @@ export declare const HMBlockQuerySchema: z.ZodObject<{
4792
4837
  }[] | undefined;
4793
4838
  limit?: unknown;
4794
4839
  };
4795
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4796
- style?: "Card" | "List" | undefined;
4840
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4797
4841
  columnCount?: number | undefined;
4842
+ style?: "Card" | "List" | undefined;
4798
4843
  banner?: boolean | undefined;
4799
4844
  };
4800
4845
  link?: "" | undefined;
@@ -4830,11 +4875,14 @@ export declare const HMBlockLinkSchema: z.ZodObject<{
4830
4875
  }>;
4831
4876
  export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4832
4877
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
4833
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
4878
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
4879
+ columnCount: z.ZodOptional<z.ZodNumber>;
4834
4880
  }, "strip", z.ZodTypeAny, {
4835
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4881
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4882
+ columnCount?: number | undefined;
4836
4883
  }, {
4837
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
4884
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
4885
+ columnCount?: number | undefined;
4838
4886
  }>>>;
4839
4887
  text: z.ZodDefault<z.ZodString>;
4840
4888
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -4990,7 +5038,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
4990
5038
  type: "Paragraph";
4991
5039
  id: string;
4992
5040
  attributes: {
4993
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5041
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5042
+ columnCount?: number | undefined;
4994
5043
  };
4995
5044
  text: string;
4996
5045
  link?: "" | undefined;
@@ -5049,7 +5098,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5049
5098
  id: string;
5050
5099
  link?: "" | undefined;
5051
5100
  attributes?: {
5052
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5101
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5102
+ columnCount?: number | undefined;
5053
5103
  } | undefined;
5054
5104
  text?: string | undefined;
5055
5105
  annotations?: ({
@@ -5104,11 +5154,14 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5104
5154
  revision?: string | undefined;
5105
5155
  }>, z.ZodObject<{
5106
5156
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5107
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5157
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5158
+ columnCount: z.ZodOptional<z.ZodNumber>;
5108
5159
  }, "strip", z.ZodTypeAny, {
5109
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5160
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5161
+ columnCount?: number | undefined;
5110
5162
  }, {
5111
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5163
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5164
+ columnCount?: number | undefined;
5112
5165
  }>>>;
5113
5166
  text: z.ZodDefault<z.ZodString>;
5114
5167
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -5264,7 +5317,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5264
5317
  type: "Heading";
5265
5318
  id: string;
5266
5319
  attributes: {
5267
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5320
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5321
+ columnCount?: number | undefined;
5268
5322
  };
5269
5323
  text: string;
5270
5324
  link?: "" | undefined;
@@ -5323,7 +5377,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5323
5377
  id: string;
5324
5378
  link?: "" | undefined;
5325
5379
  attributes?: {
5326
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5380
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5381
+ columnCount?: number | undefined;
5327
5382
  } | undefined;
5328
5383
  text?: string | undefined;
5329
5384
  annotations?: ({
@@ -5379,12 +5434,15 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5379
5434
  }>, z.ZodObject<{
5380
5435
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5381
5436
  language: z.ZodOptional<z.ZodString>;
5382
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5437
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5438
+ columnCount: z.ZodOptional<z.ZodNumber>;
5383
5439
  }, "strip", z.ZodTypeAny, {
5384
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5440
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5441
+ columnCount?: number | undefined;
5385
5442
  language?: string | undefined;
5386
5443
  }, {
5387
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5444
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5445
+ columnCount?: number | undefined;
5388
5446
  language?: string | undefined;
5389
5447
  }>>>;
5390
5448
  text: z.ZodDefault<z.ZodString>;
@@ -5397,7 +5455,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5397
5455
  type: "Code";
5398
5456
  id: string;
5399
5457
  attributes: {
5400
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5458
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5459
+ columnCount?: number | undefined;
5401
5460
  language?: string | undefined;
5402
5461
  };
5403
5462
  text: string;
@@ -5409,7 +5468,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5409
5468
  id: string;
5410
5469
  link?: "" | undefined;
5411
5470
  attributes?: {
5412
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5471
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5472
+ columnCount?: number | undefined;
5413
5473
  language?: string | undefined;
5414
5474
  } | undefined;
5415
5475
  text?: string | undefined;
@@ -5417,11 +5477,14 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5417
5477
  revision?: string | undefined;
5418
5478
  }>, z.ZodObject<{
5419
5479
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5420
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5480
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5481
+ columnCount: z.ZodOptional<z.ZodNumber>;
5421
5482
  }, "strip", z.ZodTypeAny, {
5422
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5483
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5484
+ columnCount?: number | undefined;
5423
5485
  }, {
5424
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5486
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5487
+ columnCount?: number | undefined;
5425
5488
  }>>>;
5426
5489
  text: z.ZodDefault<z.ZodString>;
5427
5490
  id: z.ZodString;
@@ -5433,7 +5496,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5433
5496
  type: "Math";
5434
5497
  id: string;
5435
5498
  attributes: {
5436
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5499
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5500
+ columnCount?: number | undefined;
5437
5501
  };
5438
5502
  text: string;
5439
5503
  link?: "" | undefined;
@@ -5444,7 +5508,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5444
5508
  id: string;
5445
5509
  link?: "" | undefined;
5446
5510
  attributes?: {
5447
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5511
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5512
+ columnCount?: number | undefined;
5448
5513
  } | undefined;
5449
5514
  text?: string | undefined;
5450
5515
  annotations?: never[] | undefined;
@@ -5453,14 +5518,17 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5453
5518
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5454
5519
  width: z.ZodOptional<z.ZodNumber>;
5455
5520
  name: z.ZodOptional<z.ZodString>;
5456
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5521
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5522
+ columnCount: z.ZodOptional<z.ZodNumber>;
5457
5523
  }, "strip", z.ZodTypeAny, {
5458
5524
  name?: string | undefined;
5459
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5525
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5526
+ columnCount?: number | undefined;
5460
5527
  width?: number | undefined;
5461
5528
  }, {
5462
5529
  name?: string | undefined;
5463
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5530
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5531
+ columnCount?: number | undefined;
5464
5532
  width?: number | undefined;
5465
5533
  }>>>;
5466
5534
  link: z.ZodString;
@@ -5619,7 +5687,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5619
5687
  id: string;
5620
5688
  attributes: {
5621
5689
  name?: string | undefined;
5622
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5690
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5691
+ columnCount?: number | undefined;
5623
5692
  width?: number | undefined;
5624
5693
  };
5625
5694
  text: string;
@@ -5679,7 +5748,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5679
5748
  id: string;
5680
5749
  attributes?: {
5681
5750
  name?: string | undefined;
5682
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5751
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5752
+ columnCount?: number | undefined;
5683
5753
  width?: number | undefined;
5684
5754
  } | undefined;
5685
5755
  text?: string | undefined;
@@ -5737,14 +5807,17 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5737
5807
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5738
5808
  width: z.ZodOptional<z.ZodNumber>;
5739
5809
  name: z.ZodOptional<z.ZodString>;
5740
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5810
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5811
+ columnCount: z.ZodOptional<z.ZodNumber>;
5741
5812
  }, "strip", z.ZodTypeAny, {
5742
5813
  name?: string | undefined;
5743
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5814
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5815
+ columnCount?: number | undefined;
5744
5816
  width?: number | undefined;
5745
5817
  }, {
5746
5818
  name?: string | undefined;
5747
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5819
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5820
+ columnCount?: number | undefined;
5748
5821
  width?: number | undefined;
5749
5822
  }>>>;
5750
5823
  link: z.ZodString;
@@ -5759,7 +5832,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5759
5832
  id: string;
5760
5833
  attributes: {
5761
5834
  name?: string | undefined;
5762
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5835
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5836
+ columnCount?: number | undefined;
5763
5837
  width?: number | undefined;
5764
5838
  };
5765
5839
  text?: "" | undefined;
@@ -5771,7 +5845,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5771
5845
  id: string;
5772
5846
  attributes?: {
5773
5847
  name?: string | undefined;
5774
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5848
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5849
+ columnCount?: number | undefined;
5775
5850
  width?: number | undefined;
5776
5851
  } | undefined;
5777
5852
  text?: "" | undefined;
@@ -5781,15 +5856,18 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5781
5856
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5782
5857
  size: z.ZodEffects<z.ZodOptional<z.ZodNumber>, number | null, number | undefined>;
5783
5858
  name: z.ZodOptional<z.ZodString>;
5784
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5859
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5860
+ columnCount: z.ZodOptional<z.ZodNumber>;
5785
5861
  }, "strip", z.ZodTypeAny, {
5786
5862
  size: number | null;
5787
5863
  name?: string | undefined;
5788
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5864
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5865
+ columnCount?: number | undefined;
5789
5866
  }, {
5790
5867
  size?: number | undefined;
5791
5868
  name?: string | undefined;
5792
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5869
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5870
+ columnCount?: number | undefined;
5793
5871
  }>>>;
5794
5872
  link: z.ZodString;
5795
5873
  id: z.ZodString;
@@ -5804,7 +5882,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5804
5882
  attributes: {
5805
5883
  size: number | null;
5806
5884
  name?: string | undefined;
5807
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5885
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5886
+ columnCount?: number | undefined;
5808
5887
  };
5809
5888
  text?: "" | undefined;
5810
5889
  annotations?: never[] | undefined;
@@ -5816,7 +5895,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5816
5895
  attributes?: {
5817
5896
  size?: number | undefined;
5818
5897
  name?: string | undefined;
5819
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5898
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5899
+ columnCount?: number | undefined;
5820
5900
  } | undefined;
5821
5901
  text?: "" | undefined;
5822
5902
  annotations?: never[] | undefined;
@@ -5825,14 +5905,17 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5825
5905
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5826
5906
  name: z.ZodOptional<z.ZodString>;
5827
5907
  alignment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"center">, z.ZodLiteral<"flex-end">]>>;
5828
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5908
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5909
+ columnCount: z.ZodOptional<z.ZodNumber>;
5829
5910
  }, "strip", z.ZodTypeAny, {
5830
5911
  name?: string | undefined;
5831
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5912
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5913
+ columnCount?: number | undefined;
5832
5914
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
5833
5915
  }, {
5834
5916
  name?: string | undefined;
5835
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5917
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5918
+ columnCount?: number | undefined;
5836
5919
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
5837
5920
  }>>>;
5838
5921
  text: z.ZodOptional<z.ZodString>;
@@ -5847,7 +5930,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5847
5930
  id: string;
5848
5931
  attributes: {
5849
5932
  name?: string | undefined;
5850
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5933
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5934
+ columnCount?: number | undefined;
5851
5935
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
5852
5936
  };
5853
5937
  text?: string | undefined;
@@ -5859,7 +5943,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5859
5943
  id: string;
5860
5944
  attributes?: {
5861
5945
  name?: string | undefined;
5862
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5946
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5947
+ columnCount?: number | undefined;
5863
5948
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
5864
5949
  } | undefined;
5865
5950
  text?: string | undefined;
@@ -5869,12 +5954,15 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5869
5954
  link: z.ZodString;
5870
5955
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5871
5956
  view: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Content">, z.ZodLiteral<"Card">, z.ZodLiteral<"Comments">]>>;
5872
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
5957
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
5958
+ columnCount: z.ZodOptional<z.ZodNumber>;
5873
5959
  }, "strip", z.ZodTypeAny, {
5874
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5960
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5961
+ columnCount?: number | undefined;
5875
5962
  view?: "Content" | "Card" | "Comments" | undefined;
5876
5963
  }, {
5877
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5964
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5965
+ columnCount?: number | undefined;
5878
5966
  view?: "Content" | "Card" | "Comments" | undefined;
5879
5967
  }>>>;
5880
5968
  id: z.ZodString;
@@ -5887,7 +5975,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5887
5975
  type: "Embed";
5888
5976
  id: string;
5889
5977
  attributes: {
5890
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5978
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5979
+ columnCount?: number | undefined;
5891
5980
  view?: "Content" | "Card" | "Comments" | undefined;
5892
5981
  };
5893
5982
  text?: "" | undefined;
@@ -5898,7 +5987,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
5898
5987
  type: "Embed";
5899
5988
  id: string;
5900
5989
  attributes?: {
5901
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
5990
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
5991
+ columnCount?: number | undefined;
5902
5992
  view?: "Content" | "Card" | "Comments" | undefined;
5903
5993
  } | undefined;
5904
5994
  text?: "" | undefined;
@@ -6005,10 +6095,10 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6005
6095
  limit?: unknown;
6006
6096
  }>;
6007
6097
  banner: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
6008
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6098
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6009
6099
  }, "strip", z.ZodTypeAny, {
6010
- style: "Card" | "List";
6011
6100
  columnCount: number;
6101
+ style: "Card" | "List";
6012
6102
  query: {
6013
6103
  includes: {
6014
6104
  space: string;
@@ -6022,7 +6112,7 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6022
6112
  limit?: number | undefined;
6023
6113
  };
6024
6114
  banner: boolean;
6025
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6115
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6026
6116
  }, {
6027
6117
  query: {
6028
6118
  includes: {
@@ -6036,9 +6126,9 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6036
6126
  }[] | undefined;
6037
6127
  limit?: unknown;
6038
6128
  };
6039
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6040
- style?: "Card" | "List" | undefined;
6129
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6041
6130
  columnCount?: number | undefined;
6131
+ style?: "Card" | "List" | undefined;
6042
6132
  banner?: boolean | undefined;
6043
6133
  }>;
6044
6134
  id: z.ZodString;
@@ -6051,8 +6141,8 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6051
6141
  type: "Query";
6052
6142
  id: string;
6053
6143
  attributes: {
6054
- style: "Card" | "List";
6055
6144
  columnCount: number;
6145
+ style: "Card" | "List";
6056
6146
  query: {
6057
6147
  includes: {
6058
6148
  space: string;
@@ -6066,7 +6156,7 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6066
6156
  limit?: number | undefined;
6067
6157
  };
6068
6158
  banner: boolean;
6069
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6159
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6070
6160
  };
6071
6161
  link?: "" | undefined;
6072
6162
  text?: "" | undefined;
@@ -6088,9 +6178,9 @@ export declare const HMBlockKnownSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
6088
6178
  }[] | undefined;
6089
6179
  limit?: unknown;
6090
6180
  };
6091
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6092
- style?: "Card" | "List" | undefined;
6181
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6093
6182
  columnCount?: number | undefined;
6183
+ style?: "Card" | "List" | undefined;
6094
6184
  banner?: boolean | undefined;
6095
6185
  };
6096
6186
  link?: "" | undefined;
@@ -6149,11 +6239,14 @@ export declare const HMBlockUnknownSchema: z.ZodObject<{
6149
6239
  }, z.ZodTypeAny, "passthrough">>;
6150
6240
  export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6151
6241
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6152
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6242
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6243
+ columnCount: z.ZodOptional<z.ZodNumber>;
6153
6244
  }, "strip", z.ZodTypeAny, {
6154
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6245
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6246
+ columnCount?: number | undefined;
6155
6247
  }, {
6156
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6248
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6249
+ columnCount?: number | undefined;
6157
6250
  }>>>;
6158
6251
  text: z.ZodDefault<z.ZodString>;
6159
6252
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -6309,7 +6402,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6309
6402
  type: "Paragraph";
6310
6403
  id: string;
6311
6404
  attributes: {
6312
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6405
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6406
+ columnCount?: number | undefined;
6313
6407
  };
6314
6408
  text: string;
6315
6409
  link?: "" | undefined;
@@ -6368,7 +6462,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6368
6462
  id: string;
6369
6463
  link?: "" | undefined;
6370
6464
  attributes?: {
6371
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6465
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6466
+ columnCount?: number | undefined;
6372
6467
  } | undefined;
6373
6468
  text?: string | undefined;
6374
6469
  annotations?: ({
@@ -6423,11 +6518,14 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6423
6518
  revision?: string | undefined;
6424
6519
  }>, z.ZodObject<{
6425
6520
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6426
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6521
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6522
+ columnCount: z.ZodOptional<z.ZodNumber>;
6427
6523
  }, "strip", z.ZodTypeAny, {
6428
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6524
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6525
+ columnCount?: number | undefined;
6429
6526
  }, {
6430
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6527
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6528
+ columnCount?: number | undefined;
6431
6529
  }>>>;
6432
6530
  text: z.ZodDefault<z.ZodString>;
6433
6531
  annotations: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -6583,7 +6681,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6583
6681
  type: "Heading";
6584
6682
  id: string;
6585
6683
  attributes: {
6586
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6684
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6685
+ columnCount?: number | undefined;
6587
6686
  };
6588
6687
  text: string;
6589
6688
  link?: "" | undefined;
@@ -6642,7 +6741,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6642
6741
  id: string;
6643
6742
  link?: "" | undefined;
6644
6743
  attributes?: {
6645
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6744
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6745
+ columnCount?: number | undefined;
6646
6746
  } | undefined;
6647
6747
  text?: string | undefined;
6648
6748
  annotations?: ({
@@ -6698,12 +6798,15 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6698
6798
  }>, z.ZodObject<{
6699
6799
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6700
6800
  language: z.ZodOptional<z.ZodString>;
6701
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6801
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6802
+ columnCount: z.ZodOptional<z.ZodNumber>;
6702
6803
  }, "strip", z.ZodTypeAny, {
6703
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6804
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6805
+ columnCount?: number | undefined;
6704
6806
  language?: string | undefined;
6705
6807
  }, {
6706
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6808
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6809
+ columnCount?: number | undefined;
6707
6810
  language?: string | undefined;
6708
6811
  }>>>;
6709
6812
  text: z.ZodDefault<z.ZodString>;
@@ -6716,7 +6819,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6716
6819
  type: "Code";
6717
6820
  id: string;
6718
6821
  attributes: {
6719
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6822
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6823
+ columnCount?: number | undefined;
6720
6824
  language?: string | undefined;
6721
6825
  };
6722
6826
  text: string;
@@ -6728,7 +6832,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6728
6832
  id: string;
6729
6833
  link?: "" | undefined;
6730
6834
  attributes?: {
6731
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6835
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6836
+ columnCount?: number | undefined;
6732
6837
  language?: string | undefined;
6733
6838
  } | undefined;
6734
6839
  text?: string | undefined;
@@ -6736,11 +6841,14 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6736
6841
  revision?: string | undefined;
6737
6842
  }>, z.ZodObject<{
6738
6843
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6739
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6844
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6845
+ columnCount: z.ZodOptional<z.ZodNumber>;
6740
6846
  }, "strip", z.ZodTypeAny, {
6741
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6847
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6848
+ columnCount?: number | undefined;
6742
6849
  }, {
6743
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6850
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6851
+ columnCount?: number | undefined;
6744
6852
  }>>>;
6745
6853
  text: z.ZodDefault<z.ZodString>;
6746
6854
  id: z.ZodString;
@@ -6752,7 +6860,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6752
6860
  type: "Math";
6753
6861
  id: string;
6754
6862
  attributes: {
6755
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6863
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6864
+ columnCount?: number | undefined;
6756
6865
  };
6757
6866
  text: string;
6758
6867
  link?: "" | undefined;
@@ -6763,7 +6872,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6763
6872
  id: string;
6764
6873
  link?: "" | undefined;
6765
6874
  attributes?: {
6766
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6875
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6876
+ columnCount?: number | undefined;
6767
6877
  } | undefined;
6768
6878
  text?: string | undefined;
6769
6879
  annotations?: never[] | undefined;
@@ -6772,14 +6882,17 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6772
6882
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6773
6883
  width: z.ZodOptional<z.ZodNumber>;
6774
6884
  name: z.ZodOptional<z.ZodString>;
6775
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
6885
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
6886
+ columnCount: z.ZodOptional<z.ZodNumber>;
6776
6887
  }, "strip", z.ZodTypeAny, {
6777
6888
  name?: string | undefined;
6778
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6889
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6890
+ columnCount?: number | undefined;
6779
6891
  width?: number | undefined;
6780
6892
  }, {
6781
6893
  name?: string | undefined;
6782
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
6894
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
6895
+ columnCount?: number | undefined;
6783
6896
  width?: number | undefined;
6784
6897
  }>>>;
6785
6898
  link: z.ZodString;
@@ -6938,7 +7051,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6938
7051
  id: string;
6939
7052
  attributes: {
6940
7053
  name?: string | undefined;
6941
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7054
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7055
+ columnCount?: number | undefined;
6942
7056
  width?: number | undefined;
6943
7057
  };
6944
7058
  text: string;
@@ -6998,7 +7112,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
6998
7112
  id: string;
6999
7113
  attributes?: {
7000
7114
  name?: string | undefined;
7001
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7115
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7116
+ columnCount?: number | undefined;
7002
7117
  width?: number | undefined;
7003
7118
  } | undefined;
7004
7119
  text?: string | undefined;
@@ -7056,14 +7171,17 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7056
7171
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
7057
7172
  width: z.ZodOptional<z.ZodNumber>;
7058
7173
  name: z.ZodOptional<z.ZodString>;
7059
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
7174
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
7175
+ columnCount: z.ZodOptional<z.ZodNumber>;
7060
7176
  }, "strip", z.ZodTypeAny, {
7061
7177
  name?: string | undefined;
7062
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7178
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7179
+ columnCount?: number | undefined;
7063
7180
  width?: number | undefined;
7064
7181
  }, {
7065
7182
  name?: string | undefined;
7066
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7183
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7184
+ columnCount?: number | undefined;
7067
7185
  width?: number | undefined;
7068
7186
  }>>>;
7069
7187
  link: z.ZodString;
@@ -7078,7 +7196,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7078
7196
  id: string;
7079
7197
  attributes: {
7080
7198
  name?: string | undefined;
7081
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7199
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7200
+ columnCount?: number | undefined;
7082
7201
  width?: number | undefined;
7083
7202
  };
7084
7203
  text?: "" | undefined;
@@ -7090,7 +7209,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7090
7209
  id: string;
7091
7210
  attributes?: {
7092
7211
  name?: string | undefined;
7093
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7212
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7213
+ columnCount?: number | undefined;
7094
7214
  width?: number | undefined;
7095
7215
  } | undefined;
7096
7216
  text?: "" | undefined;
@@ -7100,15 +7220,18 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7100
7220
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
7101
7221
  size: z.ZodEffects<z.ZodOptional<z.ZodNumber>, number | null, number | undefined>;
7102
7222
  name: z.ZodOptional<z.ZodString>;
7103
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
7223
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
7224
+ columnCount: z.ZodOptional<z.ZodNumber>;
7104
7225
  }, "strip", z.ZodTypeAny, {
7105
7226
  size: number | null;
7106
7227
  name?: string | undefined;
7107
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7228
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7229
+ columnCount?: number | undefined;
7108
7230
  }, {
7109
7231
  size?: number | undefined;
7110
7232
  name?: string | undefined;
7111
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7233
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7234
+ columnCount?: number | undefined;
7112
7235
  }>>>;
7113
7236
  link: z.ZodString;
7114
7237
  id: z.ZodString;
@@ -7123,7 +7246,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7123
7246
  attributes: {
7124
7247
  size: number | null;
7125
7248
  name?: string | undefined;
7126
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7249
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7250
+ columnCount?: number | undefined;
7127
7251
  };
7128
7252
  text?: "" | undefined;
7129
7253
  annotations?: never[] | undefined;
@@ -7135,7 +7259,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7135
7259
  attributes?: {
7136
7260
  size?: number | undefined;
7137
7261
  name?: string | undefined;
7138
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7262
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7263
+ columnCount?: number | undefined;
7139
7264
  } | undefined;
7140
7265
  text?: "" | undefined;
7141
7266
  annotations?: never[] | undefined;
@@ -7144,14 +7269,17 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7144
7269
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
7145
7270
  name: z.ZodOptional<z.ZodString>;
7146
7271
  alignment: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"flex-start">, z.ZodLiteral<"center">, z.ZodLiteral<"flex-end">]>>;
7147
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
7272
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
7273
+ columnCount: z.ZodOptional<z.ZodNumber>;
7148
7274
  }, "strip", z.ZodTypeAny, {
7149
7275
  name?: string | undefined;
7150
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7276
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7277
+ columnCount?: number | undefined;
7151
7278
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
7152
7279
  }, {
7153
7280
  name?: string | undefined;
7154
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7281
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7282
+ columnCount?: number | undefined;
7155
7283
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
7156
7284
  }>>>;
7157
7285
  text: z.ZodOptional<z.ZodString>;
@@ -7166,7 +7294,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7166
7294
  id: string;
7167
7295
  attributes: {
7168
7296
  name?: string | undefined;
7169
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7297
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7298
+ columnCount?: number | undefined;
7170
7299
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
7171
7300
  };
7172
7301
  text?: string | undefined;
@@ -7178,7 +7307,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7178
7307
  id: string;
7179
7308
  attributes?: {
7180
7309
  name?: string | undefined;
7181
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7310
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7311
+ columnCount?: number | undefined;
7182
7312
  alignment?: "flex-start" | "center" | "flex-end" | undefined;
7183
7313
  } | undefined;
7184
7314
  text?: string | undefined;
@@ -7188,12 +7318,15 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7188
7318
  link: z.ZodString;
7189
7319
  attributes: z.ZodDefault<z.ZodOptional<z.ZodObject<{
7190
7320
  view: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Content">, z.ZodLiteral<"Card">, z.ZodLiteral<"Comments">]>>;
7191
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
7321
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
7322
+ columnCount: z.ZodOptional<z.ZodNumber>;
7192
7323
  }, "strip", z.ZodTypeAny, {
7193
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7324
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7325
+ columnCount?: number | undefined;
7194
7326
  view?: "Content" | "Card" | "Comments" | undefined;
7195
7327
  }, {
7196
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7328
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7329
+ columnCount?: number | undefined;
7197
7330
  view?: "Content" | "Card" | "Comments" | undefined;
7198
7331
  }>>>;
7199
7332
  id: z.ZodString;
@@ -7206,7 +7339,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7206
7339
  type: "Embed";
7207
7340
  id: string;
7208
7341
  attributes: {
7209
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7342
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7343
+ columnCount?: number | undefined;
7210
7344
  view?: "Content" | "Card" | "Comments" | undefined;
7211
7345
  };
7212
7346
  text?: "" | undefined;
@@ -7217,7 +7351,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7217
7351
  type: "Embed";
7218
7352
  id: string;
7219
7353
  attributes?: {
7220
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7354
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7355
+ columnCount?: number | undefined;
7221
7356
  view?: "Content" | "Card" | "Comments" | undefined;
7222
7357
  } | undefined;
7223
7358
  text?: "" | undefined;
@@ -7324,10 +7459,10 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7324
7459
  limit?: unknown;
7325
7460
  }>;
7326
7461
  banner: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
7327
- childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">]>>>;
7462
+ childrenType: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"Group">, z.ZodLiteral<"Ordered">, z.ZodLiteral<"Unordered">, z.ZodLiteral<"Blockquote">, z.ZodLiteral<"Grid">]>>>;
7328
7463
  }, "strip", z.ZodTypeAny, {
7329
- style: "Card" | "List";
7330
7464
  columnCount: number;
7465
+ style: "Card" | "List";
7331
7466
  query: {
7332
7467
  includes: {
7333
7468
  space: string;
@@ -7341,7 +7476,7 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7341
7476
  limit?: number | undefined;
7342
7477
  };
7343
7478
  banner: boolean;
7344
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7479
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7345
7480
  }, {
7346
7481
  query: {
7347
7482
  includes: {
@@ -7355,9 +7490,9 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7355
7490
  }[] | undefined;
7356
7491
  limit?: unknown;
7357
7492
  };
7358
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7359
- style?: "Card" | "List" | undefined;
7493
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7360
7494
  columnCount?: number | undefined;
7495
+ style?: "Card" | "List" | undefined;
7361
7496
  banner?: boolean | undefined;
7362
7497
  }>;
7363
7498
  id: z.ZodString;
@@ -7370,8 +7505,8 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7370
7505
  type: "Query";
7371
7506
  id: string;
7372
7507
  attributes: {
7373
- style: "Card" | "List";
7374
7508
  columnCount: number;
7509
+ style: "Card" | "List";
7375
7510
  query: {
7376
7511
  includes: {
7377
7512
  space: string;
@@ -7385,7 +7520,7 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7385
7520
  limit?: number | undefined;
7386
7521
  };
7387
7522
  banner: boolean;
7388
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7523
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7389
7524
  };
7390
7525
  link?: "" | undefined;
7391
7526
  text?: "" | undefined;
@@ -7407,9 +7542,9 @@ export declare const HMBlockSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type",
7407
7542
  }[] | undefined;
7408
7543
  limit?: unknown;
7409
7544
  };
7410
- childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | null | undefined;
7411
- style?: "Card" | "List" | undefined;
7545
+ childrenType?: "Group" | "Ordered" | "Unordered" | "Blockquote" | "Grid" | null | undefined;
7412
7546
  columnCount?: number | undefined;
7547
+ style?: "Card" | "List" | undefined;
7413
7548
  banner?: boolean | undefined;
7414
7549
  };
7415
7550
  link?: "" | undefined;
@@ -12179,6 +12314,23 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
12179
12314
  importTags?: string | undefined;
12180
12315
  }>;
12181
12316
  visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
12317
+ deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12318
+ navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
12319
+ type: z.ZodLiteral<"Link">;
12320
+ id: z.ZodString;
12321
+ text: z.ZodString;
12322
+ link: z.ZodString;
12323
+ }, "strip", z.ZodTypeAny, {
12324
+ link: string;
12325
+ type: "Link";
12326
+ id: string;
12327
+ text: string;
12328
+ }, {
12329
+ link: string;
12330
+ type: "Link";
12331
+ id: string;
12332
+ text: string;
12333
+ }>, "many">>;
12182
12334
  }, "strip", z.ZodTypeAny, {
12183
12335
  id: string;
12184
12336
  visibility: "PUBLIC" | "PRIVATE";
@@ -12203,6 +12355,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
12203
12355
  importCategories?: string | undefined;
12204
12356
  importTags?: string | undefined;
12205
12357
  };
12358
+ deps: string[];
12359
+ navigation?: {
12360
+ link: string;
12361
+ type: "Link";
12362
+ id: string;
12363
+ text: string;
12364
+ }[] | undefined;
12206
12365
  locationUid?: string | undefined;
12207
12366
  locationPath?: string[] | undefined;
12208
12367
  editUid?: string | undefined;
@@ -12231,6 +12390,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
12231
12390
  importTags?: string | undefined;
12232
12391
  };
12233
12392
  visibility?: string | number | undefined;
12393
+ deps?: string[] | undefined;
12394
+ navigation?: {
12395
+ link: string;
12396
+ type: "Link";
12397
+ id: string;
12398
+ text: string;
12399
+ }[] | undefined;
12234
12400
  locationUid?: string | undefined;
12235
12401
  locationPath?: string[] | undefined;
12236
12402
  editUid?: string | undefined;
@@ -12259,6 +12425,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
12259
12425
  importCategories?: string | undefined;
12260
12426
  importTags?: string | undefined;
12261
12427
  };
12428
+ deps: string[];
12429
+ navigation?: {
12430
+ link: string;
12431
+ type: "Link";
12432
+ id: string;
12433
+ text: string;
12434
+ }[] | undefined;
12262
12435
  locationUid?: string | undefined;
12263
12436
  locationPath?: string[] | undefined;
12264
12437
  editUid?: string | undefined;
@@ -12287,6 +12460,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
12287
12460
  importTags?: string | undefined;
12288
12461
  };
12289
12462
  visibility?: string | number | undefined;
12463
+ deps?: string[] | undefined;
12464
+ navigation?: {
12465
+ link: string;
12466
+ type: "Link";
12467
+ id: string;
12468
+ text: string;
12469
+ }[] | undefined;
12290
12470
  locationUid?: string | undefined;
12291
12471
  locationPath?: string[] | undefined;
12292
12472
  editUid?: string | undefined;
@@ -12298,6 +12478,8 @@ type HMDraftMetaBase = {
12298
12478
  editPath?: string[];
12299
12479
  metadata: HMMetadata;
12300
12480
  visibility: HMResourceVisibility;
12481
+ deps: string[];
12482
+ navigation?: HMNavigationItem[];
12301
12483
  };
12302
12484
  export type HMDraftMeta = HMDraftMetaBase & ({
12303
12485
  editUid: string;
@@ -12378,6 +12560,23 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
12378
12560
  importTags?: string | undefined;
12379
12561
  }>;
12380
12562
  visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
12563
+ deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12564
+ navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
12565
+ type: z.ZodLiteral<"Link">;
12566
+ id: z.ZodString;
12567
+ text: z.ZodString;
12568
+ link: z.ZodString;
12569
+ }, "strip", z.ZodTypeAny, {
12570
+ link: string;
12571
+ type: "Link";
12572
+ id: string;
12573
+ text: string;
12574
+ }, {
12575
+ link: string;
12576
+ type: "Link";
12577
+ id: string;
12578
+ text: string;
12579
+ }>, "many">>;
12381
12580
  } & {
12382
12581
  lastUpdateTime: z.ZodNumber;
12383
12582
  }, "strip", z.ZodTypeAny, {
@@ -12405,6 +12604,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
12405
12604
  importTags?: string | undefined;
12406
12605
  };
12407
12606
  lastUpdateTime: number;
12607
+ deps: string[];
12608
+ navigation?: {
12609
+ link: string;
12610
+ type: "Link";
12611
+ id: string;
12612
+ text: string;
12613
+ }[] | undefined;
12408
12614
  locationUid?: string | undefined;
12409
12615
  locationPath?: string[] | undefined;
12410
12616
  editUid?: string | undefined;
@@ -12434,6 +12640,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
12434
12640
  };
12435
12641
  lastUpdateTime: number;
12436
12642
  visibility?: string | number | undefined;
12643
+ deps?: string[] | undefined;
12644
+ navigation?: {
12645
+ link: string;
12646
+ type: "Link";
12647
+ id: string;
12648
+ text: string;
12649
+ }[] | undefined;
12437
12650
  locationUid?: string | undefined;
12438
12651
  locationPath?: string[] | undefined;
12439
12652
  editUid?: string | undefined;
@@ -12463,6 +12676,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
12463
12676
  importTags?: string | undefined;
12464
12677
  };
12465
12678
  lastUpdateTime: number;
12679
+ deps: string[];
12680
+ navigation?: {
12681
+ link: string;
12682
+ type: "Link";
12683
+ id: string;
12684
+ text: string;
12685
+ }[] | undefined;
12466
12686
  locationUid?: string | undefined;
12467
12687
  locationPath?: string[] | undefined;
12468
12688
  editUid?: string | undefined;
@@ -12492,6 +12712,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
12492
12712
  };
12493
12713
  lastUpdateTime: number;
12494
12714
  visibility?: string | number | undefined;
12715
+ deps?: string[] | undefined;
12716
+ navigation?: {
12717
+ link: string;
12718
+ type: "Link";
12719
+ id: string;
12720
+ text: string;
12721
+ }[] | undefined;
12495
12722
  locationUid?: string | undefined;
12496
12723
  locationPath?: string[] | undefined;
12497
12724
  editUid?: string | undefined;
@@ -12569,6 +12796,23 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
12569
12796
  importTags?: string | undefined;
12570
12797
  }>;
12571
12798
  visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
12799
+ deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12800
+ navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
12801
+ type: z.ZodLiteral<"Link">;
12802
+ id: z.ZodString;
12803
+ text: z.ZodString;
12804
+ link: z.ZodString;
12805
+ }, "strip", z.ZodTypeAny, {
12806
+ link: string;
12807
+ type: "Link";
12808
+ id: string;
12809
+ text: string;
12810
+ }, {
12811
+ link: string;
12812
+ type: "Link";
12813
+ id: string;
12814
+ text: string;
12815
+ }>, "many">>;
12572
12816
  } & {
12573
12817
  lastUpdateTime: z.ZodNumber;
12574
12818
  }, "strip", z.ZodTypeAny, {
@@ -12596,6 +12840,13 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
12596
12840
  importTags?: string | undefined;
12597
12841
  };
12598
12842
  lastUpdateTime: number;
12843
+ deps: string[];
12844
+ navigation?: {
12845
+ link: string;
12846
+ type: "Link";
12847
+ id: string;
12848
+ text: string;
12849
+ }[] | undefined;
12599
12850
  locationUid?: string | undefined;
12600
12851
  locationPath?: string[] | undefined;
12601
12852
  editUid?: string | undefined;
@@ -12625,6 +12876,13 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
12625
12876
  };
12626
12877
  lastUpdateTime: number;
12627
12878
  visibility?: string | number | undefined;
12879
+ deps?: string[] | undefined;
12880
+ navigation?: {
12881
+ link: string;
12882
+ type: "Link";
12883
+ id: string;
12884
+ text: string;
12885
+ }[] | undefined;
12628
12886
  locationUid?: string | undefined;
12629
12887
  locationPath?: string[] | undefined;
12630
12888
  editUid?: string | undefined;