@atproto/api 0.7.2 → 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atproto/api
2
2
 
3
+ ## 0.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1962](https://github.com/bluesky-social/atproto/pull/1962) [`7dec9df3`](https://github.com/bluesky-social/atproto/commit/7dec9df3b583ee8c06c0c6a7e32c259820dc84a5) Thanks [@pfrazee](https://github.com/pfrazee)! - Add seenAt time to listNotifications output
8
+
3
9
  ## 0.7.2
4
10
 
5
11
  ### Patch Changes
@@ -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
  };
@@ -11,6 +11,7 @@ export declare type InputSchema = undefined;
11
11
  export interface OutputSchema {
12
12
  cursor?: string;
13
13
  notifications: Notification[];
14
+ seenAt?: string;
14
15
  [k: string]: unknown;
15
16
  }
16
17
  export interface CallOptions {
package/dist/index.js CHANGED
@@ -22925,6 +22925,10 @@ var schemaDict = {
22925
22925
  type: "ref",
22926
22926
  ref: "lex:app.bsky.notification.listNotifications#notification"
22927
22927
  }
22928
+ },
22929
+ seenAt: {
22930
+ type: "string",
22931
+ format: "datetime"
22928
22932
  }
22929
22933
  }
22930
22934
  }