AT-based link agregator. Mirror of https://github.com/likeandscribe/frontpage

Paragraph block text should be required

tom.sherman.is 684fc71c 453634b5

verified
+3 -1
+1
lexicons/fyi/frontpage/richtext/block.json
··· 14 14 }, 15 15 "plaintextParagraph": { 16 16 "type": "object", 17 + "required": ["text"], 17 18 "properties": { 18 19 "text": { 19 20 "type": "string",
+1
packages/frontpage-atproto-client/src/lexicons.ts
··· 897 897 }, 898 898 plaintextParagraph: { 899 899 type: "object", 900 + required: ["text"], 900 901 properties: { 901 902 text: { 902 903 type: "string",
+1 -1
packages/frontpage-atproto-client/src/types/fyi/frontpage/richtext/block.ts
··· 31 31 32 32 export interface PlaintextParagraph { 33 33 $type?: "fyi.frontpage.richtext.block#plaintextParagraph"; 34 - text?: string; 34 + text: string; 35 35 } 36 36 37 37 const hashPlaintextParagraph = "plaintextParagraph";