@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/api",
3
- "version": "0.7.1",
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.18"
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/*/*",
@@ -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
  },
@@ -16,6 +16,7 @@ export interface QueryParams {
16
16
  | 'posts_with_replies'
17
17
  | 'posts_no_replies'
18
18
  | 'posts_with_media'
19
+ | 'posts_and_author_threads'
19
20
  | (string & {})
20
21
  }
21
22
 
@@ -20,6 +20,7 @@ export type InputSchema = undefined
20
20
  export interface OutputSchema {
21
21
  cursor?: string
22
22
  notifications: Notification[]
23
+ seenAt?: string
23
24
  [k: string]: unknown
24
25
  }
25
26
 
@@ -99,23 +99,23 @@ export const LABELS: LabelDefinitionMap = {
99
99
  strings: {
100
100
  settings: {
101
101
  en: {
102
- name: 'Requested Hidden to Logged-out Users',
102
+ name: 'Sign-in Required',
103
103
  description:
104
- 'This user has requested that their content only be shown to logged-in accounts.',
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 content only be shown to logged-in accounts.',
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 logged-in accounts.',
118
+ 'This user has requested that their content only be shown to signed-in users.',
119
119
  },
120
120
  },
121
121
  },