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(leaflet): pull latest Leaflet lexicons

Mary ba09724a 6f5906f2

+18 -1
+5
.changeset/tidy-peaches-pick.md
··· 1 + --- 2 + '@atcute/leaflet': patch 3 + --- 4 + 5 + pull latest Leaflet lexicons
+1 -1
packages/definitions/leaflet/lexicons/README.md
··· 3 3 this directory contains lexicon documents pulled from the following sources: 4 4 5 5 - https://github.com/hyperlink-academy/leaflet.git 6 - - commit: fd3b12273cc0e24fdba1b2fc729b48a8560ff15e 6 + - commit: 78cf7d436d825274649142dfede38466fbc1994d
+7
packages/definitions/leaflet/lexicons/pub/leaflet/document.json
··· 42 42 "type": "ref", 43 43 "ref": "pub.leaflet.publication#theme" 44 44 }, 45 + "tags": { 46 + "type": "array", 47 + "items": { 48 + "type": "string", 49 + "maxLength": 50 50 + } 51 + }, 45 52 "pages": { 46 53 "type": "array", 47 54 "items": {
+5
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/document.ts
··· 31 31 }, 32 32 publication: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()), 33 33 publishedAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.datetimeString()), 34 + tags: /*#__PURE__*/ v.optional( 35 + /*#__PURE__*/ v.array( 36 + /*#__PURE__*/ v.constrain(/*#__PURE__*/ v.string(), [/*#__PURE__*/ v.stringLength(0, 50)]), 37 + ), 38 + ), 34 39 get theme() { 35 40 return /*#__PURE__*/ v.optional(PubLeafletPublication.themeSchema); 36 41 },