The ATProto lexicons for bragsheet.social.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change begin and end to freeform period. Added entryType

+9 -8
+9 -8
src/lexicons/social.bragsheet.entry.ts
··· 12 12 maxGraphemes: 500, 13 13 description: "Title of the entry.", 14 14 }), 15 + entryType: lx.string({ 16 + required: true, 17 + maxLength: 500, 18 + maxGraphemes: 50, 19 + knownValues: ["academic", "professional", "personal"], 20 + }), 15 21 content: lx.string({ 16 22 required: true, 17 23 maxLength: 50000, 18 24 maxGraphemes: 5000, 19 - description: "The body of the entry.", 25 + description: "The body of the entry. md is acceptible.", 20 26 }), 21 - rangeStart: lx.string({ 27 + period: lx.string({ 22 28 format: "datetime", 23 29 description: 24 - "Timestamp representing the beginning of the timeframe for this entry.", 25 - }), 26 - rangeEnd: lx.string({ 27 - format: "datetime", 28 - description: 29 - "Timestamp representing the end of the timeframe for this entry.", 30 + "Free form string representing the date range (from-to), MM/YYYY, or YYYY. ", 30 31 }), 31 32 publishedAt: lx.string({ 32 33 required: true,