@atproto/pds 0.3.7 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -6880,6 +6880,10 @@ export declare const schemaDict: {
6880
6880
  ref: string;
6881
6881
  };
6882
6882
  };
6883
+ seenAt: {
6884
+ type: string;
6885
+ format: string;
6886
+ };
6883
6887
  };
6884
6888
  };
6885
6889
  };
@@ -12,6 +12,7 @@ export declare type InputSchema = undefined;
12
12
  export interface OutputSchema {
13
13
  cursor?: string;
14
14
  notifications: Notification[];
15
+ seenAt?: string;
15
16
  [k: string]: unknown;
16
17
  }
17
18
  export declare type HandlerInput = undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/pds",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "license": "MIT",
5
5
  "description": "Reference implementation of atproto Personal Data Server (PDS)",
6
6
  "keywords": [
@@ -44,7 +44,7 @@
44
44
  "typed-emitter": "^2.1.0",
45
45
  "uint8arrays": "3.0.0",
46
46
  "zod": "^3.21.4",
47
- "@atproto/api": "^0.7.2",
47
+ "@atproto/api": "^0.7.4",
48
48
  "@atproto/aws": "^0.1.6",
49
49
  "@atproto/common": "^0.3.3",
50
50
  "@atproto/crypto": "^0.3.0",
@@ -68,9 +68,9 @@
68
68
  "axios": "^0.27.2",
69
69
  "get-port": "^6.1.2",
70
70
  "ws": "^8.12.0",
71
- "@atproto/api": "^0.7.2",
72
- "@atproto/bsky": "^0.0.19",
73
- "@atproto/dev-env": "^0.2.19",
71
+ "@atproto/api": "^0.7.4",
72
+ "@atproto/bsky": "^0.0.21",
73
+ "@atproto/dev-env": "^0.2.21",
74
74
  "@atproto/lex-cli": "^0.2.5"
75
75
  },
76
76
  "scripts": {
@@ -7325,6 +7325,10 @@ export const schemaDict = {
7325
7325
  ref: 'lex:app.bsky.notification.listNotifications#notification',
7326
7326
  },
7327
7327
  },
7328
+ seenAt: {
7329
+ type: 'string',
7330
+ format: 'datetime',
7331
+ },
7328
7332
  },
7329
7333
  },
7330
7334
  },
@@ -21,6 +21,7 @@ export type InputSchema = undefined
21
21
  export interface OutputSchema {
22
22
  cursor?: string
23
23
  notifications: Notification[]
24
+ seenAt?: string
24
25
  [k: string]: unknown
25
26
  }
26
27