tangled
alpha
login
or
join now
frontpage.fyi
/
frontpage
22
fork
atom
AT-based link agregator. Mirror of https://github.com/likeandscribe/frontpage
22
fork
atom
overview
issues
pulls
pipelines
Paragraph block text should be required
tom.sherman.is
4 months ago
684fc71c
453634b5
verified
This commit was signed with the committer's
known signature
.
tom.sherman.is
SSH Key Fingerprint:
SHA256:s683B2DU0yXjYHmKfzMF5t1GryE92wn75ZgRoLJ76HY=
+3
-1
3 changed files
expand all
collapse all
unified
split
lexicons
fyi
frontpage
richtext
block.json
packages
frontpage-atproto-client
src
lexicons.ts
types
fyi
frontpage
richtext
block.ts
+1
lexicons/fyi/frontpage/richtext/block.json
···
14
14
},
15
15
"plaintextParagraph": {
16
16
"type": "object",
17
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
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
34
-
text?: string;
34
34
+
text: string;
35
35
}
36
36
37
37
const hashPlaintextParagraph = "plaintextParagraph";