tangled
alpha
login
or
join now
sajidanwar.com
/
atcute
forked from
mary.my.id/atcute
0
fork
atom
a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
0
fork
atom
overview
issues
pulls
pipelines
chore: pull latest Bluesky lexicons
mary.my.id
9 months ago
01fe46ea
5383f0c2
verified
This commit was signed with the committer's
known signature
.
mary.my.id
SSH Key Fingerprint:
SHA256:ZlTP/auFSGpGnaoDg4mCTG1g9OZvXp62jWR4c6H4O3c=
+12
-7
4 changed files
expand all
collapse all
unified
split
.changeset
flat-poems-stand.md
lexdocs
bluesky
README.md
app
bsky
notification
defs.json
packages
definitions
bluesky
lib
lexicons
types
app
bsky
notification
defs.ts
+5
.changeset/flat-poems-stand.md
···
1
1
+
---
2
2
+
'@atcute/bluesky': patch
3
3
+
---
4
4
+
5
5
+
pull latest Bluesky lexicons
+1
-1
lexdocs/bluesky/README.md
···
1
1
-
https://github.com/bluesky-social/atproto/tree/a48671e730681f692a88053e8f137bd9e2aed5f1/lexicons/
1
1
+
https://github.com/bluesky-social/atproto/tree/97ef116571909c95713017bcd7b621c8afbc90ef/lexicons/
+4
-4
lexdocs/bluesky/app/bsky/notification/defs.json
···
8
8
},
9
9
"chatPreference": {
10
10
"type": "object",
11
11
-
"required": ["filter", "push"],
11
11
+
"required": ["include", "push"],
12
12
"properties": {
13
13
-
"filter": { "type": "string", "knownValues": ["all", "accepted"] },
13
13
+
"include": { "type": "string", "knownValues": ["all", "accepted"] },
14
14
"push": { "type": "boolean" }
15
15
}
16
16
},
17
17
"filterablePreference": {
18
18
"type": "object",
19
19
-
"required": ["filter", "list", "push"],
19
19
+
"required": ["include", "list", "push"],
20
20
"properties": {
21
21
-
"filter": { "type": "string", "knownValues": ["all", "follows"] },
21
21
+
"include": { "type": "string", "knownValues": ["all", "follows"] },
22
22
"list": { "type": "boolean" },
23
23
"push": { "type": "boolean" }
24
24
}
+2
-2
packages/definitions/bluesky/lib/lexicons/types/app/bsky/notification/defs.ts
···
3
3
4
4
const _chatPreferenceSchema = /*#__PURE__*/ v.object({
5
5
$type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.notification.defs#chatPreference')),
6
6
-
filter: /*#__PURE__*/ v.string<'accepted' | 'all' | (string & {})>(),
6
6
+
include: /*#__PURE__*/ v.string<'accepted' | 'all' | (string & {})>(),
7
7
push: /*#__PURE__*/ v.boolean(),
8
8
});
9
9
const _filterablePreferenceSchema = /*#__PURE__*/ v.object({
10
10
$type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.notification.defs#filterablePreference')),
11
11
-
filter: /*#__PURE__*/ v.string<'all' | 'follows' | (string & {})>(),
11
11
+
include: /*#__PURE__*/ v.string<'all' | 'follows' | (string & {})>(),
12
12
list: /*#__PURE__*/ v.boolean(),
13
13
push: /*#__PURE__*/ v.boolean(),
14
14
});