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(tangled): pull latest Tangled lexicons

Mary 345525aa e626d5aa

+49 -1
+5
.changeset/petite-squids-care.md
··· 1 + --- 2 + '@atcute/tangled': patch 3 + --- 4 + 5 + pull latest Tangled lexicons
+1 -1
lexdocs/tangled/README.md
··· 1 - https://github.com/mary-ext/tangled.sh-mirror/tree/208975227433c8d6ccda78b18e388e3c31509f86/lexicons/ 1 + https://github.com/mary-ext/tangled.sh-mirror/tree/dd1bcee8c99bf799130645f32c94d1693f812f0d/lexicons/
+5
lexdocs/tangled/actor/profile.json
··· 62 62 "type": "string", 63 63 "format": "at-uri" 64 64 } 65 + }, 66 + "pronouns": { 67 + "type": "string", 68 + "description": "Preferred gender pronouns.", 69 + "maxLength": 40 65 70 } 66 71 } 67 72 }
+15
lexdocs/tangled/repo/repo.json
··· 28 28 "minGraphemes": 1, 29 29 "maxGraphemes": 140 30 30 }, 31 + "website": { 32 + "type": "string", 33 + "format": "uri", 34 + "description": "Any URI related to the repo" 35 + }, 36 + "topics": { 37 + "type": "array", 38 + "description": "Topics related to the repo", 39 + "items": { 40 + "type": "string", 41 + "minLength": 1, 42 + "maxLength": 50 43 + }, 44 + "maxLength": 50 45 + }, 31 46 "source": { 32 47 "type": "string", 33 48 "format": "uri",
+7
packages/definitions/tangled/lib/lexicons/types/sh/tangled/actor/profile.ts
··· 52 52 ]), 53 53 ), 54 54 /** 55 + * Preferred gender pronouns. 56 + * @maxLength 40 57 + */ 58 + pronouns: /*#__PURE__*/ v.optional( 59 + /*#__PURE__*/ v.constrain(/*#__PURE__*/ v.string(), [/*#__PURE__*/ v.stringLength(0, 40)]), 60 + ), 61 + /** 55 62 * @minLength 0 56 63 * @maxLength 2 57 64 */
+16
packages/definitions/tangled/lib/lexicons/types/sh/tangled/repo.ts
··· 34 34 * CI runner to send jobs to and receive results from 35 35 */ 36 36 spindle: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 37 + /** 38 + * Topics related to the repo 39 + * @maxLength 50 40 + */ 41 + topics: /*#__PURE__*/ v.optional( 42 + /*#__PURE__*/ v.constrain( 43 + /*#__PURE__*/ v.array( 44 + /*#__PURE__*/ v.constrain(/*#__PURE__*/ v.string(), [/*#__PURE__*/ v.stringLength(1, 50)]), 45 + ), 46 + [/*#__PURE__*/ v.arrayLength(0, 50)], 47 + ), 48 + ), 49 + /** 50 + * Any URI related to the repo 51 + */ 52 + website: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.genericUriString()), 37 53 }), 38 54 ); 39 55