a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

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

chore(pckt): pull latest pckt lexicons

Mary 2d0a8544 b6f3bab4

+43 -21
+5
.changeset/slick-steaks-hide.md
··· 1 + --- 2 + '@atcute/pckt': patch 3 + --- 4 + 5 + pull latest pckt lexicons
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/block/hardBreak.json
··· 2 2 "id": "blog.pckt.block.hardBreak", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Hard line break within inline content. Forces text to continue on a new line without creating a new paragraph." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/block/horizontalRule.json
··· 2 2 "id": "blog.pckt.block.horizontalRule", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Horizontal line that visually separates sections of content. Creates a thematic break between blocks." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/mark/bold.json
··· 2 2 "id": "blog.pckt.mark.bold", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Bold text formatting. Renders text with a heavier weight, typically used for emphasis or to highlight important content." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/mark/code.json
··· 2 2 "id": "blog.pckt.mark.code", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Inline code formatting. Renders text in a monospace font with distinct styling, used for code snippets within regular text." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/mark/italic.json
··· 2 2 "id": "blog.pckt.mark.italic", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Italic text formatting. Renders text in a slanted style, typically used for emphasis, titles, or foreign words." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/mark/strike.json
··· 2 2 "id": "blog.pckt.mark.strike", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Strikethrough text formatting. Renders text with a line through it, typically used to indicate deleted or outdated content." 11 + "lexicon": 1 11 12 }
+4 -3
packages/definitions/pckt/lexicons/blog/pckt/mark/underline.json
··· 2 2 "id": "blog.pckt.mark.underline", 3 3 "defs": { 4 4 "main": { 5 - "type": "object" 5 + "type": "object", 6 + "required": [], 7 + "properties": {} 6 8 } 7 9 }, 8 10 "$type": "com.atproto.lexicon.schema", 9 - "lexicon": 1, 10 - "description": "Underline text formatting. Adds a line beneath the text, typically used for emphasis or to indicate hyperlinks." 11 + "lexicon": 1 11 12 }
+5
packages/definitions/pckt/lexicons/blog/pckt/publication.json
··· 71 71 "preferences": { 72 72 "type": "object", 73 73 "properties": { 74 + "showCredit": { 75 + "type": "boolean", 76 + "default": true, 77 + "description": "Whether to display credit line on the publication" 78 + }, 74 79 "showInDiscover": { 75 80 "type": "boolean", 76 81 "default": true,
+5
packages/definitions/pckt/lib/lexicons/types/blog/pckt/publication.ts
··· 76 76 const _preferencesSchema = /*#__PURE__*/ v.object({ 77 77 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('blog.pckt.publication#preferences')), 78 78 /** 79 + * Whether to display credit line on the publication 80 + * @default true 81 + */ 82 + showCredit: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), true), 83 + /** 79 84 * Whether documents from this publication should appear in public discover feeds 80 85 * @default true 81 86 */