@atcute/bluesky 2.0.2 → 2.0.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.
@@ -1882,6 +1882,11 @@ declare module '@atcute/client/lexicons' {
1882
1882
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1883
1883
  }
1884
1884
  }
1885
+ namespace AppBskyNotificationDefs {
1886
+ interface RecordDeleted {
1887
+ [Brand.Type]?: 'app.bsky.notification.defs#recordDeleted';
1888
+ }
1889
+ }
1885
1890
  /** Count the number of unread notifications for the requesting account. Requires auth. */
1886
1891
  namespace AppBskyNotificationGetUnreadCount {
1887
1892
  interface Params {
@@ -1924,8 +1929,8 @@ declare module '@atcute/client/lexicons' {
1924
1929
  cid: At.Cid;
1925
1930
  indexedAt: string;
1926
1931
  isRead: boolean;
1927
- /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
1928
- reason: 'follow' | 'like' | 'mention' | 'quote' | 'reply' | 'repost' | 'starterpack-joined' | (string & {});
1932
+ /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', 'starterpack-joined', 'verified', and 'unverified'. */
1933
+ reason: 'follow' | 'like' | 'mention' | 'quote' | 'reply' | 'repost' | 'starterpack-joined' | 'unverified' | 'verified' | (string & {});
1929
1934
  record: unknown;
1930
1935
  uri: At.ResourceUri;
1931
1936
  labels?: ComAtprotoLabelDefs.Label[];
@@ -2427,7 +2432,7 @@ declare module '@atcute/client/lexicons' {
2427
2432
  handle: At.Handle;
2428
2433
  associated?: AppBskyActorDefs.ProfileAssociated;
2429
2434
  avatar?: At.GenericUri;
2430
- /** Set to true when the actor cannot actively participate in converations */
2435
+ /** Set to true when the actor cannot actively participate in conversations */
2431
2436
  chatDisabled?: boolean;
2432
2437
  /**
2433
2438
  * Maximum string length: 640 \
package/lib/lexicons.ts CHANGED
@@ -2027,6 +2027,12 @@ declare module '@atcute/client/lexicons' {
2027
2027
  }
2028
2028
  }
2029
2029
 
2030
+ namespace AppBskyNotificationDefs {
2031
+ interface RecordDeleted {
2032
+ [Brand.Type]?: 'app.bsky.notification.defs#recordDeleted';
2033
+ }
2034
+ }
2035
+
2030
2036
  /** Count the number of unread notifications for the requesting account. Requires auth. */
2031
2037
  namespace AppBskyNotificationGetUnreadCount {
2032
2038
  interface Params {
@@ -2070,7 +2076,7 @@ declare module '@atcute/client/lexicons' {
2070
2076
  cid: At.Cid;
2071
2077
  indexedAt: string;
2072
2078
  isRead: boolean;
2073
- /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
2079
+ /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', 'starterpack-joined', 'verified', and 'unverified'. */
2074
2080
  reason:
2075
2081
  | 'follow'
2076
2082
  | 'like'
@@ -2079,6 +2085,8 @@ declare module '@atcute/client/lexicons' {
2079
2085
  | 'reply'
2080
2086
  | 'repost'
2081
2087
  | 'starterpack-joined'
2088
+ | 'unverified'
2089
+ | 'verified'
2082
2090
  | (string & {});
2083
2091
  record: unknown;
2084
2092
  uri: At.ResourceUri;
@@ -2602,7 +2610,7 @@ declare module '@atcute/client/lexicons' {
2602
2610
  handle: At.Handle;
2603
2611
  associated?: AppBskyActorDefs.ProfileAssociated;
2604
2612
  avatar?: At.GenericUri;
2605
- /** Set to true when the actor cannot actively participate in converations */
2613
+ /** Set to true when the actor cannot actively participate in conversations */
2606
2614
  chatDisabled?: boolean;
2607
2615
  /**
2608
2616
  * Maximum string length: 640 \
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@atcute/bluesky",
4
- "version": "2.0.2",
4
+ "version": "2.0.3",
5
5
  "description": "Bluesky type definitions for atcute",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -21,8 +21,8 @@
21
21
  "@atcute/client": "^3.0.0"
22
22
  },
23
23
  "devDependencies": {
24
- "@atcute/lex-cli": "^1.1.1",
25
- "@atcute/client": "^3.0.1"
24
+ "@atcute/client": "^3.0.1",
25
+ "@atcute/lex-cli": "^1.1.1"
26
26
  },
27
27
  "scripts": {
28
28
  "build": "tsc",