@seed-hypermedia/client 0.0.2 → 0.0.3

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.
@@ -21,7 +21,7 @@ var unpackedHmIdSchema = z.object({
21
21
  targetDocUid: z.string().nullable().optional(),
22
22
  targetDocPath: z.array(z.string()).nullable().optional()
23
23
  });
24
- var HMBlockChildrenTypeSchema = z.union([z.literal("Group"), z.literal("Ordered"), z.literal("Unordered"), z.literal("Blockquote")]).nullable();
24
+ var HMBlockChildrenTypeSchema = z.union([z.literal("Group"), z.literal("Ordered"), z.literal("Unordered"), z.literal("Blockquote"), z.literal("Grid")]).nullable();
25
25
  var HMEmbedViewSchema = z.union([z.literal("Content"), z.literal("Card"), z.literal("Comments")]);
26
26
  var HMQueryStyleSchema = z.union([z.literal("Card"), z.literal("List")]);
27
27
  var baseAnnotationProperties = {
@@ -93,7 +93,8 @@ var textBlockProperties = {
93
93
  annotations: HMAnnotationsSchema
94
94
  };
95
95
  var parentBlockAttributes = {
96
- childrenType: HMBlockChildrenTypeSchema.optional()
96
+ childrenType: HMBlockChildrenTypeSchema.optional(),
97
+ columnCount: z.number().optional()
97
98
  };
98
99
  var HMBlockParagraphSchema = z.object({
99
100
  type: z.literal("Paragraph"),