@atproto/api 0.7.1 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/client/lexicons.d.ts +4 -0
- package/dist/client/types/app/bsky/feed/getAuthorFeed.d.ts +1 -1
- package/dist/client/types/app/bsky/notification/listNotifications.d.ts +1 -0
- package/dist/index.js +10 -5
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
- package/src/client/lexicons.ts +5 -0
- package/src/client/types/app/bsky/feed/getAuthorFeed.ts +1 -0
- package/src/client/types/app/bsky/notification/listNotifications.ts +1 -0
- package/src/moderation/const/labels.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/api",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Client library for atproto and Bluesky",
|
|
6
6
|
"keywords": [
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"common-tags": "^1.8.2",
|
|
30
30
|
"@atproto/lex-cli": "^0.2.5",
|
|
31
|
-
"@atproto/dev-env": "^0.2.
|
|
31
|
+
"@atproto/dev-env": "^0.2.20"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"codegen": "pnpm docgen && node ./scripts/generate-code.mjs && lex gen-api ./src/client ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/*",
|
package/src/client/lexicons.ts
CHANGED
|
@@ -5572,6 +5572,7 @@ export const schemaDict = {
|
|
|
5572
5572
|
'posts_with_replies',
|
|
5573
5573
|
'posts_no_replies',
|
|
5574
5574
|
'posts_with_media',
|
|
5575
|
+
'posts_and_author_threads',
|
|
5575
5576
|
],
|
|
5576
5577
|
default: 'posts_with_replies',
|
|
5577
5578
|
},
|
|
@@ -7324,6 +7325,10 @@ export const schemaDict = {
|
|
|
7324
7325
|
ref: 'lex:app.bsky.notification.listNotifications#notification',
|
|
7325
7326
|
},
|
|
7326
7327
|
},
|
|
7328
|
+
seenAt: {
|
|
7329
|
+
type: 'string',
|
|
7330
|
+
format: 'datetime',
|
|
7331
|
+
},
|
|
7327
7332
|
},
|
|
7328
7333
|
},
|
|
7329
7334
|
},
|
|
@@ -99,23 +99,23 @@ export const LABELS: LabelDefinitionMap = {
|
|
|
99
99
|
strings: {
|
|
100
100
|
settings: {
|
|
101
101
|
en: {
|
|
102
|
-
name: '
|
|
102
|
+
name: 'Sign-in Required',
|
|
103
103
|
description:
|
|
104
|
-
'This user has requested that their
|
|
104
|
+
'This user has requested that their account only be shown to signed-in users.',
|
|
105
105
|
},
|
|
106
106
|
},
|
|
107
107
|
account: {
|
|
108
108
|
en: {
|
|
109
109
|
name: 'Sign-in Required',
|
|
110
110
|
description:
|
|
111
|
-
'This user has requested that their
|
|
111
|
+
'This user has requested that their account only be shown to signed-in users.',
|
|
112
112
|
},
|
|
113
113
|
},
|
|
114
114
|
content: {
|
|
115
115
|
en: {
|
|
116
116
|
name: 'Sign-in Required',
|
|
117
117
|
description:
|
|
118
|
-
'This user has requested that their content only be shown to
|
|
118
|
+
'This user has requested that their content only be shown to signed-in users.',
|
|
119
119
|
},
|
|
120
120
|
},
|
|
121
121
|
},
|