@atcute/bluesky 1.0.15 → 2.0.0

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/lib/lexicons.ts CHANGED
@@ -42,7 +42,7 @@ declare module '@atcute/client/lexicons' {
42
42
  label: string;
43
43
  visibility: 'hide' | 'ignore' | 'show' | 'warn' | (string & {});
44
44
  /** Which labeler does this preference apply to? If undefined, applies globally. */
45
- labelerDid?: At.DID;
45
+ labelerDid?: At.Did;
46
46
  }
47
47
  interface FeedViewPref {
48
48
  [Brand.Type]?: 'app.bsky.actor.defs#feedViewPref';
@@ -65,7 +65,7 @@ declare module '@atcute/client/lexicons' {
65
65
  interface HiddenPostsPref {
66
66
  [Brand.Type]?: 'app.bsky.actor.defs#hiddenPostsPref';
67
67
  /** A list of URIs of posts the account owner has hidden. */
68
- items: At.Uri[];
68
+ items: At.ResourceUri[];
69
69
  }
70
70
  interface InterestsPref {
71
71
  [Brand.Type]?: 'app.bsky.actor.defs#interestsPref';
@@ -89,7 +89,7 @@ declare module '@atcute/client/lexicons' {
89
89
  }
90
90
  interface LabelerPrefItem {
91
91
  [Brand.Type]?: 'app.bsky.actor.defs#labelerPrefItem';
92
- did: At.DID;
92
+ did: At.Did;
93
93
  }
94
94
  interface LabelersPref {
95
95
  [Brand.Type]?: 'app.bsky.actor.defs#labelersPref';
@@ -194,10 +194,10 @@ declare module '@atcute/client/lexicons' {
194
194
  }
195
195
  interface ProfileView {
196
196
  [Brand.Type]?: 'app.bsky.actor.defs#profileView';
197
- did: At.DID;
197
+ did: At.Did;
198
198
  handle: At.Handle;
199
199
  associated?: ProfileAssociated;
200
- avatar?: string;
200
+ avatar?: At.GenericUri;
201
201
  createdAt?: string;
202
202
  /**
203
203
  * Maximum string length: 2560 \
@@ -215,10 +215,10 @@ declare module '@atcute/client/lexicons' {
215
215
  }
216
216
  interface ProfileViewBasic {
217
217
  [Brand.Type]?: 'app.bsky.actor.defs#profileViewBasic';
218
- did: At.DID;
218
+ did: At.Did;
219
219
  handle: At.Handle;
220
220
  associated?: ProfileAssociated;
221
- avatar?: string;
221
+ avatar?: At.GenericUri;
222
222
  createdAt?: string;
223
223
  /**
224
224
  * Maximum string length: 640 \
@@ -230,11 +230,11 @@ declare module '@atcute/client/lexicons' {
230
230
  }
231
231
  interface ProfileViewDetailed {
232
232
  [Brand.Type]?: 'app.bsky.actor.defs#profileViewDetailed';
233
- did: At.DID;
233
+ did: At.Did;
234
234
  handle: At.Handle;
235
235
  associated?: ProfileAssociated;
236
- avatar?: string;
237
- banner?: string;
236
+ avatar?: At.GenericUri;
237
+ banner?: At.GenericUri;
238
238
  createdAt?: string;
239
239
  /**
240
240
  * Maximum string length: 2560 \
@@ -264,8 +264,8 @@ declare module '@atcute/client/lexicons' {
264
264
  }
265
265
  interface SavedFeedsPref {
266
266
  [Brand.Type]?: 'app.bsky.actor.defs#savedFeedsPref';
267
- pinned: At.Uri[];
268
- saved: At.Uri[];
267
+ pinned: At.ResourceUri[];
268
+ saved: At.ResourceUri[];
269
269
  timelineIndex?: number;
270
270
  }
271
271
  interface SavedFeedsPrefV2 {
@@ -283,10 +283,10 @@ declare module '@atcute/client/lexicons' {
283
283
  interface ViewerState {
284
284
  [Brand.Type]?: 'app.bsky.actor.defs#viewerState';
285
285
  blockedBy?: boolean;
286
- blocking?: At.Uri;
286
+ blocking?: At.ResourceUri;
287
287
  blockingByList?: AppBskyGraphDefs.ListViewBasic;
288
- followedBy?: At.Uri;
289
- following?: At.Uri;
288
+ followedBy?: At.ResourceUri;
289
+ following?: At.ResourceUri;
290
290
  knownFollowers?: KnownFollowers;
291
291
  muted?: boolean;
292
292
  mutedByList?: AppBskyGraphDefs.ListViewBasic;
@@ -305,7 +305,7 @@ declare module '@atcute/client/lexicons' {
305
305
  namespace AppBskyActorGetProfile {
306
306
  interface Params {
307
307
  /** Handle or DID of account to fetch profile of. */
308
- actor: string;
308
+ actor: At.Identifier;
309
309
  }
310
310
  type Input = undefined;
311
311
  type Output = AppBskyActorDefs.ProfileViewDetailed;
@@ -315,7 +315,7 @@ declare module '@atcute/client/lexicons' {
315
315
  namespace AppBskyActorGetProfiles {
316
316
  interface Params {
317
317
  /** Maximum array length: 25 */
318
- actors: string[];
318
+ actors: At.Identifier[];
319
319
  }
320
320
  type Input = undefined;
321
321
  interface Output {
@@ -448,7 +448,7 @@ declare module '@atcute/client/lexicons' {
448
448
  [Brand.Type]?: 'app.bsky.embed.external#external';
449
449
  description: string;
450
450
  title: string;
451
- uri: string;
451
+ uri: At.GenericUri;
452
452
  thumb?: At.Blob;
453
453
  }
454
454
  interface View {
@@ -459,8 +459,8 @@ declare module '@atcute/client/lexicons' {
459
459
  [Brand.Type]?: 'app.bsky.embed.external#viewExternal';
460
460
  description: string;
461
461
  title: string;
462
- uri: string;
463
- thumb?: string;
462
+ uri: At.GenericUri;
463
+ thumb?: At.GenericUri;
464
464
  }
465
465
  }
466
466
 
@@ -487,9 +487,9 @@ declare module '@atcute/client/lexicons' {
487
487
  /** Alt text description of the image, for accessibility. */
488
488
  alt: string;
489
489
  /** Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View. */
490
- fullsize: string;
490
+ fullsize: At.GenericUri;
491
491
  /** Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View. */
492
- thumb: string;
492
+ thumb: At.GenericUri;
493
493
  aspectRatio?: AppBskyEmbedDefs.AspectRatio;
494
494
  }
495
495
  }
@@ -516,24 +516,24 @@ declare module '@atcute/client/lexicons' {
516
516
  [Brand.Type]?: 'app.bsky.embed.record#viewBlocked';
517
517
  author: AppBskyFeedDefs.BlockedAuthor;
518
518
  blocked: boolean;
519
- uri: At.Uri;
519
+ uri: At.ResourceUri;
520
520
  }
521
521
  interface ViewDetached {
522
522
  [Brand.Type]?: 'app.bsky.embed.record#viewDetached';
523
523
  detached: boolean;
524
- uri: At.Uri;
524
+ uri: At.ResourceUri;
525
525
  }
526
526
  interface ViewNotFound {
527
527
  [Brand.Type]?: 'app.bsky.embed.record#viewNotFound';
528
528
  notFound: boolean;
529
- uri: At.Uri;
529
+ uri: At.ResourceUri;
530
530
  }
531
531
  interface ViewRecord {
532
532
  [Brand.Type]?: 'app.bsky.embed.record#viewRecord';
533
533
  author: AppBskyActorDefs.ProfileViewBasic;
534
- cid: At.CID;
534
+ cid: At.Cid;
535
535
  indexedAt: string;
536
- uri: At.Uri;
536
+ uri: At.ResourceUri;
537
537
  /** The record data itself. */
538
538
  value: unknown;
539
539
  embeds?: Brand.Union<
@@ -586,29 +586,29 @@ declare module '@atcute/client/lexicons' {
586
586
  }
587
587
  interface View {
588
588
  [Brand.Type]?: 'app.bsky.embed.video#view';
589
- cid: At.CID;
590
- playlist: string;
589
+ cid: At.Cid;
590
+ playlist: At.GenericUri;
591
591
  /**
592
592
  * Maximum string length: 10000 \
593
593
  * Maximum grapheme length: 1000
594
594
  */
595
595
  alt?: string;
596
596
  aspectRatio?: AppBskyEmbedDefs.AspectRatio;
597
- thumbnail?: string;
597
+ thumbnail?: At.GenericUri;
598
598
  }
599
599
  }
600
600
 
601
601
  namespace AppBskyFeedDefs {
602
602
  interface BlockedAuthor {
603
603
  [Brand.Type]?: 'app.bsky.feed.defs#blockedAuthor';
604
- did: At.DID;
604
+ did: At.Did;
605
605
  viewer?: AppBskyActorDefs.ViewerState;
606
606
  }
607
607
  interface BlockedPost {
608
608
  [Brand.Type]?: 'app.bsky.feed.defs#blockedPost';
609
609
  author: BlockedAuthor;
610
610
  blocked: boolean;
611
- uri: At.Uri;
611
+ uri: At.ResourceUri;
612
612
  }
613
613
  type ClickthroughAuthor = 'app.bsky.feed.defs#clickthroughAuthor';
614
614
  type ClickthroughEmbed = 'app.bsky.feed.defs#clickthroughEmbed';
@@ -629,14 +629,14 @@ declare module '@atcute/client/lexicons' {
629
629
  }
630
630
  interface GeneratorView {
631
631
  [Brand.Type]?: 'app.bsky.feed.defs#generatorView';
632
- cid: At.CID;
632
+ cid: At.Cid;
633
633
  creator: AppBskyActorDefs.ProfileView;
634
- did: At.DID;
634
+ did: At.Did;
635
635
  displayName: string;
636
636
  indexedAt: string;
637
- uri: At.Uri;
637
+ uri: At.ResourceUri;
638
638
  acceptsInteractions?: boolean;
639
- avatar?: string;
639
+ avatar?: At.GenericUri;
640
640
  contentMode?:
641
641
  | 'app.bsky.feed.defs#contentModeUnspecified'
642
642
  | 'app.bsky.feed.defs#contentModeVideo'
@@ -654,7 +654,7 @@ declare module '@atcute/client/lexicons' {
654
654
  }
655
655
  interface GeneratorViewerState {
656
656
  [Brand.Type]?: 'app.bsky.feed.defs#generatorViewerState';
657
- like?: At.Uri;
657
+ like?: At.ResourceUri;
658
658
  }
659
659
  interface Interaction {
660
660
  [Brand.Type]?: 'app.bsky.feed.defs#interaction';
@@ -677,7 +677,7 @@ declare module '@atcute/client/lexicons' {
677
677
  * Maximum string length: 2000
678
678
  */
679
679
  feedContext?: string;
680
- item?: At.Uri;
680
+ item?: At.ResourceUri;
681
681
  }
682
682
  type InteractionLike = 'app.bsky.feed.defs#interactionLike';
683
683
  type InteractionQuote = 'app.bsky.feed.defs#interactionQuote';
@@ -688,15 +688,15 @@ declare module '@atcute/client/lexicons' {
688
688
  interface NotFoundPost {
689
689
  [Brand.Type]?: 'app.bsky.feed.defs#notFoundPost';
690
690
  notFound: boolean;
691
- uri: At.Uri;
691
+ uri: At.ResourceUri;
692
692
  }
693
693
  interface PostView {
694
694
  [Brand.Type]?: 'app.bsky.feed.defs#postView';
695
695
  author: AppBskyActorDefs.ProfileViewBasic;
696
- cid: At.CID;
696
+ cid: At.Cid;
697
697
  indexedAt: string;
698
698
  record: unknown;
699
- uri: At.Uri;
699
+ uri: At.ResourceUri;
700
700
  embed?: Brand.Union<
701
701
  | AppBskyEmbedExternal.View
702
702
  | AppBskyEmbedImages.View
@@ -731,7 +731,7 @@ declare module '@atcute/client/lexicons' {
731
731
  type RequestMore = 'app.bsky.feed.defs#requestMore';
732
732
  interface SkeletonFeedPost {
733
733
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonFeedPost';
734
- post: At.Uri;
734
+ post: At.ResourceUri;
735
735
  /**
736
736
  * Context that will be passed through to client and may be passed to feed generator back alongside interactions. \
737
737
  * Maximum string length: 2000
@@ -744,19 +744,19 @@ declare module '@atcute/client/lexicons' {
744
744
  }
745
745
  interface SkeletonReasonRepost {
746
746
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonReasonRepost';
747
- repost: At.Uri;
747
+ repost: At.ResourceUri;
748
748
  }
749
749
  /** Metadata about this post within the context of the thread it is in. */
750
750
  interface ThreadContext {
751
751
  [Brand.Type]?: 'app.bsky.feed.defs#threadContext';
752
- rootAuthorLike?: At.Uri;
752
+ rootAuthorLike?: At.ResourceUri;
753
753
  }
754
754
  interface ThreadgateView {
755
755
  [Brand.Type]?: 'app.bsky.feed.defs#threadgateView';
756
- cid?: At.CID;
756
+ cid?: At.Cid;
757
757
  lists?: AppBskyGraphDefs.ListViewBasic[];
758
758
  record?: unknown;
759
- uri?: At.Uri;
759
+ uri?: At.ResourceUri;
760
760
  }
761
761
  interface ThreadViewPost {
762
762
  [Brand.Type]?: 'app.bsky.feed.defs#threadViewPost';
@@ -769,10 +769,10 @@ declare module '@atcute/client/lexicons' {
769
769
  interface ViewerState {
770
770
  [Brand.Type]?: 'app.bsky.feed.defs#viewerState';
771
771
  embeddingDisabled?: boolean;
772
- like?: At.Uri;
772
+ like?: At.ResourceUri;
773
773
  pinned?: boolean;
774
774
  replyDisabled?: boolean;
775
- repost?: At.Uri;
775
+ repost?: At.ResourceUri;
776
776
  threadMuted?: boolean;
777
777
  }
778
778
  }
@@ -782,13 +782,13 @@ declare module '@atcute/client/lexicons' {
782
782
  interface Params {}
783
783
  type Input = undefined;
784
784
  interface Output {
785
- did: At.DID;
785
+ did: At.Did;
786
786
  feeds: Feed[];
787
787
  links?: Links;
788
788
  }
789
789
  interface Feed {
790
790
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#feed';
791
- uri: At.Uri;
791
+ uri: At.ResourceUri;
792
792
  }
793
793
  interface Links {
794
794
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#links';
@@ -802,7 +802,7 @@ declare module '@atcute/client/lexicons' {
802
802
  interface Record {
803
803
  $type: 'app.bsky.feed.generator';
804
804
  createdAt: string;
805
- did: At.DID;
805
+ did: At.Did;
806
806
  /**
807
807
  * Maximum string length: 240 \
808
808
  * Maximum grapheme length: 24
@@ -829,7 +829,7 @@ declare module '@atcute/client/lexicons' {
829
829
  /** Get a list of feeds (feed generator records) created by the actor (in the actor's repo). */
830
830
  namespace AppBskyFeedGetActorFeeds {
831
831
  interface Params {
832
- actor: string;
832
+ actor: At.Identifier;
833
833
  cursor?: string;
834
834
  /**
835
835
  * Minimum: 1 \
@@ -848,7 +848,7 @@ declare module '@atcute/client/lexicons' {
848
848
  /** Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. */
849
849
  namespace AppBskyFeedGetActorLikes {
850
850
  interface Params {
851
- actor: string;
851
+ actor: At.Identifier;
852
852
  cursor?: string;
853
853
  /**
854
854
  * Minimum: 1 \
@@ -871,7 +871,7 @@ declare module '@atcute/client/lexicons' {
871
871
  /** Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. */
872
872
  namespace AppBskyFeedGetAuthorFeed {
873
873
  interface Params {
874
- actor: string;
874
+ actor: At.Identifier;
875
875
  cursor?: string;
876
876
  /**
877
877
  * Combinations of post/repost types to include in response.
@@ -907,7 +907,7 @@ declare module '@atcute/client/lexicons' {
907
907
  /** Get a hydrated feed from an actor's selected feed generator. Implemented by App View. */
908
908
  namespace AppBskyFeedGetFeed {
909
909
  interface Params {
910
- feed: At.Uri;
910
+ feed: At.ResourceUri;
911
911
  cursor?: string;
912
912
  /**
913
913
  * Minimum: 1 \
@@ -930,7 +930,7 @@ declare module '@atcute/client/lexicons' {
930
930
  namespace AppBskyFeedGetFeedGenerator {
931
931
  interface Params {
932
932
  /** AT-URI of the feed generator record. */
933
- feed: At.Uri;
933
+ feed: At.ResourceUri;
934
934
  }
935
935
  type Input = undefined;
936
936
  interface Output {
@@ -945,7 +945,7 @@ declare module '@atcute/client/lexicons' {
945
945
  /** Get information about a list of feed generators. */
946
946
  namespace AppBskyFeedGetFeedGenerators {
947
947
  interface Params {
948
- feeds: At.Uri[];
948
+ feeds: At.ResourceUri[];
949
949
  }
950
950
  type Input = undefined;
951
951
  interface Output {
@@ -957,7 +957,7 @@ declare module '@atcute/client/lexicons' {
957
957
  namespace AppBskyFeedGetFeedSkeleton {
958
958
  interface Params {
959
959
  /** Reference to feed generator record describing the specific feed being requested. */
960
- feed: At.Uri;
960
+ feed: At.ResourceUri;
961
961
  cursor?: string;
962
962
  /**
963
963
  * Minimum: 1 \
@@ -980,9 +980,9 @@ declare module '@atcute/client/lexicons' {
980
980
  namespace AppBskyFeedGetLikes {
981
981
  interface Params {
982
982
  /** AT-URI of the subject (eg, a post record). */
983
- uri: At.Uri;
983
+ uri: At.ResourceUri;
984
984
  /** CID of the subject record (aka, specific version of record), to filter likes. */
985
- cid?: At.CID;
985
+ cid?: At.Cid;
986
986
  cursor?: string;
987
987
  /**
988
988
  * Minimum: 1 \
@@ -994,8 +994,8 @@ declare module '@atcute/client/lexicons' {
994
994
  type Input = undefined;
995
995
  interface Output {
996
996
  likes: Like[];
997
- uri: At.Uri;
998
- cid?: At.CID;
997
+ uri: At.ResourceUri;
998
+ cid?: At.Cid;
999
999
  cursor?: string;
1000
1000
  }
1001
1001
  interface Like {
@@ -1010,7 +1010,7 @@ declare module '@atcute/client/lexicons' {
1010
1010
  namespace AppBskyFeedGetListFeed {
1011
1011
  interface Params {
1012
1012
  /** Reference (AT-URI) to the list record. */
1013
- list: At.Uri;
1013
+ list: At.ResourceUri;
1014
1014
  cursor?: string;
1015
1015
  /**
1016
1016
  * Minimum: 1 \
@@ -1036,7 +1036,7 @@ declare module '@atcute/client/lexicons' {
1036
1036
  * List of post AT-URIs to return hydrated views for. \
1037
1037
  * Maximum array length: 25
1038
1038
  */
1039
- uris: At.Uri[];
1039
+ uris: At.ResourceUri[];
1040
1040
  }
1041
1041
  type Input = undefined;
1042
1042
  interface Output {
@@ -1048,7 +1048,7 @@ declare module '@atcute/client/lexicons' {
1048
1048
  namespace AppBskyFeedGetPostThread {
1049
1049
  interface Params {
1050
1050
  /** Reference (AT-URI) to post record. */
1051
- uri: At.Uri;
1051
+ uri: At.ResourceUri;
1052
1052
  /**
1053
1053
  * How many levels of reply depth should be included in response. \
1054
1054
  * Minimum: 0 \
@@ -1080,9 +1080,9 @@ declare module '@atcute/client/lexicons' {
1080
1080
  namespace AppBskyFeedGetQuotes {
1081
1081
  interface Params {
1082
1082
  /** Reference (AT-URI) of post record */
1083
- uri: At.Uri;
1083
+ uri: At.ResourceUri;
1084
1084
  /** If supplied, filters to quotes of specific version (by CID) of the post record. */
1085
- cid?: At.CID;
1085
+ cid?: At.Cid;
1086
1086
  cursor?: string;
1087
1087
  /**
1088
1088
  * Minimum: 1 \
@@ -1094,8 +1094,8 @@ declare module '@atcute/client/lexicons' {
1094
1094
  type Input = undefined;
1095
1095
  interface Output {
1096
1096
  posts: AppBskyFeedDefs.PostView[];
1097
- uri: At.Uri;
1098
- cid?: At.CID;
1097
+ uri: At.ResourceUri;
1098
+ cid?: At.Cid;
1099
1099
  cursor?: string;
1100
1100
  }
1101
1101
  }
@@ -1104,9 +1104,9 @@ declare module '@atcute/client/lexicons' {
1104
1104
  namespace AppBskyFeedGetRepostedBy {
1105
1105
  interface Params {
1106
1106
  /** Reference (AT-URI) of post record */
1107
- uri: At.Uri;
1107
+ uri: At.ResourceUri;
1108
1108
  /** If supplied, filters to reposts of specific version (by CID) of the post record. */
1109
- cid?: At.CID;
1109
+ cid?: At.Cid;
1110
1110
  cursor?: string;
1111
1111
  /**
1112
1112
  * Minimum: 1 \
@@ -1118,8 +1118,8 @@ declare module '@atcute/client/lexicons' {
1118
1118
  type Input = undefined;
1119
1119
  interface Output {
1120
1120
  repostedBy: AppBskyActorDefs.ProfileView[];
1121
- uri: At.Uri;
1122
- cid?: At.CID;
1121
+ uri: At.ResourceUri;
1122
+ cid?: At.Cid;
1123
1123
  cursor?: string;
1124
1124
  }
1125
1125
  }
@@ -1248,12 +1248,12 @@ declare module '@atcute/client/lexicons' {
1248
1248
  $type: 'app.bsky.feed.postgate';
1249
1249
  createdAt: string;
1250
1250
  /** Reference (AT-URI) to the post record. */
1251
- post: At.Uri;
1251
+ post: At.ResourceUri;
1252
1252
  /**
1253
1253
  * List of AT-URIs embedding this post that the author has detached from. \
1254
1254
  * Maximum array length: 50
1255
1255
  */
1256
- detachedEmbeddingUris?: At.Uri[];
1256
+ detachedEmbeddingUris?: At.ResourceUri[];
1257
1257
  /**
1258
1258
  * List of rules defining who can embed this post. If value is an empty array or is undefined, no particular rules apply and anyone can embed. \
1259
1259
  * Maximum array length: 5
@@ -1281,7 +1281,7 @@ declare module '@atcute/client/lexicons' {
1281
1281
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
1282
1282
  q: string;
1283
1283
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
1284
- author?: string;
1284
+ author?: At.Identifier;
1285
1285
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
1286
1286
  cursor?: string;
1287
1287
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -1295,7 +1295,7 @@ declare module '@atcute/client/lexicons' {
1295
1295
  */
1296
1296
  limit?: number;
1297
1297
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
1298
- mentions?: string;
1298
+ mentions?: At.Identifier;
1299
1299
  /** Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
1300
1300
  since?: string;
1301
1301
  /**
@@ -1312,7 +1312,7 @@ declare module '@atcute/client/lexicons' {
1312
1312
  /** Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD). */
1313
1313
  until?: string;
1314
1314
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
1315
- url?: string;
1315
+ url?: At.GenericUri;
1316
1316
  }
1317
1317
  type Input = undefined;
1318
1318
  interface Output {
@@ -1341,7 +1341,7 @@ declare module '@atcute/client/lexicons' {
1341
1341
  $type: 'app.bsky.feed.threadgate';
1342
1342
  createdAt: string;
1343
1343
  /** Reference (AT-URI) to the post record. */
1344
- post: At.Uri;
1344
+ post: At.ResourceUri;
1345
1345
  /**
1346
1346
  * List of rules defining who can reply to this post. If value is an empty array, no one can reply. If value is undefined, anyone can reply. \
1347
1347
  * Maximum array length: 5
@@ -1351,7 +1351,7 @@ declare module '@atcute/client/lexicons' {
1351
1351
  * List of hidden reply URIs. \
1352
1352
  * Maximum array length: 50
1353
1353
  */
1354
- hiddenReplies?: At.Uri[];
1354
+ hiddenReplies?: At.ResourceUri[];
1355
1355
  }
1356
1356
  /** Allow replies from actors who follow you. */
1357
1357
  interface FollowerRule {
@@ -1364,7 +1364,7 @@ declare module '@atcute/client/lexicons' {
1364
1364
  /** Allow replies from actors on a list. */
1365
1365
  interface ListRule {
1366
1366
  [Brand.Type]?: 'app.bsky.feed.threadgate#listRule';
1367
- list: At.Uri;
1367
+ list: At.ResourceUri;
1368
1368
  }
1369
1369
  /** Allow replies from actors mentioned in your post. */
1370
1370
  interface MentionRule {
@@ -1378,7 +1378,7 @@ declare module '@atcute/client/lexicons' {
1378
1378
  $type: 'app.bsky.graph.block';
1379
1379
  createdAt: string;
1380
1380
  /** DID of the account to be blocked. */
1381
- subject: At.DID;
1381
+ subject: At.Did;
1382
1382
  }
1383
1383
  }
1384
1384
 
@@ -1387,7 +1387,7 @@ declare module '@atcute/client/lexicons' {
1387
1387
  interface ListItemView {
1388
1388
  [Brand.Type]?: 'app.bsky.graph.defs#listItemView';
1389
1389
  subject: AppBskyActorDefs.ProfileView;
1390
- uri: At.Uri;
1390
+ uri: At.ResourceUri;
1391
1391
  }
1392
1392
  type ListPurpose =
1393
1393
  | 'app.bsky.graph.defs#curatelist'
@@ -1396,7 +1396,7 @@ declare module '@atcute/client/lexicons' {
1396
1396
  | (string & {});
1397
1397
  interface ListView {
1398
1398
  [Brand.Type]?: 'app.bsky.graph.defs#listView';
1399
- cid: At.CID;
1399
+ cid: At.Cid;
1400
1400
  creator: AppBskyActorDefs.ProfileView;
1401
1401
  indexedAt: string;
1402
1402
  /**
@@ -1405,8 +1405,8 @@ declare module '@atcute/client/lexicons' {
1405
1405
  */
1406
1406
  name: string;
1407
1407
  purpose: ListPurpose;
1408
- uri: At.Uri;
1409
- avatar?: string;
1408
+ uri: At.ResourceUri;
1409
+ avatar?: At.GenericUri;
1410
1410
  /**
1411
1411
  * Maximum string length: 3000 \
1412
1412
  * Maximum grapheme length: 300
@@ -1420,15 +1420,15 @@ declare module '@atcute/client/lexicons' {
1420
1420
  }
1421
1421
  interface ListViewBasic {
1422
1422
  [Brand.Type]?: 'app.bsky.graph.defs#listViewBasic';
1423
- cid: At.CID;
1423
+ cid: At.Cid;
1424
1424
  /**
1425
1425
  * Minimum string length: 1 \
1426
1426
  * Maximum string length: 64
1427
1427
  */
1428
1428
  name: string;
1429
1429
  purpose: ListPurpose;
1430
- uri: At.Uri;
1431
- avatar?: string;
1430
+ uri: At.ResourceUri;
1431
+ avatar?: At.GenericUri;
1432
1432
  indexedAt?: string;
1433
1433
  labels?: ComAtprotoLabelDefs.Label[];
1434
1434
  /** Minimum: 0 */
@@ -1437,33 +1437,33 @@ declare module '@atcute/client/lexicons' {
1437
1437
  }
1438
1438
  interface ListViewerState {
1439
1439
  [Brand.Type]?: 'app.bsky.graph.defs#listViewerState';
1440
- blocked?: At.Uri;
1440
+ blocked?: At.ResourceUri;
1441
1441
  muted?: boolean;
1442
1442
  }
1443
1443
  type Modlist = 'app.bsky.graph.defs#modlist';
1444
1444
  /** indicates that a handle or DID could not be resolved */
1445
1445
  interface NotFoundActor {
1446
1446
  [Brand.Type]?: 'app.bsky.graph.defs#notFoundActor';
1447
- actor: string;
1447
+ actor: At.Identifier;
1448
1448
  notFound: boolean;
1449
1449
  }
1450
1450
  type Referencelist = 'app.bsky.graph.defs#referencelist';
1451
1451
  /** lists the bi-directional graph relationships between one actor (not indicated in the object), and the target actors (the DID included in the object) */
1452
1452
  interface Relationship {
1453
1453
  [Brand.Type]?: 'app.bsky.graph.defs#relationship';
1454
- did: At.DID;
1454
+ did: At.Did;
1455
1455
  /** if the actor is followed by this DID, contains the AT-URI of the follow record */
1456
- followedBy?: At.Uri;
1456
+ followedBy?: At.ResourceUri;
1457
1457
  /** if the actor follows this DID, this is the AT-URI of the follow record */
1458
- following?: At.Uri;
1458
+ following?: At.ResourceUri;
1459
1459
  }
1460
1460
  interface StarterPackView {
1461
1461
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackView';
1462
- cid: At.CID;
1462
+ cid: At.Cid;
1463
1463
  creator: AppBskyActorDefs.ProfileViewBasic;
1464
1464
  indexedAt: string;
1465
1465
  record: unknown;
1466
- uri: At.Uri;
1466
+ uri: At.ResourceUri;
1467
1467
  /** Maximum array length: 3 */
1468
1468
  feeds?: AppBskyFeedDefs.GeneratorView[];
1469
1469
  /** Minimum: 0 */
@@ -1477,11 +1477,11 @@ declare module '@atcute/client/lexicons' {
1477
1477
  }
1478
1478
  interface StarterPackViewBasic {
1479
1479
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackViewBasic';
1480
- cid: At.CID;
1480
+ cid: At.Cid;
1481
1481
  creator: AppBskyActorDefs.ProfileViewBasic;
1482
1482
  indexedAt: string;
1483
1483
  record: unknown;
1484
- uri: At.Uri;
1484
+ uri: At.ResourceUri;
1485
1485
  /** Minimum: 0 */
1486
1486
  joinedAllTimeCount?: number;
1487
1487
  /** Minimum: 0 */
@@ -1497,14 +1497,14 @@ declare module '@atcute/client/lexicons' {
1497
1497
  interface Record {
1498
1498
  $type: 'app.bsky.graph.follow';
1499
1499
  createdAt: string;
1500
- subject: At.DID;
1500
+ subject: At.Did;
1501
1501
  }
1502
1502
  }
1503
1503
 
1504
1504
  /** Get a list of starter packs created by the actor. */
1505
1505
  namespace AppBskyGraphGetActorStarterPacks {
1506
1506
  interface Params {
1507
- actor: string;
1507
+ actor: At.Identifier;
1508
1508
  cursor?: string;
1509
1509
  /**
1510
1510
  * Minimum: 1 \
@@ -1541,7 +1541,7 @@ declare module '@atcute/client/lexicons' {
1541
1541
  /** Enumerates accounts which follow a specified account (actor). */
1542
1542
  namespace AppBskyGraphGetFollowers {
1543
1543
  interface Params {
1544
- actor: string;
1544
+ actor: At.Identifier;
1545
1545
  cursor?: string;
1546
1546
  /**
1547
1547
  * Minimum: 1 \
@@ -1561,7 +1561,7 @@ declare module '@atcute/client/lexicons' {
1561
1561
  /** Enumerates accounts which a specified account (actor) follows. */
1562
1562
  namespace AppBskyGraphGetFollows {
1563
1563
  interface Params {
1564
- actor: string;
1564
+ actor: At.Identifier;
1565
1565
  cursor?: string;
1566
1566
  /**
1567
1567
  * Minimum: 1 \
@@ -1581,7 +1581,7 @@ declare module '@atcute/client/lexicons' {
1581
1581
  /** Enumerates accounts which follow a specified account (actor) and are followed by the viewer. */
1582
1582
  namespace AppBskyGraphGetKnownFollowers {
1583
1583
  interface Params {
1584
- actor: string;
1584
+ actor: At.Identifier;
1585
1585
  cursor?: string;
1586
1586
  /**
1587
1587
  * Minimum: 1 \
@@ -1602,7 +1602,7 @@ declare module '@atcute/client/lexicons' {
1602
1602
  namespace AppBskyGraphGetList {
1603
1603
  interface Params {
1604
1604
  /** Reference (AT-URI) of the list record to hydrate. */
1605
- list: At.Uri;
1605
+ list: At.ResourceUri;
1606
1606
  cursor?: string;
1607
1607
  /**
1608
1608
  * Minimum: 1 \
@@ -1659,7 +1659,7 @@ declare module '@atcute/client/lexicons' {
1659
1659
  namespace AppBskyGraphGetLists {
1660
1660
  interface Params {
1661
1661
  /** The account (actor) to enumerate lists from. */
1662
- actor: string;
1662
+ actor: At.Identifier;
1663
1663
  cursor?: string;
1664
1664
  /**
1665
1665
  * Minimum: 1 \
@@ -1697,17 +1697,17 @@ declare module '@atcute/client/lexicons' {
1697
1697
  namespace AppBskyGraphGetRelationships {
1698
1698
  interface Params {
1699
1699
  /** Primary account requesting relationships for. */
1700
- actor: string;
1700
+ actor: At.Identifier;
1701
1701
  /**
1702
1702
  * List of 'other' accounts to be related back to the primary. \
1703
1703
  * Maximum array length: 30
1704
1704
  */
1705
- others?: string[];
1705
+ others?: At.Identifier[];
1706
1706
  }
1707
1707
  type Input = undefined;
1708
1708
  interface Output {
1709
1709
  relationships: Brand.Union<AppBskyGraphDefs.NotFoundActor | AppBskyGraphDefs.Relationship>[];
1710
- actor?: At.DID;
1710
+ actor?: At.Did;
1711
1711
  }
1712
1712
  interface Errors {
1713
1713
  ActorNotFound: {};
@@ -1718,7 +1718,7 @@ declare module '@atcute/client/lexicons' {
1718
1718
  namespace AppBskyGraphGetStarterPack {
1719
1719
  interface Params {
1720
1720
  /** Reference (AT-URI) of the starter pack record. */
1721
- starterPack: At.Uri;
1721
+ starterPack: At.ResourceUri;
1722
1722
  }
1723
1723
  type Input = undefined;
1724
1724
  interface Output {
@@ -1730,7 +1730,7 @@ declare module '@atcute/client/lexicons' {
1730
1730
  namespace AppBskyGraphGetStarterPacks {
1731
1731
  interface Params {
1732
1732
  /** Maximum array length: 25 */
1733
- uris: At.Uri[];
1733
+ uris: At.ResourceUri[];
1734
1734
  }
1735
1735
  type Input = undefined;
1736
1736
  interface Output {
@@ -1741,7 +1741,7 @@ declare module '@atcute/client/lexicons' {
1741
1741
  /** Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account. */
1742
1742
  namespace AppBskyGraphGetSuggestedFollowsByActor {
1743
1743
  interface Params {
1744
- actor: string;
1744
+ actor: At.Identifier;
1745
1745
  }
1746
1746
  type Input = undefined;
1747
1747
  interface Output {
@@ -1786,7 +1786,7 @@ declare module '@atcute/client/lexicons' {
1786
1786
  $type: 'app.bsky.graph.listblock';
1787
1787
  createdAt: string;
1788
1788
  /** Reference (AT-URI) to the mod list record. */
1789
- subject: At.Uri;
1789
+ subject: At.ResourceUri;
1790
1790
  }
1791
1791
  }
1792
1792
 
@@ -1796,9 +1796,9 @@ declare module '@atcute/client/lexicons' {
1796
1796
  $type: 'app.bsky.graph.listitem';
1797
1797
  createdAt: string;
1798
1798
  /** Reference (AT-URI) to the list record (app.bsky.graph.list). */
1799
- list: At.Uri;
1799
+ list: At.ResourceUri;
1800
1800
  /** The account which is included on the list. */
1801
- subject: At.DID;
1801
+ subject: At.Did;
1802
1802
  }
1803
1803
  }
1804
1804
 
@@ -1806,7 +1806,7 @@ declare module '@atcute/client/lexicons' {
1806
1806
  namespace AppBskyGraphMuteActor {
1807
1807
  interface Params {}
1808
1808
  interface Input {
1809
- actor: string;
1809
+ actor: At.Identifier;
1810
1810
  }
1811
1811
  type Output = undefined;
1812
1812
  }
@@ -1815,7 +1815,7 @@ declare module '@atcute/client/lexicons' {
1815
1815
  namespace AppBskyGraphMuteActorList {
1816
1816
  interface Params {}
1817
1817
  interface Input {
1818
- list: At.Uri;
1818
+ list: At.ResourceUri;
1819
1819
  }
1820
1820
  type Output = undefined;
1821
1821
  }
@@ -1824,7 +1824,7 @@ declare module '@atcute/client/lexicons' {
1824
1824
  namespace AppBskyGraphMuteThread {
1825
1825
  interface Params {}
1826
1826
  interface Input {
1827
- root: At.Uri;
1827
+ root: At.ResourceUri;
1828
1828
  }
1829
1829
  type Output = undefined;
1830
1830
  }
@@ -1855,7 +1855,7 @@ declare module '@atcute/client/lexicons' {
1855
1855
  $type: 'app.bsky.graph.starterpack';
1856
1856
  createdAt: string;
1857
1857
  /** Reference (AT-URI) to the list record. */
1858
- list: At.Uri;
1858
+ list: At.ResourceUri;
1859
1859
  /**
1860
1860
  * Display name for starter pack; can not be empty. \
1861
1861
  * Minimum string length: 1 \
@@ -1874,7 +1874,7 @@ declare module '@atcute/client/lexicons' {
1874
1874
  }
1875
1875
  interface FeedItem {
1876
1876
  [Brand.Type]?: 'app.bsky.graph.starterpack#feedItem';
1877
- uri: At.Uri;
1877
+ uri: At.ResourceUri;
1878
1878
  }
1879
1879
  }
1880
1880
 
@@ -1882,7 +1882,7 @@ declare module '@atcute/client/lexicons' {
1882
1882
  namespace AppBskyGraphUnmuteActor {
1883
1883
  interface Params {}
1884
1884
  interface Input {
1885
- actor: string;
1885
+ actor: At.Identifier;
1886
1886
  }
1887
1887
  type Output = undefined;
1888
1888
  }
@@ -1891,7 +1891,7 @@ declare module '@atcute/client/lexicons' {
1891
1891
  namespace AppBskyGraphUnmuteActorList {
1892
1892
  interface Params {}
1893
1893
  interface Input {
1894
- list: At.Uri;
1894
+ list: At.ResourceUri;
1895
1895
  }
1896
1896
  type Output = undefined;
1897
1897
  }
@@ -1900,7 +1900,7 @@ declare module '@atcute/client/lexicons' {
1900
1900
  namespace AppBskyGraphUnmuteThread {
1901
1901
  interface Params {}
1902
1902
  interface Input {
1903
- root: At.Uri;
1903
+ root: At.ResourceUri;
1904
1904
  }
1905
1905
  type Output = undefined;
1906
1906
  }
@@ -1915,10 +1915,10 @@ declare module '@atcute/client/lexicons' {
1915
1915
  }
1916
1916
  interface LabelerView {
1917
1917
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerView';
1918
- cid: At.CID;
1918
+ cid: At.Cid;
1919
1919
  creator: AppBskyActorDefs.ProfileView;
1920
1920
  indexedAt: string;
1921
- uri: At.Uri;
1921
+ uri: At.ResourceUri;
1922
1922
  labels?: ComAtprotoLabelDefs.Label[];
1923
1923
  /** Minimum: 0 */
1924
1924
  likeCount?: number;
@@ -1926,32 +1926,32 @@ declare module '@atcute/client/lexicons' {
1926
1926
  }
1927
1927
  interface LabelerViewDetailed {
1928
1928
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewDetailed';
1929
- cid: At.CID;
1929
+ cid: At.Cid;
1930
1930
  creator: AppBskyActorDefs.ProfileView;
1931
1931
  indexedAt: string;
1932
1932
  policies: AppBskyLabelerDefs.LabelerPolicies;
1933
- uri: At.Uri;
1933
+ uri: At.ResourceUri;
1934
1934
  labels?: ComAtprotoLabelDefs.Label[];
1935
1935
  /** Minimum: 0 */
1936
1936
  likeCount?: number;
1937
1937
  /** The set of report reason 'codes' which are in-scope for this service to review and action. These usually align to policy categories. If not defined (distinct from empty array), all reason types are allowed. */
1938
1938
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1939
1939
  /** Set of record types (collection NSIDs) which can be reported to this service. If not defined (distinct from empty array), default is any record type. */
1940
- subjectCollections?: string[];
1940
+ subjectCollections?: At.Nsid[];
1941
1941
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1942
1942
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1943
1943
  viewer?: LabelerViewerState;
1944
1944
  }
1945
1945
  interface LabelerViewerState {
1946
1946
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewerState';
1947
- like?: At.Uri;
1947
+ like?: At.ResourceUri;
1948
1948
  }
1949
1949
  }
1950
1950
 
1951
1951
  /** Get information about a list of labeler services. */
1952
1952
  namespace AppBskyLabelerGetServices {
1953
1953
  interface Params {
1954
- dids: At.DID[];
1954
+ dids: At.Did[];
1955
1955
  /** @default false */
1956
1956
  detailed?: boolean;
1957
1957
  }
@@ -1971,7 +1971,7 @@ declare module '@atcute/client/lexicons' {
1971
1971
  /** The set of report reason 'codes' which are in-scope for this service to review and action. These usually align to policy categories. If not defined (distinct from empty array), all reason types are allowed. */
1972
1972
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1973
1973
  /** Set of record types (collection NSIDs) which can be reported to this service. If not defined (distinct from empty array), default is any record type. */
1974
- subjectCollections?: string[];
1974
+ subjectCollections?: At.Nsid[];
1975
1975
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1976
1976
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1977
1977
  }
@@ -2017,7 +2017,7 @@ declare module '@atcute/client/lexicons' {
2017
2017
  interface Notification {
2018
2018
  [Brand.Type]?: 'app.bsky.notification.listNotifications#notification';
2019
2019
  author: AppBskyActorDefs.ProfileView;
2020
- cid: At.CID;
2020
+ cid: At.Cid;
2021
2021
  indexedAt: string;
2022
2022
  isRead: boolean;
2023
2023
  /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
@@ -2031,9 +2031,9 @@ declare module '@atcute/client/lexicons' {
2031
2031
  | 'starterpack-joined'
2032
2032
  | (string & {});
2033
2033
  record: unknown;
2034
- uri: At.Uri;
2034
+ uri: At.ResourceUri;
2035
2035
  labels?: ComAtprotoLabelDefs.Label[];
2036
- reasonSubject?: At.Uri;
2036
+ reasonSubject?: At.ResourceUri;
2037
2037
  }
2038
2038
  }
2039
2039
 
@@ -2052,7 +2052,7 @@ declare module '@atcute/client/lexicons' {
2052
2052
  interface Input {
2053
2053
  appId: string;
2054
2054
  platform: 'android' | 'ios' | 'web' | (string & {});
2055
- serviceDid: At.DID;
2055
+ serviceDid: At.Did;
2056
2056
  token: string;
2057
2057
  }
2058
2058
  type Output = undefined;
@@ -2085,12 +2085,12 @@ declare module '@atcute/client/lexicons' {
2085
2085
  /** Facet feature for a URL. The text URL may have been simplified or truncated, but the facet reference should be a complete URL. */
2086
2086
  interface Link {
2087
2087
  [Brand.Type]?: 'app.bsky.richtext.facet#link';
2088
- uri: string;
2088
+ uri: At.GenericUri;
2089
2089
  }
2090
2090
  /** Facet feature for mention of another account. The text is usually a handle, including a '@' prefix, but the facet reference is a DID. */
2091
2091
  interface Mention {
2092
2092
  [Brand.Type]?: 'app.bsky.richtext.facet#mention';
2093
- did: At.DID;
2093
+ did: At.Did;
2094
2094
  }
2095
2095
  /** Facet feature for a hashtag. The text usually includes a '#' prefix, but the facet reference should not (except in the case of 'double hash tags'). */
2096
2096
  interface Tag {
@@ -2106,15 +2106,15 @@ declare module '@atcute/client/lexicons' {
2106
2106
  namespace AppBskyUnspeccedDefs {
2107
2107
  interface SkeletonSearchActor {
2108
2108
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchActor';
2109
- did: At.DID;
2109
+ did: At.Did;
2110
2110
  }
2111
2111
  interface SkeletonSearchPost {
2112
2112
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchPost';
2113
- uri: At.Uri;
2113
+ uri: At.ResourceUri;
2114
2114
  }
2115
2115
  interface SkeletonSearchStarterPack {
2116
2116
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchStarterPack';
2117
- uri: At.Uri;
2117
+ uri: At.ResourceUri;
2118
2118
  }
2119
2119
  interface TrendingTopic {
2120
2120
  [Brand.Type]?: 'app.bsky.unspecced.defs#trendingTopic';
@@ -2164,9 +2164,9 @@ declare module '@atcute/client/lexicons' {
2164
2164
  */
2165
2165
  limit?: number;
2166
2166
  /** DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer. */
2167
- relativeToDid?: At.DID;
2167
+ relativeToDid?: At.Did;
2168
2168
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2169
- viewer?: At.DID;
2169
+ viewer?: At.Did;
2170
2170
  }
2171
2171
  type Input = undefined;
2172
2172
  interface Output {
@@ -2175,7 +2175,7 @@ declare module '@atcute/client/lexicons' {
2175
2175
  /** Snowflake for this recommendation, use when submitting recommendation events. */
2176
2176
  recId?: number;
2177
2177
  /** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
2178
- relativeToDid?: At.DID;
2178
+ relativeToDid?: At.Did;
2179
2179
  }
2180
2180
  }
2181
2181
 
@@ -2187,7 +2187,7 @@ declare module '@atcute/client/lexicons' {
2187
2187
  }
2188
2188
  interface Suggestion {
2189
2189
  [Brand.Type]?: 'app.bsky.unspecced.getTaggedSuggestions#suggestion';
2190
- subject: string;
2190
+ subject: At.GenericUri;
2191
2191
  subjectType: 'actor' | 'feed' | (string & {});
2192
2192
  tag: string;
2193
2193
  }
@@ -2203,7 +2203,7 @@ declare module '@atcute/client/lexicons' {
2203
2203
  */
2204
2204
  limit?: number;
2205
2205
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2206
- viewer?: At.DID;
2206
+ viewer?: At.Did;
2207
2207
  }
2208
2208
  type Input = undefined;
2209
2209
  interface Output {
@@ -2228,7 +2228,7 @@ declare module '@atcute/client/lexicons' {
2228
2228
  /** If true, acts as fast/simple 'typeahead' query. */
2229
2229
  typeahead?: boolean;
2230
2230
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2231
- viewer?: At.DID;
2231
+ viewer?: At.Did;
2232
2232
  }
2233
2233
  type Input = undefined;
2234
2234
  interface Output {
@@ -2248,7 +2248,7 @@ declare module '@atcute/client/lexicons' {
2248
2248
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
2249
2249
  q: string;
2250
2250
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
2251
- author?: string;
2251
+ author?: At.Identifier;
2252
2252
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
2253
2253
  cursor?: string;
2254
2254
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -2262,7 +2262,7 @@ declare module '@atcute/client/lexicons' {
2262
2262
  */
2263
2263
  limit?: number;
2264
2264
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
2265
- mentions?: string;
2265
+ mentions?: At.Identifier;
2266
2266
  /** Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
2267
2267
  since?: string;
2268
2268
  /**
@@ -2279,9 +2279,9 @@ declare module '@atcute/client/lexicons' {
2279
2279
  /** Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD). */
2280
2280
  until?: string;
2281
2281
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
2282
- url?: string;
2282
+ url?: At.GenericUri;
2283
2283
  /** DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries. */
2284
- viewer?: At.DID;
2284
+ viewer?: At.Did;
2285
2285
  }
2286
2286
  type Input = undefined;
2287
2287
  interface Output {
@@ -2309,7 +2309,7 @@ declare module '@atcute/client/lexicons' {
2309
2309
  */
2310
2310
  limit?: number;
2311
2311
  /** DID of the account making the request (not included for public/unauthenticated queries). */
2312
- viewer?: At.DID;
2312
+ viewer?: At.Did;
2313
2313
  }
2314
2314
  type Input = undefined;
2315
2315
  interface Output {
@@ -2326,7 +2326,7 @@ declare module '@atcute/client/lexicons' {
2326
2326
  namespace AppBskyVideoDefs {
2327
2327
  interface JobStatus {
2328
2328
  [Brand.Type]?: 'app.bsky.video.defs#jobStatus';
2329
- did: At.DID;
2329
+ did: At.Did;
2330
2330
  jobId: string;
2331
2331
  /** The state of the video processing job. All values not listed as a known value indicate that the job is in process. */
2332
2332
  state: 'JOB_STATE_COMPLETED' | 'JOB_STATE_FAILED' | (string & {});
@@ -2369,7 +2369,7 @@ declare module '@atcute/client/lexicons' {
2369
2369
  /** Upload a video to be processed then stored on the PDS. */
2370
2370
  namespace AppBskyVideoUploadVideo {
2371
2371
  interface Params {}
2372
- type Input = Blob | ArrayBufferView;
2372
+ type Input = Blob | BufferSource | ReadableStream;
2373
2373
  interface Output {
2374
2374
  jobStatus: AppBskyVideoDefs.JobStatus;
2375
2375
  }
@@ -2386,10 +2386,10 @@ declare module '@atcute/client/lexicons' {
2386
2386
  namespace ChatBskyActorDefs {
2387
2387
  interface ProfileViewBasic {
2388
2388
  [Brand.Type]?: 'chat.bsky.actor.defs#profileViewBasic';
2389
- did: At.DID;
2389
+ did: At.Did;
2390
2390
  handle: At.Handle;
2391
2391
  associated?: AppBskyActorDefs.ProfileAssociated;
2392
- avatar?: string;
2392
+ avatar?: At.GenericUri;
2393
2393
  /** Set to true when the actor cannot actively participate in converations */
2394
2394
  chatDisabled?: boolean;
2395
2395
  /**
@@ -2425,6 +2425,29 @@ declare module '@atcute/client/lexicons' {
2425
2425
  }
2426
2426
  }
2427
2427
 
2428
+ /** Adds an emoji reaction to a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in a single reaction. */
2429
+ namespace ChatBskyConvoAddReaction {
2430
+ interface Params {}
2431
+ interface Input {
2432
+ convoId: string;
2433
+ messageId: string;
2434
+ /**
2435
+ * Minimum string length: 1 \
2436
+ * Maximum string length: 32 \
2437
+ * Maximum grapheme length: 1
2438
+ */
2439
+ value: string;
2440
+ }
2441
+ interface Output {
2442
+ message: ChatBskyConvoDefs.MessageView;
2443
+ }
2444
+ interface Errors {
2445
+ ReactionMessageDeleted: {};
2446
+ ReactionLimitReached: {};
2447
+ ReactionInvalidValue: {};
2448
+ }
2449
+ }
2450
+
2428
2451
  namespace ChatBskyConvoDefs {
2429
2452
  interface ConvoView {
2430
2453
  [Brand.Type]?: 'chat.bsky.convo.defs#convoView';
@@ -2433,7 +2456,7 @@ declare module '@atcute/client/lexicons' {
2433
2456
  muted: boolean;
2434
2457
  rev: string;
2435
2458
  unreadCount: number;
2436
- lastMessage?: Brand.Union<DeletedMessageView | MessageView>;
2459
+ lastMessage?: Brand.Union<DeletedMessageView | MessageAndReactionView | MessageView>;
2437
2460
  status?: 'accepted' | 'request' | (string & {});
2438
2461
  }
2439
2462
  interface DeletedMessageView {
@@ -2448,6 +2471,13 @@ declare module '@atcute/client/lexicons' {
2448
2471
  convoId: string;
2449
2472
  rev: string;
2450
2473
  }
2474
+ interface LogAddReaction {
2475
+ [Brand.Type]?: 'chat.bsky.convo.defs#logAddReaction';
2476
+ convoId: string;
2477
+ message: Brand.Union<DeletedMessageView | MessageView>;
2478
+ reaction: ReactionView;
2479
+ rev: string;
2480
+ }
2451
2481
  interface LogBeginConvo {
2452
2482
  [Brand.Type]?: 'chat.bsky.convo.defs#logBeginConvo';
2453
2483
  convoId: string;
@@ -2481,11 +2511,23 @@ declare module '@atcute/client/lexicons' {
2481
2511
  message: Brand.Union<DeletedMessageView | MessageView>;
2482
2512
  rev: string;
2483
2513
  }
2514
+ interface LogRemoveReaction {
2515
+ [Brand.Type]?: 'chat.bsky.convo.defs#logRemoveReaction';
2516
+ convoId: string;
2517
+ message: Brand.Union<DeletedMessageView | MessageView>;
2518
+ reaction: ReactionView;
2519
+ rev: string;
2520
+ }
2484
2521
  interface LogUnmuteConvo {
2485
2522
  [Brand.Type]?: 'chat.bsky.convo.defs#logUnmuteConvo';
2486
2523
  convoId: string;
2487
2524
  rev: string;
2488
2525
  }
2526
+ interface MessageAndReactionView {
2527
+ [Brand.Type]?: 'chat.bsky.convo.defs#messageAndReactionView';
2528
+ message: MessageView;
2529
+ reaction: ReactionView;
2530
+ }
2489
2531
  interface MessageInput {
2490
2532
  [Brand.Type]?: 'chat.bsky.convo.defs#messageInput';
2491
2533
  /**
@@ -2500,7 +2542,7 @@ declare module '@atcute/client/lexicons' {
2500
2542
  interface MessageRef {
2501
2543
  [Brand.Type]?: 'chat.bsky.convo.defs#messageRef';
2502
2544
  convoId: string;
2503
- did: At.DID;
2545
+ did: At.Did;
2504
2546
  messageId: string;
2505
2547
  }
2506
2548
  interface MessageView {
@@ -2517,10 +2559,21 @@ declare module '@atcute/client/lexicons' {
2517
2559
  embed?: Brand.Union<AppBskyEmbedRecord.View>;
2518
2560
  /** Annotations of text (mentions, URLs, hashtags, etc) */
2519
2561
  facets?: AppBskyRichtextFacet.Main[];
2562
+ reactions?: ReactionView[];
2520
2563
  }
2521
2564
  interface MessageViewSender {
2522
2565
  [Brand.Type]?: 'chat.bsky.convo.defs#messageViewSender';
2523
- did: At.DID;
2566
+ did: At.Did;
2567
+ }
2568
+ interface ReactionView {
2569
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionView';
2570
+ createdAt: string;
2571
+ sender: ReactionViewSender;
2572
+ value: string;
2573
+ }
2574
+ interface ReactionViewSender {
2575
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionViewSender';
2576
+ did: At.Did;
2524
2577
  }
2525
2578
  }
2526
2579
 
@@ -2550,7 +2603,7 @@ declare module '@atcute/client/lexicons' {
2550
2603
  * Minimum array length: 1 \
2551
2604
  * Maximum array length: 10
2552
2605
  */
2553
- members: At.DID[];
2606
+ members: At.Did[];
2554
2607
  }
2555
2608
  type Input = undefined;
2556
2609
  interface Output {
@@ -2565,7 +2618,7 @@ declare module '@atcute/client/lexicons' {
2565
2618
  * Minimum array length: 1 \
2566
2619
  * Maximum array length: 10
2567
2620
  */
2568
- members: At.DID[];
2621
+ members: At.Did[];
2569
2622
  }
2570
2623
  type Input = undefined;
2571
2624
  interface Output {
@@ -2581,10 +2634,15 @@ declare module '@atcute/client/lexicons' {
2581
2634
  interface Output {
2582
2635
  logs: Brand.Union<
2583
2636
  | ChatBskyConvoDefs.LogAcceptConvo
2637
+ | ChatBskyConvoDefs.LogAddReaction
2584
2638
  | ChatBskyConvoDefs.LogBeginConvo
2585
2639
  | ChatBskyConvoDefs.LogCreateMessage
2586
2640
  | ChatBskyConvoDefs.LogDeleteMessage
2587
2641
  | ChatBskyConvoDefs.LogLeaveConvo
2642
+ | ChatBskyConvoDefs.LogMuteConvo
2643
+ | ChatBskyConvoDefs.LogReadMessage
2644
+ | ChatBskyConvoDefs.LogRemoveReaction
2645
+ | ChatBskyConvoDefs.LogUnmuteConvo
2588
2646
  >[];
2589
2647
  cursor?: string;
2590
2648
  }
@@ -2648,6 +2706,28 @@ declare module '@atcute/client/lexicons' {
2648
2706
  }
2649
2707
  }
2650
2708
 
2709
+ /** Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't. */
2710
+ namespace ChatBskyConvoRemoveReaction {
2711
+ interface Params {}
2712
+ interface Input {
2713
+ convoId: string;
2714
+ messageId: string;
2715
+ /**
2716
+ * Minimum string length: 1 \
2717
+ * Maximum string length: 32 \
2718
+ * Maximum grapheme length: 1
2719
+ */
2720
+ value: string;
2721
+ }
2722
+ interface Output {
2723
+ message: ChatBskyConvoDefs.MessageView;
2724
+ }
2725
+ interface Errors {
2726
+ ReactionMessageDeleted: {};
2727
+ ReactionInvalidValue: {};
2728
+ }
2729
+ }
2730
+
2651
2731
  namespace ChatBskyConvoSendMessage {
2652
2732
  interface Params {}
2653
2733
  interface Input {
@@ -2707,7 +2787,7 @@ declare module '@atcute/client/lexicons' {
2707
2787
 
2708
2788
  namespace ChatBskyModerationGetActorMetadata {
2709
2789
  interface Params {
2710
- actor: At.DID;
2790
+ actor: At.Did;
2711
2791
  }
2712
2792
  type Input = undefined;
2713
2793
  interface Output {
@@ -2743,7 +2823,7 @@ declare module '@atcute/client/lexicons' {
2743
2823
  namespace ChatBskyModerationUpdateActorAccess {
2744
2824
  interface Params {}
2745
2825
  interface Input {
2746
- actor: At.DID;
2826
+ actor: At.Did;
2747
2827
  allowAccess: boolean;
2748
2828
  ref?: string;
2749
2829
  }
@@ -2770,238 +2850,358 @@ declare module '@atcute/client/lexicons' {
2770
2850
 
2771
2851
  interface Queries {
2772
2852
  'app.bsky.actor.getPreferences': {
2853
+ /** @deprecated */
2773
2854
  output: AppBskyActorGetPreferences.Output;
2855
+ response: { json: AppBskyActorGetPreferences.Output };
2774
2856
  };
2775
2857
  'app.bsky.actor.getProfile': {
2776
2858
  params: AppBskyActorGetProfile.Params;
2859
+ /** @deprecated */
2777
2860
  output: AppBskyActorGetProfile.Output;
2861
+ response: { json: AppBskyActorGetProfile.Output };
2778
2862
  };
2779
2863
  'app.bsky.actor.getProfiles': {
2780
2864
  params: AppBskyActorGetProfiles.Params;
2865
+ /** @deprecated */
2781
2866
  output: AppBskyActorGetProfiles.Output;
2867
+ response: { json: AppBskyActorGetProfiles.Output };
2782
2868
  };
2783
2869
  'app.bsky.actor.getSuggestions': {
2784
2870
  params: AppBskyActorGetSuggestions.Params;
2871
+ /** @deprecated */
2785
2872
  output: AppBskyActorGetSuggestions.Output;
2873
+ response: { json: AppBskyActorGetSuggestions.Output };
2786
2874
  };
2787
2875
  'app.bsky.actor.searchActors': {
2788
2876
  params: AppBskyActorSearchActors.Params;
2877
+ /** @deprecated */
2789
2878
  output: AppBskyActorSearchActors.Output;
2879
+ response: { json: AppBskyActorSearchActors.Output };
2790
2880
  };
2791
2881
  'app.bsky.actor.searchActorsTypeahead': {
2792
2882
  params: AppBskyActorSearchActorsTypeahead.Params;
2883
+ /** @deprecated */
2793
2884
  output: AppBskyActorSearchActorsTypeahead.Output;
2885
+ response: { json: AppBskyActorSearchActorsTypeahead.Output };
2794
2886
  };
2795
2887
  'app.bsky.feed.describeFeedGenerator': {
2888
+ /** @deprecated */
2796
2889
  output: AppBskyFeedDescribeFeedGenerator.Output;
2890
+ response: { json: AppBskyFeedDescribeFeedGenerator.Output };
2797
2891
  };
2798
2892
  'app.bsky.feed.getActorFeeds': {
2799
2893
  params: AppBskyFeedGetActorFeeds.Params;
2894
+ /** @deprecated */
2800
2895
  output: AppBskyFeedGetActorFeeds.Output;
2896
+ response: { json: AppBskyFeedGetActorFeeds.Output };
2801
2897
  };
2802
2898
  'app.bsky.feed.getActorLikes': {
2803
2899
  params: AppBskyFeedGetActorLikes.Params;
2900
+ /** @deprecated */
2804
2901
  output: AppBskyFeedGetActorLikes.Output;
2902
+ response: { json: AppBskyFeedGetActorLikes.Output };
2805
2903
  };
2806
2904
  'app.bsky.feed.getAuthorFeed': {
2807
2905
  params: AppBskyFeedGetAuthorFeed.Params;
2906
+ /** @deprecated */
2808
2907
  output: AppBskyFeedGetAuthorFeed.Output;
2908
+ response: { json: AppBskyFeedGetAuthorFeed.Output };
2809
2909
  };
2810
2910
  'app.bsky.feed.getFeed': {
2811
2911
  params: AppBskyFeedGetFeed.Params;
2912
+ /** @deprecated */
2812
2913
  output: AppBskyFeedGetFeed.Output;
2914
+ response: { json: AppBskyFeedGetFeed.Output };
2813
2915
  };
2814
2916
  'app.bsky.feed.getFeedGenerator': {
2815
2917
  params: AppBskyFeedGetFeedGenerator.Params;
2918
+ /** @deprecated */
2816
2919
  output: AppBskyFeedGetFeedGenerator.Output;
2920
+ response: { json: AppBskyFeedGetFeedGenerator.Output };
2817
2921
  };
2818
2922
  'app.bsky.feed.getFeedGenerators': {
2819
2923
  params: AppBskyFeedGetFeedGenerators.Params;
2924
+ /** @deprecated */
2820
2925
  output: AppBskyFeedGetFeedGenerators.Output;
2926
+ response: { json: AppBskyFeedGetFeedGenerators.Output };
2821
2927
  };
2822
2928
  'app.bsky.feed.getFeedSkeleton': {
2823
2929
  params: AppBskyFeedGetFeedSkeleton.Params;
2930
+ /** @deprecated */
2824
2931
  output: AppBskyFeedGetFeedSkeleton.Output;
2932
+ response: { json: AppBskyFeedGetFeedSkeleton.Output };
2825
2933
  };
2826
2934
  'app.bsky.feed.getLikes': {
2827
2935
  params: AppBskyFeedGetLikes.Params;
2936
+ /** @deprecated */
2828
2937
  output: AppBskyFeedGetLikes.Output;
2938
+ response: { json: AppBskyFeedGetLikes.Output };
2829
2939
  };
2830
2940
  'app.bsky.feed.getListFeed': {
2831
2941
  params: AppBskyFeedGetListFeed.Params;
2942
+ /** @deprecated */
2832
2943
  output: AppBskyFeedGetListFeed.Output;
2944
+ response: { json: AppBskyFeedGetListFeed.Output };
2833
2945
  };
2834
2946
  'app.bsky.feed.getPosts': {
2835
2947
  params: AppBskyFeedGetPosts.Params;
2948
+ /** @deprecated */
2836
2949
  output: AppBskyFeedGetPosts.Output;
2950
+ response: { json: AppBskyFeedGetPosts.Output };
2837
2951
  };
2838
2952
  'app.bsky.feed.getPostThread': {
2839
2953
  params: AppBskyFeedGetPostThread.Params;
2954
+ /** @deprecated */
2840
2955
  output: AppBskyFeedGetPostThread.Output;
2956
+ response: { json: AppBskyFeedGetPostThread.Output };
2841
2957
  };
2842
2958
  'app.bsky.feed.getQuotes': {
2843
2959
  params: AppBskyFeedGetQuotes.Params;
2960
+ /** @deprecated */
2844
2961
  output: AppBskyFeedGetQuotes.Output;
2962
+ response: { json: AppBskyFeedGetQuotes.Output };
2845
2963
  };
2846
2964
  'app.bsky.feed.getRepostedBy': {
2847
2965
  params: AppBskyFeedGetRepostedBy.Params;
2966
+ /** @deprecated */
2848
2967
  output: AppBskyFeedGetRepostedBy.Output;
2968
+ response: { json: AppBskyFeedGetRepostedBy.Output };
2849
2969
  };
2850
2970
  'app.bsky.feed.getSuggestedFeeds': {
2851
2971
  params: AppBskyFeedGetSuggestedFeeds.Params;
2972
+ /** @deprecated */
2852
2973
  output: AppBskyFeedGetSuggestedFeeds.Output;
2974
+ response: { json: AppBskyFeedGetSuggestedFeeds.Output };
2853
2975
  };
2854
2976
  'app.bsky.feed.getTimeline': {
2855
2977
  params: AppBskyFeedGetTimeline.Params;
2978
+ /** @deprecated */
2856
2979
  output: AppBskyFeedGetTimeline.Output;
2980
+ response: { json: AppBskyFeedGetTimeline.Output };
2857
2981
  };
2858
2982
  'app.bsky.feed.searchPosts': {
2859
2983
  params: AppBskyFeedSearchPosts.Params;
2984
+ /** @deprecated */
2860
2985
  output: AppBskyFeedSearchPosts.Output;
2986
+ response: { json: AppBskyFeedSearchPosts.Output };
2861
2987
  };
2862
2988
  'app.bsky.graph.getActorStarterPacks': {
2863
2989
  params: AppBskyGraphGetActorStarterPacks.Params;
2990
+ /** @deprecated */
2864
2991
  output: AppBskyGraphGetActorStarterPacks.Output;
2992
+ response: { json: AppBskyGraphGetActorStarterPacks.Output };
2865
2993
  };
2866
2994
  'app.bsky.graph.getBlocks': {
2867
2995
  params: AppBskyGraphGetBlocks.Params;
2996
+ /** @deprecated */
2868
2997
  output: AppBskyGraphGetBlocks.Output;
2998
+ response: { json: AppBskyGraphGetBlocks.Output };
2869
2999
  };
2870
3000
  'app.bsky.graph.getFollowers': {
2871
3001
  params: AppBskyGraphGetFollowers.Params;
3002
+ /** @deprecated */
2872
3003
  output: AppBskyGraphGetFollowers.Output;
3004
+ response: { json: AppBskyGraphGetFollowers.Output };
2873
3005
  };
2874
3006
  'app.bsky.graph.getFollows': {
2875
3007
  params: AppBskyGraphGetFollows.Params;
3008
+ /** @deprecated */
2876
3009
  output: AppBskyGraphGetFollows.Output;
3010
+ response: { json: AppBskyGraphGetFollows.Output };
2877
3011
  };
2878
3012
  'app.bsky.graph.getKnownFollowers': {
2879
3013
  params: AppBskyGraphGetKnownFollowers.Params;
3014
+ /** @deprecated */
2880
3015
  output: AppBskyGraphGetKnownFollowers.Output;
3016
+ response: { json: AppBskyGraphGetKnownFollowers.Output };
2881
3017
  };
2882
3018
  'app.bsky.graph.getList': {
2883
3019
  params: AppBskyGraphGetList.Params;
3020
+ /** @deprecated */
2884
3021
  output: AppBskyGraphGetList.Output;
3022
+ response: { json: AppBskyGraphGetList.Output };
2885
3023
  };
2886
3024
  'app.bsky.graph.getListBlocks': {
2887
3025
  params: AppBskyGraphGetListBlocks.Params;
3026
+ /** @deprecated */
2888
3027
  output: AppBskyGraphGetListBlocks.Output;
3028
+ response: { json: AppBskyGraphGetListBlocks.Output };
2889
3029
  };
2890
3030
  'app.bsky.graph.getListMutes': {
2891
3031
  params: AppBskyGraphGetListMutes.Params;
3032
+ /** @deprecated */
2892
3033
  output: AppBskyGraphGetListMutes.Output;
3034
+ response: { json: AppBskyGraphGetListMutes.Output };
2893
3035
  };
2894
3036
  'app.bsky.graph.getLists': {
2895
3037
  params: AppBskyGraphGetLists.Params;
3038
+ /** @deprecated */
2896
3039
  output: AppBskyGraphGetLists.Output;
3040
+ response: { json: AppBskyGraphGetLists.Output };
2897
3041
  };
2898
3042
  'app.bsky.graph.getMutes': {
2899
3043
  params: AppBskyGraphGetMutes.Params;
3044
+ /** @deprecated */
2900
3045
  output: AppBskyGraphGetMutes.Output;
3046
+ response: { json: AppBskyGraphGetMutes.Output };
2901
3047
  };
2902
3048
  'app.bsky.graph.getRelationships': {
2903
3049
  params: AppBskyGraphGetRelationships.Params;
3050
+ /** @deprecated */
2904
3051
  output: AppBskyGraphGetRelationships.Output;
3052
+ response: { json: AppBskyGraphGetRelationships.Output };
2905
3053
  };
2906
3054
  'app.bsky.graph.getStarterPack': {
2907
3055
  params: AppBskyGraphGetStarterPack.Params;
3056
+ /** @deprecated */
2908
3057
  output: AppBskyGraphGetStarterPack.Output;
3058
+ response: { json: AppBskyGraphGetStarterPack.Output };
2909
3059
  };
2910
3060
  'app.bsky.graph.getStarterPacks': {
2911
3061
  params: AppBskyGraphGetStarterPacks.Params;
3062
+ /** @deprecated */
2912
3063
  output: AppBskyGraphGetStarterPacks.Output;
3064
+ response: { json: AppBskyGraphGetStarterPacks.Output };
2913
3065
  };
2914
3066
  'app.bsky.graph.getSuggestedFollowsByActor': {
2915
3067
  params: AppBskyGraphGetSuggestedFollowsByActor.Params;
3068
+ /** @deprecated */
2916
3069
  output: AppBskyGraphGetSuggestedFollowsByActor.Output;
3070
+ response: { json: AppBskyGraphGetSuggestedFollowsByActor.Output };
2917
3071
  };
2918
3072
  'app.bsky.graph.searchStarterPacks': {
2919
3073
  params: AppBskyGraphSearchStarterPacks.Params;
3074
+ /** @deprecated */
2920
3075
  output: AppBskyGraphSearchStarterPacks.Output;
3076
+ response: { json: AppBskyGraphSearchStarterPacks.Output };
2921
3077
  };
2922
3078
  'app.bsky.labeler.getServices': {
2923
3079
  params: AppBskyLabelerGetServices.Params;
3080
+ /** @deprecated */
2924
3081
  output: AppBskyLabelerGetServices.Output;
3082
+ response: { json: AppBskyLabelerGetServices.Output };
2925
3083
  };
2926
3084
  'app.bsky.notification.getUnreadCount': {
2927
3085
  params: AppBskyNotificationGetUnreadCount.Params;
3086
+ /** @deprecated */
2928
3087
  output: AppBskyNotificationGetUnreadCount.Output;
3088
+ response: { json: AppBskyNotificationGetUnreadCount.Output };
2929
3089
  };
2930
3090
  'app.bsky.notification.listNotifications': {
2931
3091
  params: AppBskyNotificationListNotifications.Params;
3092
+ /** @deprecated */
2932
3093
  output: AppBskyNotificationListNotifications.Output;
3094
+ response: { json: AppBskyNotificationListNotifications.Output };
2933
3095
  };
2934
3096
  'app.bsky.unspecced.getConfig': {
3097
+ /** @deprecated */
2935
3098
  output: AppBskyUnspeccedGetConfig.Output;
3099
+ response: { json: AppBskyUnspeccedGetConfig.Output };
2936
3100
  };
2937
3101
  'app.bsky.unspecced.getPopularFeedGenerators': {
2938
3102
  params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
3103
+ /** @deprecated */
2939
3104
  output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3105
+ response: { json: AppBskyUnspeccedGetPopularFeedGenerators.Output };
2940
3106
  };
2941
3107
  'app.bsky.unspecced.getSuggestionsSkeleton': {
2942
3108
  params: AppBskyUnspeccedGetSuggestionsSkeleton.Params;
3109
+ /** @deprecated */
2943
3110
  output: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3111
+ response: { json: AppBskyUnspeccedGetSuggestionsSkeleton.Output };
2944
3112
  };
2945
3113
  'app.bsky.unspecced.getTaggedSuggestions': {
3114
+ /** @deprecated */
2946
3115
  output: AppBskyUnspeccedGetTaggedSuggestions.Output;
3116
+ response: { json: AppBskyUnspeccedGetTaggedSuggestions.Output };
2947
3117
  };
2948
3118
  'app.bsky.unspecced.getTrendingTopics': {
2949
3119
  params: AppBskyUnspeccedGetTrendingTopics.Params;
3120
+ /** @deprecated */
2950
3121
  output: AppBskyUnspeccedGetTrendingTopics.Output;
3122
+ response: { json: AppBskyUnspeccedGetTrendingTopics.Output };
2951
3123
  };
2952
3124
  'app.bsky.unspecced.searchActorsSkeleton': {
2953
3125
  params: AppBskyUnspeccedSearchActorsSkeleton.Params;
3126
+ /** @deprecated */
2954
3127
  output: AppBskyUnspeccedSearchActorsSkeleton.Output;
3128
+ response: { json: AppBskyUnspeccedSearchActorsSkeleton.Output };
2955
3129
  };
2956
3130
  'app.bsky.unspecced.searchPostsSkeleton': {
2957
3131
  params: AppBskyUnspeccedSearchPostsSkeleton.Params;
3132
+ /** @deprecated */
2958
3133
  output: AppBskyUnspeccedSearchPostsSkeleton.Output;
3134
+ response: { json: AppBskyUnspeccedSearchPostsSkeleton.Output };
2959
3135
  };
2960
3136
  'app.bsky.unspecced.searchStarterPacksSkeleton': {
2961
3137
  params: AppBskyUnspeccedSearchStarterPacksSkeleton.Params;
3138
+ /** @deprecated */
2962
3139
  output: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3140
+ response: { json: AppBskyUnspeccedSearchStarterPacksSkeleton.Output };
2963
3141
  };
2964
3142
  'app.bsky.video.getJobStatus': {
2965
3143
  params: AppBskyVideoGetJobStatus.Params;
3144
+ /** @deprecated */
2966
3145
  output: AppBskyVideoGetJobStatus.Output;
3146
+ response: { json: AppBskyVideoGetJobStatus.Output };
2967
3147
  };
2968
3148
  'app.bsky.video.getUploadLimits': {
3149
+ /** @deprecated */
2969
3150
  output: AppBskyVideoGetUploadLimits.Output;
3151
+ response: { json: AppBskyVideoGetUploadLimits.Output };
2970
3152
  };
2971
3153
  'chat.bsky.actor.exportAccountData': {
3154
+ /** @deprecated */
2972
3155
  output: ChatBskyActorExportAccountData.Output;
3156
+ response: {};
2973
3157
  };
2974
3158
  'chat.bsky.convo.getConvo': {
2975
3159
  params: ChatBskyConvoGetConvo.Params;
3160
+ /** @deprecated */
2976
3161
  output: ChatBskyConvoGetConvo.Output;
3162
+ response: { json: ChatBskyConvoGetConvo.Output };
2977
3163
  };
2978
3164
  'chat.bsky.convo.getConvoAvailability': {
2979
3165
  params: ChatBskyConvoGetConvoAvailability.Params;
3166
+ /** @deprecated */
2980
3167
  output: ChatBskyConvoGetConvoAvailability.Output;
3168
+ response: { json: ChatBskyConvoGetConvoAvailability.Output };
2981
3169
  };
2982
3170
  'chat.bsky.convo.getConvoForMembers': {
2983
3171
  params: ChatBskyConvoGetConvoForMembers.Params;
3172
+ /** @deprecated */
2984
3173
  output: ChatBskyConvoGetConvoForMembers.Output;
3174
+ response: { json: ChatBskyConvoGetConvoForMembers.Output };
2985
3175
  };
2986
3176
  'chat.bsky.convo.getLog': {
2987
3177
  params: ChatBskyConvoGetLog.Params;
3178
+ /** @deprecated */
2988
3179
  output: ChatBskyConvoGetLog.Output;
3180
+ response: { json: ChatBskyConvoGetLog.Output };
2989
3181
  };
2990
3182
  'chat.bsky.convo.getMessages': {
2991
3183
  params: ChatBskyConvoGetMessages.Params;
3184
+ /** @deprecated */
2992
3185
  output: ChatBskyConvoGetMessages.Output;
3186
+ response: { json: ChatBskyConvoGetMessages.Output };
2993
3187
  };
2994
3188
  'chat.bsky.convo.listConvos': {
2995
3189
  params: ChatBskyConvoListConvos.Params;
3190
+ /** @deprecated */
2996
3191
  output: ChatBskyConvoListConvos.Output;
3192
+ response: { json: ChatBskyConvoListConvos.Output };
2997
3193
  };
2998
3194
  'chat.bsky.moderation.getActorMetadata': {
2999
3195
  params: ChatBskyModerationGetActorMetadata.Params;
3196
+ /** @deprecated */
3000
3197
  output: ChatBskyModerationGetActorMetadata.Output;
3198
+ response: { json: ChatBskyModerationGetActorMetadata.Output };
3001
3199
  };
3002
3200
  'chat.bsky.moderation.getMessageContext': {
3003
3201
  params: ChatBskyModerationGetMessageContext.Params;
3202
+ /** @deprecated */
3004
3203
  output: ChatBskyModerationGetMessageContext.Output;
3204
+ response: { json: ChatBskyModerationGetMessageContext.Output };
3005
3205
  };
3006
3206
  }
3007
3207
 
@@ -3011,7 +3211,9 @@ declare module '@atcute/client/lexicons' {
3011
3211
  };
3012
3212
  'app.bsky.feed.sendInteractions': {
3013
3213
  input: AppBskyFeedSendInteractions.Input;
3214
+ /** @deprecated */
3014
3215
  output: AppBskyFeedSendInteractions.Output;
3216
+ response: { json: AppBskyFeedSendInteractions.Output };
3015
3217
  };
3016
3218
  'app.bsky.graph.muteActor': {
3017
3219
  input: AppBskyGraphMuteActor.Input;
@@ -3042,46 +3244,80 @@ declare module '@atcute/client/lexicons' {
3042
3244
  };
3043
3245
  'app.bsky.video.uploadVideo': {
3044
3246
  input: AppBskyVideoUploadVideo.Input;
3247
+ /** @deprecated */
3045
3248
  output: AppBskyVideoUploadVideo.Output;
3249
+ response: { json: AppBskyVideoUploadVideo.Output };
3046
3250
  };
3047
3251
  'chat.bsky.actor.deleteAccount': {
3252
+ /** @deprecated */
3048
3253
  output: ChatBskyActorDeleteAccount.Output;
3254
+ response: { json: ChatBskyActorDeleteAccount.Output };
3049
3255
  };
3050
3256
  'chat.bsky.convo.acceptConvo': {
3051
3257
  input: ChatBskyConvoAcceptConvo.Input;
3258
+ /** @deprecated */
3052
3259
  output: ChatBskyConvoAcceptConvo.Output;
3260
+ response: { json: ChatBskyConvoAcceptConvo.Output };
3261
+ };
3262
+ 'chat.bsky.convo.addReaction': {
3263
+ input: ChatBskyConvoAddReaction.Input;
3264
+ /** @deprecated */
3265
+ output: ChatBskyConvoAddReaction.Output;
3266
+ response: { json: ChatBskyConvoAddReaction.Output };
3053
3267
  };
3054
3268
  'chat.bsky.convo.deleteMessageForSelf': {
3055
3269
  input: ChatBskyConvoDeleteMessageForSelf.Input;
3270
+ /** @deprecated */
3056
3271
  output: ChatBskyConvoDeleteMessageForSelf.Output;
3272
+ response: { json: ChatBskyConvoDeleteMessageForSelf.Output };
3057
3273
  };
3058
3274
  'chat.bsky.convo.leaveConvo': {
3059
3275
  input: ChatBskyConvoLeaveConvo.Input;
3276
+ /** @deprecated */
3060
3277
  output: ChatBskyConvoLeaveConvo.Output;
3278
+ response: { json: ChatBskyConvoLeaveConvo.Output };
3061
3279
  };
3062
3280
  'chat.bsky.convo.muteConvo': {
3063
3281
  input: ChatBskyConvoMuteConvo.Input;
3282
+ /** @deprecated */
3064
3283
  output: ChatBskyConvoMuteConvo.Output;
3284
+ response: { json: ChatBskyConvoMuteConvo.Output };
3285
+ };
3286
+ 'chat.bsky.convo.removeReaction': {
3287
+ input: ChatBskyConvoRemoveReaction.Input;
3288
+ /** @deprecated */
3289
+ output: ChatBskyConvoRemoveReaction.Output;
3290
+ response: { json: ChatBskyConvoRemoveReaction.Output };
3065
3291
  };
3066
3292
  'chat.bsky.convo.sendMessage': {
3067
3293
  input: ChatBskyConvoSendMessage.Input;
3294
+ /** @deprecated */
3068
3295
  output: ChatBskyConvoSendMessage.Output;
3296
+ response: { json: ChatBskyConvoSendMessage.Output };
3069
3297
  };
3070
3298
  'chat.bsky.convo.sendMessageBatch': {
3071
3299
  input: ChatBskyConvoSendMessageBatch.Input;
3300
+ /** @deprecated */
3072
3301
  output: ChatBskyConvoSendMessageBatch.Output;
3302
+ response: { json: ChatBskyConvoSendMessageBatch.Output };
3073
3303
  };
3074
3304
  'chat.bsky.convo.unmuteConvo': {
3075
3305
  input: ChatBskyConvoUnmuteConvo.Input;
3306
+ /** @deprecated */
3076
3307
  output: ChatBskyConvoUnmuteConvo.Output;
3308
+ response: { json: ChatBskyConvoUnmuteConvo.Output };
3077
3309
  };
3078
3310
  'chat.bsky.convo.updateAllRead': {
3079
3311
  input: ChatBskyConvoUpdateAllRead.Input;
3312
+ /** @deprecated */
3080
3313
  output: ChatBskyConvoUpdateAllRead.Output;
3314
+ response: { json: ChatBskyConvoUpdateAllRead.Output };
3081
3315
  };
3082
3316
  'chat.bsky.convo.updateRead': {
3083
3317
  input: ChatBskyConvoUpdateRead.Input;
3318
+ /** @deprecated */
3084
3319
  output: ChatBskyConvoUpdateRead.Output;
3320
+ response: { json: ChatBskyConvoUpdateRead.Output };
3085
3321
  };
3086
3322
  'chat.bsky.moderation.updateActorAccess': {
3087
3323
  input: ChatBskyModerationUpdateActorAccess.Input;