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 b4661065 07958065

+24 -4
+5
.changeset/goofy-rabbits-brush.md
··· 1 + --- 2 + '@atcute/tangled': patch 3 + --- 4 + 5 + pull latest Tangled lexicons
+1 -1
packages/definitions/tangled/lexicons/README.md
··· 3 3 this directory contains lexicon documents pulled from the following sources: 4 4 5 5 - https://tangled.org/tangled.org/core.git 6 - - commit: d2d6839612e37cdc52d0e25e1502459fc3dfda3f 6 + - commit: a4a5d91838e384859adf77889e26e5f914aaf4e8
+8 -2
packages/definitions/tangled/lexicons/sh/tangled/repo/pull.json
··· 9 9 "key": "tid", 10 10 "record": { 11 11 "type": "object", 12 - "required": ["target", "title", "patch", "createdAt"], 12 + "required": ["target", "title", "patchBlob", "createdAt"], 13 13 "properties": { 14 14 "target": { 15 15 "type": "ref", ··· 22 22 "type": "string" 23 23 }, 24 24 "patch": { 25 - "type": "string" 25 + "type": "string", 26 + "description": "(deprecated) use patchBlob instead" 27 + }, 28 + "patchBlob": { 29 + "type": "blob", 30 + "accept": ["text/x-patch"], 31 + "description": "patch content" 26 32 }, 27 33 "source": { 28 34 "type": "ref",
+10 -1
packages/definitions/tangled/lib/lexicons/types/sh/tangled/repo/pull.ts
··· 9 9 body: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 10 10 createdAt: /*#__PURE__*/ v.datetimeString(), 11 11 mentions: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.array(/*#__PURE__*/ v.didString())), 12 - patch: /*#__PURE__*/ v.string(), 12 + /** 13 + * (deprecated) use patchBlob instead 14 + * @deprecated 15 + */ 16 + patch: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 17 + /** 18 + * patch content 19 + * @accept text/x-patch 20 + */ 21 + patchBlob: /*#__PURE__*/ v.blob(), 13 22 references: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.array(/*#__PURE__*/ v.resourceUriString())), 14 23 get source() { 15 24 return /*#__PURE__*/ v.optional(sourceSchema);