@atcute/bluesky 1.0.14 → 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.
@@ -37,7 +37,7 @@ declare module '@atcute/client/lexicons' {
37
37
  label: string;
38
38
  visibility: 'hide' | 'ignore' | 'show' | 'warn' | (string & {});
39
39
  /** Which labeler does this preference apply to? If undefined, applies globally. */
40
- labelerDid?: At.DID;
40
+ labelerDid?: At.Did;
41
41
  }
42
42
  interface FeedViewPref {
43
43
  [Brand.Type]?: 'app.bsky.actor.defs#feedViewPref';
@@ -60,7 +60,7 @@ declare module '@atcute/client/lexicons' {
60
60
  interface HiddenPostsPref {
61
61
  [Brand.Type]?: 'app.bsky.actor.defs#hiddenPostsPref';
62
62
  /** A list of URIs of posts the account owner has hidden. */
63
- items: At.Uri[];
63
+ items: At.ResourceUri[];
64
64
  }
65
65
  interface InterestsPref {
66
66
  [Brand.Type]?: 'app.bsky.actor.defs#interestsPref';
@@ -84,7 +84,7 @@ declare module '@atcute/client/lexicons' {
84
84
  }
85
85
  interface LabelerPrefItem {
86
86
  [Brand.Type]?: 'app.bsky.actor.defs#labelerPrefItem';
87
- did: At.DID;
87
+ did: At.Did;
88
88
  }
89
89
  interface LabelersPref {
90
90
  [Brand.Type]?: 'app.bsky.actor.defs#labelersPref';
@@ -170,10 +170,10 @@ declare module '@atcute/client/lexicons' {
170
170
  }
171
171
  interface ProfileView {
172
172
  [Brand.Type]?: 'app.bsky.actor.defs#profileView';
173
- did: At.DID;
173
+ did: At.Did;
174
174
  handle: At.Handle;
175
175
  associated?: ProfileAssociated;
176
- avatar?: string;
176
+ avatar?: At.GenericUri;
177
177
  createdAt?: string;
178
178
  /**
179
179
  * Maximum string length: 2560 \
@@ -191,10 +191,10 @@ declare module '@atcute/client/lexicons' {
191
191
  }
192
192
  interface ProfileViewBasic {
193
193
  [Brand.Type]?: 'app.bsky.actor.defs#profileViewBasic';
194
- did: At.DID;
194
+ did: At.Did;
195
195
  handle: At.Handle;
196
196
  associated?: ProfileAssociated;
197
- avatar?: string;
197
+ avatar?: At.GenericUri;
198
198
  createdAt?: string;
199
199
  /**
200
200
  * Maximum string length: 640 \
@@ -206,11 +206,11 @@ declare module '@atcute/client/lexicons' {
206
206
  }
207
207
  interface ProfileViewDetailed {
208
208
  [Brand.Type]?: 'app.bsky.actor.defs#profileViewDetailed';
209
- did: At.DID;
209
+ did: At.Did;
210
210
  handle: At.Handle;
211
211
  associated?: ProfileAssociated;
212
- avatar?: string;
213
- banner?: string;
212
+ avatar?: At.GenericUri;
213
+ banner?: At.GenericUri;
214
214
  createdAt?: string;
215
215
  /**
216
216
  * Maximum string length: 2560 \
@@ -240,8 +240,8 @@ declare module '@atcute/client/lexicons' {
240
240
  }
241
241
  interface SavedFeedsPref {
242
242
  [Brand.Type]?: 'app.bsky.actor.defs#savedFeedsPref';
243
- pinned: At.Uri[];
244
- saved: At.Uri[];
243
+ pinned: At.ResourceUri[];
244
+ saved: At.ResourceUri[];
245
245
  timelineIndex?: number;
246
246
  }
247
247
  interface SavedFeedsPrefV2 {
@@ -259,10 +259,10 @@ declare module '@atcute/client/lexicons' {
259
259
  interface ViewerState {
260
260
  [Brand.Type]?: 'app.bsky.actor.defs#viewerState';
261
261
  blockedBy?: boolean;
262
- blocking?: At.Uri;
262
+ blocking?: At.ResourceUri;
263
263
  blockingByList?: AppBskyGraphDefs.ListViewBasic;
264
- followedBy?: At.Uri;
265
- following?: At.Uri;
264
+ followedBy?: At.ResourceUri;
265
+ following?: At.ResourceUri;
266
266
  knownFollowers?: KnownFollowers;
267
267
  muted?: boolean;
268
268
  mutedByList?: AppBskyGraphDefs.ListViewBasic;
@@ -279,7 +279,7 @@ declare module '@atcute/client/lexicons' {
279
279
  namespace AppBskyActorGetProfile {
280
280
  interface Params {
281
281
  /** Handle or DID of account to fetch profile of. */
282
- actor: string;
282
+ actor: At.Identifier;
283
283
  }
284
284
  type Input = undefined;
285
285
  type Output = AppBskyActorDefs.ProfileViewDetailed;
@@ -288,7 +288,7 @@ declare module '@atcute/client/lexicons' {
288
288
  namespace AppBskyActorGetProfiles {
289
289
  interface Params {
290
290
  /** Maximum array length: 25 */
291
- actors: string[];
291
+ actors: At.Identifier[];
292
292
  }
293
293
  type Input = undefined;
294
294
  interface Output {
@@ -415,7 +415,7 @@ declare module '@atcute/client/lexicons' {
415
415
  [Brand.Type]?: 'app.bsky.embed.external#external';
416
416
  description: string;
417
417
  title: string;
418
- uri: string;
418
+ uri: At.GenericUri;
419
419
  thumb?: At.Blob;
420
420
  }
421
421
  interface View {
@@ -426,8 +426,8 @@ declare module '@atcute/client/lexicons' {
426
426
  [Brand.Type]?: 'app.bsky.embed.external#viewExternal';
427
427
  description: string;
428
428
  title: string;
429
- uri: string;
430
- thumb?: string;
429
+ uri: At.GenericUri;
430
+ thumb?: At.GenericUri;
431
431
  }
432
432
  }
433
433
  namespace AppBskyEmbedImages {
@@ -453,9 +453,9 @@ declare module '@atcute/client/lexicons' {
453
453
  /** Alt text description of the image, for accessibility. */
454
454
  alt: string;
455
455
  /** 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. */
456
- fullsize: string;
456
+ fullsize: At.GenericUri;
457
457
  /** Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View. */
458
- thumb: string;
458
+ thumb: At.GenericUri;
459
459
  aspectRatio?: AppBskyEmbedDefs.AspectRatio;
460
460
  }
461
461
  }
@@ -472,24 +472,24 @@ declare module '@atcute/client/lexicons' {
472
472
  [Brand.Type]?: 'app.bsky.embed.record#viewBlocked';
473
473
  author: AppBskyFeedDefs.BlockedAuthor;
474
474
  blocked: boolean;
475
- uri: At.Uri;
475
+ uri: At.ResourceUri;
476
476
  }
477
477
  interface ViewDetached {
478
478
  [Brand.Type]?: 'app.bsky.embed.record#viewDetached';
479
479
  detached: boolean;
480
- uri: At.Uri;
480
+ uri: At.ResourceUri;
481
481
  }
482
482
  interface ViewNotFound {
483
483
  [Brand.Type]?: 'app.bsky.embed.record#viewNotFound';
484
484
  notFound: boolean;
485
- uri: At.Uri;
485
+ uri: At.ResourceUri;
486
486
  }
487
487
  interface ViewRecord {
488
488
  [Brand.Type]?: 'app.bsky.embed.record#viewRecord';
489
489
  author: AppBskyActorDefs.ProfileViewBasic;
490
- cid: At.CID;
490
+ cid: At.Cid;
491
491
  indexedAt: string;
492
- uri: At.Uri;
492
+ uri: At.ResourceUri;
493
493
  /** The record data itself. */
494
494
  value: unknown;
495
495
  embeds?: Brand.Union<AppBskyEmbedExternal.View | AppBskyEmbedImages.View | AppBskyEmbedRecord.View | AppBskyEmbedRecordWithMedia.View | AppBskyEmbedVideo.View>[];
@@ -515,6 +515,7 @@ declare module '@atcute/client/lexicons' {
515
515
  namespace AppBskyEmbedVideo {
516
516
  interface Main {
517
517
  [Brand.Type]?: 'app.bsky.embed.video';
518
+ /** The mp4 video file. May be up to 100mb, formerly limited to 50mb. */
518
519
  video: At.Blob;
519
520
  /**
520
521
  * Alt text description of the video, for accessibility. \
@@ -533,28 +534,28 @@ declare module '@atcute/client/lexicons' {
533
534
  }
534
535
  interface View {
535
536
  [Brand.Type]?: 'app.bsky.embed.video#view';
536
- cid: At.CID;
537
- playlist: string;
537
+ cid: At.Cid;
538
+ playlist: At.GenericUri;
538
539
  /**
539
540
  * Maximum string length: 10000 \
540
541
  * Maximum grapheme length: 1000
541
542
  */
542
543
  alt?: string;
543
544
  aspectRatio?: AppBskyEmbedDefs.AspectRatio;
544
- thumbnail?: string;
545
+ thumbnail?: At.GenericUri;
545
546
  }
546
547
  }
547
548
  namespace AppBskyFeedDefs {
548
549
  interface BlockedAuthor {
549
550
  [Brand.Type]?: 'app.bsky.feed.defs#blockedAuthor';
550
- did: At.DID;
551
+ did: At.Did;
551
552
  viewer?: AppBskyActorDefs.ViewerState;
552
553
  }
553
554
  interface BlockedPost {
554
555
  [Brand.Type]?: 'app.bsky.feed.defs#blockedPost';
555
556
  author: BlockedAuthor;
556
557
  blocked: boolean;
557
- uri: At.Uri;
558
+ uri: At.ResourceUri;
558
559
  }
559
560
  type ClickthroughAuthor = 'app.bsky.feed.defs#clickthroughAuthor';
560
561
  type ClickthroughEmbed = 'app.bsky.feed.defs#clickthroughEmbed';
@@ -575,14 +576,14 @@ declare module '@atcute/client/lexicons' {
575
576
  }
576
577
  interface GeneratorView {
577
578
  [Brand.Type]?: 'app.bsky.feed.defs#generatorView';
578
- cid: At.CID;
579
+ cid: At.Cid;
579
580
  creator: AppBskyActorDefs.ProfileView;
580
- did: At.DID;
581
+ did: At.Did;
581
582
  displayName: string;
582
583
  indexedAt: string;
583
- uri: At.Uri;
584
+ uri: At.ResourceUri;
584
585
  acceptsInteractions?: boolean;
585
- avatar?: string;
586
+ avatar?: At.GenericUri;
586
587
  contentMode?: 'app.bsky.feed.defs#contentModeUnspecified' | 'app.bsky.feed.defs#contentModeVideo' | (string & {});
587
588
  /**
588
589
  * Maximum string length: 3000 \
@@ -597,7 +598,7 @@ declare module '@atcute/client/lexicons' {
597
598
  }
598
599
  interface GeneratorViewerState {
599
600
  [Brand.Type]?: 'app.bsky.feed.defs#generatorViewerState';
600
- like?: At.Uri;
601
+ like?: At.ResourceUri;
601
602
  }
602
603
  interface Interaction {
603
604
  [Brand.Type]?: 'app.bsky.feed.defs#interaction';
@@ -607,7 +608,7 @@ declare module '@atcute/client/lexicons' {
607
608
  * Maximum string length: 2000
608
609
  */
609
610
  feedContext?: string;
610
- item?: At.Uri;
611
+ item?: At.ResourceUri;
611
612
  }
612
613
  type InteractionLike = 'app.bsky.feed.defs#interactionLike';
613
614
  type InteractionQuote = 'app.bsky.feed.defs#interactionQuote';
@@ -618,15 +619,15 @@ declare module '@atcute/client/lexicons' {
618
619
  interface NotFoundPost {
619
620
  [Brand.Type]?: 'app.bsky.feed.defs#notFoundPost';
620
621
  notFound: boolean;
621
- uri: At.Uri;
622
+ uri: At.ResourceUri;
622
623
  }
623
624
  interface PostView {
624
625
  [Brand.Type]?: 'app.bsky.feed.defs#postView';
625
626
  author: AppBskyActorDefs.ProfileViewBasic;
626
- cid: At.CID;
627
+ cid: At.Cid;
627
628
  indexedAt: string;
628
629
  record: unknown;
629
- uri: At.Uri;
630
+ uri: At.ResourceUri;
630
631
  embed?: Brand.Union<AppBskyEmbedExternal.View | AppBskyEmbedImages.View | AppBskyEmbedRecord.View | AppBskyEmbedRecordWithMedia.View | AppBskyEmbedVideo.View>;
631
632
  labels?: ComAtprotoLabelDefs.Label[];
632
633
  likeCount?: number;
@@ -655,7 +656,7 @@ declare module '@atcute/client/lexicons' {
655
656
  type RequestMore = 'app.bsky.feed.defs#requestMore';
656
657
  interface SkeletonFeedPost {
657
658
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonFeedPost';
658
- post: At.Uri;
659
+ post: At.ResourceUri;
659
660
  /**
660
661
  * Context that will be passed through to client and may be passed to feed generator back alongside interactions. \
661
662
  * Maximum string length: 2000
@@ -668,19 +669,19 @@ declare module '@atcute/client/lexicons' {
668
669
  }
669
670
  interface SkeletonReasonRepost {
670
671
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonReasonRepost';
671
- repost: At.Uri;
672
+ repost: At.ResourceUri;
672
673
  }
673
674
  /** Metadata about this post within the context of the thread it is in. */
674
675
  interface ThreadContext {
675
676
  [Brand.Type]?: 'app.bsky.feed.defs#threadContext';
676
- rootAuthorLike?: At.Uri;
677
+ rootAuthorLike?: At.ResourceUri;
677
678
  }
678
679
  interface ThreadgateView {
679
680
  [Brand.Type]?: 'app.bsky.feed.defs#threadgateView';
680
- cid?: At.CID;
681
+ cid?: At.Cid;
681
682
  lists?: AppBskyGraphDefs.ListViewBasic[];
682
683
  record?: unknown;
683
- uri?: At.Uri;
684
+ uri?: At.ResourceUri;
684
685
  }
685
686
  interface ThreadViewPost {
686
687
  [Brand.Type]?: 'app.bsky.feed.defs#threadViewPost';
@@ -693,10 +694,10 @@ declare module '@atcute/client/lexicons' {
693
694
  interface ViewerState {
694
695
  [Brand.Type]?: 'app.bsky.feed.defs#viewerState';
695
696
  embeddingDisabled?: boolean;
696
- like?: At.Uri;
697
+ like?: At.ResourceUri;
697
698
  pinned?: boolean;
698
699
  replyDisabled?: boolean;
699
- repost?: At.Uri;
700
+ repost?: At.ResourceUri;
700
701
  threadMuted?: boolean;
701
702
  }
702
703
  }
@@ -706,13 +707,13 @@ declare module '@atcute/client/lexicons' {
706
707
  }
707
708
  type Input = undefined;
708
709
  interface Output {
709
- did: At.DID;
710
+ did: At.Did;
710
711
  feeds: Feed[];
711
712
  links?: Links;
712
713
  }
713
714
  interface Feed {
714
715
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#feed';
715
- uri: At.Uri;
716
+ uri: At.ResourceUri;
716
717
  }
717
718
  interface Links {
718
719
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#links';
@@ -725,7 +726,7 @@ declare module '@atcute/client/lexicons' {
725
726
  interface Record {
726
727
  $type: 'app.bsky.feed.generator';
727
728
  createdAt: string;
728
- did: At.DID;
729
+ did: At.Did;
729
730
  /**
730
731
  * Maximum string length: 240 \
731
732
  * Maximum grapheme length: 24
@@ -748,7 +749,7 @@ declare module '@atcute/client/lexicons' {
748
749
  /** Get a list of feeds (feed generator records) created by the actor (in the actor's repo). */
749
750
  namespace AppBskyFeedGetActorFeeds {
750
751
  interface Params {
751
- actor: string;
752
+ actor: At.Identifier;
752
753
  cursor?: string;
753
754
  /**
754
755
  * Minimum: 1 \
@@ -766,7 +767,7 @@ declare module '@atcute/client/lexicons' {
766
767
  /** Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. */
767
768
  namespace AppBskyFeedGetActorLikes {
768
769
  interface Params {
769
- actor: string;
770
+ actor: At.Identifier;
770
771
  cursor?: string;
771
772
  /**
772
773
  * Minimum: 1 \
@@ -788,7 +789,7 @@ declare module '@atcute/client/lexicons' {
788
789
  /** Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. */
789
790
  namespace AppBskyFeedGetAuthorFeed {
790
791
  interface Params {
791
- actor: string;
792
+ actor: At.Identifier;
792
793
  cursor?: string;
793
794
  /**
794
795
  * Combinations of post/repost types to include in response.
@@ -817,7 +818,7 @@ declare module '@atcute/client/lexicons' {
817
818
  /** Get a hydrated feed from an actor's selected feed generator. Implemented by App View. */
818
819
  namespace AppBskyFeedGetFeed {
819
820
  interface Params {
820
- feed: At.Uri;
821
+ feed: At.ResourceUri;
821
822
  cursor?: string;
822
823
  /**
823
824
  * Minimum: 1 \
@@ -839,7 +840,7 @@ declare module '@atcute/client/lexicons' {
839
840
  namespace AppBskyFeedGetFeedGenerator {
840
841
  interface Params {
841
842
  /** AT-URI of the feed generator record. */
842
- feed: At.Uri;
843
+ feed: At.ResourceUri;
843
844
  }
844
845
  type Input = undefined;
845
846
  interface Output {
@@ -853,7 +854,7 @@ declare module '@atcute/client/lexicons' {
853
854
  /** Get information about a list of feed generators. */
854
855
  namespace AppBskyFeedGetFeedGenerators {
855
856
  interface Params {
856
- feeds: At.Uri[];
857
+ feeds: At.ResourceUri[];
857
858
  }
858
859
  type Input = undefined;
859
860
  interface Output {
@@ -864,7 +865,7 @@ declare module '@atcute/client/lexicons' {
864
865
  namespace AppBskyFeedGetFeedSkeleton {
865
866
  interface Params {
866
867
  /** Reference to feed generator record describing the specific feed being requested. */
867
- feed: At.Uri;
868
+ feed: At.ResourceUri;
868
869
  cursor?: string;
869
870
  /**
870
871
  * Minimum: 1 \
@@ -886,9 +887,9 @@ declare module '@atcute/client/lexicons' {
886
887
  namespace AppBskyFeedGetLikes {
887
888
  interface Params {
888
889
  /** AT-URI of the subject (eg, a post record). */
889
- uri: At.Uri;
890
+ uri: At.ResourceUri;
890
891
  /** CID of the subject record (aka, specific version of record), to filter likes. */
891
- cid?: At.CID;
892
+ cid?: At.Cid;
892
893
  cursor?: string;
893
894
  /**
894
895
  * Minimum: 1 \
@@ -900,8 +901,8 @@ declare module '@atcute/client/lexicons' {
900
901
  type Input = undefined;
901
902
  interface Output {
902
903
  likes: Like[];
903
- uri: At.Uri;
904
- cid?: At.CID;
904
+ uri: At.ResourceUri;
905
+ cid?: At.Cid;
905
906
  cursor?: string;
906
907
  }
907
908
  interface Like {
@@ -915,7 +916,7 @@ declare module '@atcute/client/lexicons' {
915
916
  namespace AppBskyFeedGetListFeed {
916
917
  interface Params {
917
918
  /** Reference (AT-URI) to the list record. */
918
- list: At.Uri;
919
+ list: At.ResourceUri;
919
920
  cursor?: string;
920
921
  /**
921
922
  * Minimum: 1 \
@@ -940,7 +941,7 @@ declare module '@atcute/client/lexicons' {
940
941
  * List of post AT-URIs to return hydrated views for. \
941
942
  * Maximum array length: 25
942
943
  */
943
- uris: At.Uri[];
944
+ uris: At.ResourceUri[];
944
945
  }
945
946
  type Input = undefined;
946
947
  interface Output {
@@ -951,7 +952,7 @@ declare module '@atcute/client/lexicons' {
951
952
  namespace AppBskyFeedGetPostThread {
952
953
  interface Params {
953
954
  /** Reference (AT-URI) to post record. */
954
- uri: At.Uri;
955
+ uri: At.ResourceUri;
955
956
  /**
956
957
  * How many levels of reply depth should be included in response. \
957
958
  * Minimum: 0 \
@@ -980,9 +981,9 @@ declare module '@atcute/client/lexicons' {
980
981
  namespace AppBskyFeedGetQuotes {
981
982
  interface Params {
982
983
  /** Reference (AT-URI) of post record */
983
- uri: At.Uri;
984
+ uri: At.ResourceUri;
984
985
  /** If supplied, filters to quotes of specific version (by CID) of the post record. */
985
- cid?: At.CID;
986
+ cid?: At.Cid;
986
987
  cursor?: string;
987
988
  /**
988
989
  * Minimum: 1 \
@@ -994,8 +995,8 @@ declare module '@atcute/client/lexicons' {
994
995
  type Input = undefined;
995
996
  interface Output {
996
997
  posts: AppBskyFeedDefs.PostView[];
997
- uri: At.Uri;
998
- cid?: At.CID;
998
+ uri: At.ResourceUri;
999
+ cid?: At.Cid;
999
1000
  cursor?: string;
1000
1001
  }
1001
1002
  }
@@ -1003,9 +1004,9 @@ declare module '@atcute/client/lexicons' {
1003
1004
  namespace AppBskyFeedGetRepostedBy {
1004
1005
  interface Params {
1005
1006
  /** Reference (AT-URI) of post record */
1006
- uri: At.Uri;
1007
+ uri: At.ResourceUri;
1007
1008
  /** If supplied, filters to reposts of specific version (by CID) of the post record. */
1008
- cid?: At.CID;
1009
+ cid?: At.Cid;
1009
1010
  cursor?: string;
1010
1011
  /**
1011
1012
  * Minimum: 1 \
@@ -1017,8 +1018,8 @@ declare module '@atcute/client/lexicons' {
1017
1018
  type Input = undefined;
1018
1019
  interface Output {
1019
1020
  repostedBy: AppBskyActorDefs.ProfileView[];
1020
- uri: At.Uri;
1021
- cid?: At.CID;
1021
+ uri: At.ResourceUri;
1022
+ cid?: At.Cid;
1022
1023
  cursor?: string;
1023
1024
  }
1024
1025
  }
@@ -1136,12 +1137,12 @@ declare module '@atcute/client/lexicons' {
1136
1137
  $type: 'app.bsky.feed.postgate';
1137
1138
  createdAt: string;
1138
1139
  /** Reference (AT-URI) to the post record. */
1139
- post: At.Uri;
1140
+ post: At.ResourceUri;
1140
1141
  /**
1141
1142
  * List of AT-URIs embedding this post that the author has detached from. \
1142
1143
  * Maximum array length: 50
1143
1144
  */
1144
- detachedEmbeddingUris?: At.Uri[];
1145
+ detachedEmbeddingUris?: At.ResourceUri[];
1145
1146
  /**
1146
1147
  * 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. \
1147
1148
  * Maximum array length: 5
@@ -1167,7 +1168,7 @@ declare module '@atcute/client/lexicons' {
1167
1168
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
1168
1169
  q: string;
1169
1170
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
1170
- author?: string;
1171
+ author?: At.Identifier;
1171
1172
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
1172
1173
  cursor?: string;
1173
1174
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -1181,7 +1182,7 @@ declare module '@atcute/client/lexicons' {
1181
1182
  */
1182
1183
  limit?: number;
1183
1184
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
1184
- mentions?: string;
1185
+ mentions?: At.Identifier;
1185
1186
  /** 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). */
1186
1187
  since?: string;
1187
1188
  /**
@@ -1198,7 +1199,7 @@ declare module '@atcute/client/lexicons' {
1198
1199
  /** 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). */
1199
1200
  until?: string;
1200
1201
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
1201
- url?: string;
1202
+ url?: At.GenericUri;
1202
1203
  }
1203
1204
  type Input = undefined;
1204
1205
  interface Output {
@@ -1227,7 +1228,7 @@ declare module '@atcute/client/lexicons' {
1227
1228
  $type: 'app.bsky.feed.threadgate';
1228
1229
  createdAt: string;
1229
1230
  /** Reference (AT-URI) to the post record. */
1230
- post: At.Uri;
1231
+ post: At.ResourceUri;
1231
1232
  /**
1232
1233
  * 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. \
1233
1234
  * Maximum array length: 5
@@ -1237,7 +1238,7 @@ declare module '@atcute/client/lexicons' {
1237
1238
  * List of hidden reply URIs. \
1238
1239
  * Maximum array length: 50
1239
1240
  */
1240
- hiddenReplies?: At.Uri[];
1241
+ hiddenReplies?: At.ResourceUri[];
1241
1242
  }
1242
1243
  /** Allow replies from actors who follow you. */
1243
1244
  interface FollowerRule {
@@ -1250,7 +1251,7 @@ declare module '@atcute/client/lexicons' {
1250
1251
  /** Allow replies from actors on a list. */
1251
1252
  interface ListRule {
1252
1253
  [Brand.Type]?: 'app.bsky.feed.threadgate#listRule';
1253
- list: At.Uri;
1254
+ list: At.ResourceUri;
1254
1255
  }
1255
1256
  /** Allow replies from actors mentioned in your post. */
1256
1257
  interface MentionRule {
@@ -1263,7 +1264,7 @@ declare module '@atcute/client/lexicons' {
1263
1264
  $type: 'app.bsky.graph.block';
1264
1265
  createdAt: string;
1265
1266
  /** DID of the account to be blocked. */
1266
- subject: At.DID;
1267
+ subject: At.Did;
1267
1268
  }
1268
1269
  }
1269
1270
  namespace AppBskyGraphDefs {
@@ -1271,12 +1272,12 @@ declare module '@atcute/client/lexicons' {
1271
1272
  interface ListItemView {
1272
1273
  [Brand.Type]?: 'app.bsky.graph.defs#listItemView';
1273
1274
  subject: AppBskyActorDefs.ProfileView;
1274
- uri: At.Uri;
1275
+ uri: At.ResourceUri;
1275
1276
  }
1276
1277
  type ListPurpose = 'app.bsky.graph.defs#curatelist' | 'app.bsky.graph.defs#modlist' | 'app.bsky.graph.defs#referencelist' | (string & {});
1277
1278
  interface ListView {
1278
1279
  [Brand.Type]?: 'app.bsky.graph.defs#listView';
1279
- cid: At.CID;
1280
+ cid: At.Cid;
1280
1281
  creator: AppBskyActorDefs.ProfileView;
1281
1282
  indexedAt: string;
1282
1283
  /**
@@ -1285,8 +1286,8 @@ declare module '@atcute/client/lexicons' {
1285
1286
  */
1286
1287
  name: string;
1287
1288
  purpose: ListPurpose;
1288
- uri: At.Uri;
1289
- avatar?: string;
1289
+ uri: At.ResourceUri;
1290
+ avatar?: At.GenericUri;
1290
1291
  /**
1291
1292
  * Maximum string length: 3000 \
1292
1293
  * Maximum grapheme length: 300
@@ -1300,15 +1301,15 @@ declare module '@atcute/client/lexicons' {
1300
1301
  }
1301
1302
  interface ListViewBasic {
1302
1303
  [Brand.Type]?: 'app.bsky.graph.defs#listViewBasic';
1303
- cid: At.CID;
1304
+ cid: At.Cid;
1304
1305
  /**
1305
1306
  * Minimum string length: 1 \
1306
1307
  * Maximum string length: 64
1307
1308
  */
1308
1309
  name: string;
1309
1310
  purpose: ListPurpose;
1310
- uri: At.Uri;
1311
- avatar?: string;
1311
+ uri: At.ResourceUri;
1312
+ avatar?: At.GenericUri;
1312
1313
  indexedAt?: string;
1313
1314
  labels?: ComAtprotoLabelDefs.Label[];
1314
1315
  /** Minimum: 0 */
@@ -1317,33 +1318,33 @@ declare module '@atcute/client/lexicons' {
1317
1318
  }
1318
1319
  interface ListViewerState {
1319
1320
  [Brand.Type]?: 'app.bsky.graph.defs#listViewerState';
1320
- blocked?: At.Uri;
1321
+ blocked?: At.ResourceUri;
1321
1322
  muted?: boolean;
1322
1323
  }
1323
1324
  type Modlist = 'app.bsky.graph.defs#modlist';
1324
1325
  /** indicates that a handle or DID could not be resolved */
1325
1326
  interface NotFoundActor {
1326
1327
  [Brand.Type]?: 'app.bsky.graph.defs#notFoundActor';
1327
- actor: string;
1328
+ actor: At.Identifier;
1328
1329
  notFound: boolean;
1329
1330
  }
1330
1331
  type Referencelist = 'app.bsky.graph.defs#referencelist';
1331
1332
  /** lists the bi-directional graph relationships between one actor (not indicated in the object), and the target actors (the DID included in the object) */
1332
1333
  interface Relationship {
1333
1334
  [Brand.Type]?: 'app.bsky.graph.defs#relationship';
1334
- did: At.DID;
1335
+ did: At.Did;
1335
1336
  /** if the actor is followed by this DID, contains the AT-URI of the follow record */
1336
- followedBy?: At.Uri;
1337
+ followedBy?: At.ResourceUri;
1337
1338
  /** if the actor follows this DID, this is the AT-URI of the follow record */
1338
- following?: At.Uri;
1339
+ following?: At.ResourceUri;
1339
1340
  }
1340
1341
  interface StarterPackView {
1341
1342
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackView';
1342
- cid: At.CID;
1343
+ cid: At.Cid;
1343
1344
  creator: AppBskyActorDefs.ProfileViewBasic;
1344
1345
  indexedAt: string;
1345
1346
  record: unknown;
1346
- uri: At.Uri;
1347
+ uri: At.ResourceUri;
1347
1348
  /** Maximum array length: 3 */
1348
1349
  feeds?: AppBskyFeedDefs.GeneratorView[];
1349
1350
  /** Minimum: 0 */
@@ -1357,11 +1358,11 @@ declare module '@atcute/client/lexicons' {
1357
1358
  }
1358
1359
  interface StarterPackViewBasic {
1359
1360
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackViewBasic';
1360
- cid: At.CID;
1361
+ cid: At.Cid;
1361
1362
  creator: AppBskyActorDefs.ProfileViewBasic;
1362
1363
  indexedAt: string;
1363
1364
  record: unknown;
1364
- uri: At.Uri;
1365
+ uri: At.ResourceUri;
1365
1366
  /** Minimum: 0 */
1366
1367
  joinedAllTimeCount?: number;
1367
1368
  /** Minimum: 0 */
@@ -1376,13 +1377,13 @@ declare module '@atcute/client/lexicons' {
1376
1377
  interface Record {
1377
1378
  $type: 'app.bsky.graph.follow';
1378
1379
  createdAt: string;
1379
- subject: At.DID;
1380
+ subject: At.Did;
1380
1381
  }
1381
1382
  }
1382
1383
  /** Get a list of starter packs created by the actor. */
1383
1384
  namespace AppBskyGraphGetActorStarterPacks {
1384
1385
  interface Params {
1385
- actor: string;
1386
+ actor: At.Identifier;
1386
1387
  cursor?: string;
1387
1388
  /**
1388
1389
  * Minimum: 1 \
@@ -1417,7 +1418,7 @@ declare module '@atcute/client/lexicons' {
1417
1418
  /** Enumerates accounts which follow a specified account (actor). */
1418
1419
  namespace AppBskyGraphGetFollowers {
1419
1420
  interface Params {
1420
- actor: string;
1421
+ actor: At.Identifier;
1421
1422
  cursor?: string;
1422
1423
  /**
1423
1424
  * Minimum: 1 \
@@ -1436,7 +1437,7 @@ declare module '@atcute/client/lexicons' {
1436
1437
  /** Enumerates accounts which a specified account (actor) follows. */
1437
1438
  namespace AppBskyGraphGetFollows {
1438
1439
  interface Params {
1439
- actor: string;
1440
+ actor: At.Identifier;
1440
1441
  cursor?: string;
1441
1442
  /**
1442
1443
  * Minimum: 1 \
@@ -1455,7 +1456,7 @@ declare module '@atcute/client/lexicons' {
1455
1456
  /** Enumerates accounts which follow a specified account (actor) and are followed by the viewer. */
1456
1457
  namespace AppBskyGraphGetKnownFollowers {
1457
1458
  interface Params {
1458
- actor: string;
1459
+ actor: At.Identifier;
1459
1460
  cursor?: string;
1460
1461
  /**
1461
1462
  * Minimum: 1 \
@@ -1475,7 +1476,7 @@ declare module '@atcute/client/lexicons' {
1475
1476
  namespace AppBskyGraphGetList {
1476
1477
  interface Params {
1477
1478
  /** Reference (AT-URI) of the list record to hydrate. */
1478
- list: At.Uri;
1479
+ list: At.ResourceUri;
1479
1480
  cursor?: string;
1480
1481
  /**
1481
1482
  * Minimum: 1 \
@@ -1529,7 +1530,7 @@ declare module '@atcute/client/lexicons' {
1529
1530
  namespace AppBskyGraphGetLists {
1530
1531
  interface Params {
1531
1532
  /** The account (actor) to enumerate lists from. */
1532
- actor: string;
1533
+ actor: At.Identifier;
1533
1534
  cursor?: string;
1534
1535
  /**
1535
1536
  * Minimum: 1 \
@@ -1565,17 +1566,17 @@ declare module '@atcute/client/lexicons' {
1565
1566
  namespace AppBskyGraphGetRelationships {
1566
1567
  interface Params {
1567
1568
  /** Primary account requesting relationships for. */
1568
- actor: string;
1569
+ actor: At.Identifier;
1569
1570
  /**
1570
1571
  * List of 'other' accounts to be related back to the primary. \
1571
1572
  * Maximum array length: 30
1572
1573
  */
1573
- others?: string[];
1574
+ others?: At.Identifier[];
1574
1575
  }
1575
1576
  type Input = undefined;
1576
1577
  interface Output {
1577
1578
  relationships: Brand.Union<AppBskyGraphDefs.NotFoundActor | AppBskyGraphDefs.Relationship>[];
1578
- actor?: At.DID;
1579
+ actor?: At.Did;
1579
1580
  }
1580
1581
  interface Errors {
1581
1582
  ActorNotFound: {};
@@ -1585,7 +1586,7 @@ declare module '@atcute/client/lexicons' {
1585
1586
  namespace AppBskyGraphGetStarterPack {
1586
1587
  interface Params {
1587
1588
  /** Reference (AT-URI) of the starter pack record. */
1588
- starterPack: At.Uri;
1589
+ starterPack: At.ResourceUri;
1589
1590
  }
1590
1591
  type Input = undefined;
1591
1592
  interface Output {
@@ -1596,7 +1597,7 @@ declare module '@atcute/client/lexicons' {
1596
1597
  namespace AppBskyGraphGetStarterPacks {
1597
1598
  interface Params {
1598
1599
  /** Maximum array length: 25 */
1599
- uris: At.Uri[];
1600
+ uris: At.ResourceUri[];
1600
1601
  }
1601
1602
  type Input = undefined;
1602
1603
  interface Output {
@@ -1606,7 +1607,7 @@ declare module '@atcute/client/lexicons' {
1606
1607
  /** Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account. */
1607
1608
  namespace AppBskyGraphGetSuggestedFollowsByActor {
1608
1609
  interface Params {
1609
- actor: string;
1610
+ actor: At.Identifier;
1610
1611
  }
1611
1612
  type Input = undefined;
1612
1613
  interface Output {
@@ -1649,7 +1650,7 @@ declare module '@atcute/client/lexicons' {
1649
1650
  $type: 'app.bsky.graph.listblock';
1650
1651
  createdAt: string;
1651
1652
  /** Reference (AT-URI) to the mod list record. */
1652
- subject: At.Uri;
1653
+ subject: At.ResourceUri;
1653
1654
  }
1654
1655
  }
1655
1656
  namespace AppBskyGraphListitem {
@@ -1658,9 +1659,9 @@ declare module '@atcute/client/lexicons' {
1658
1659
  $type: 'app.bsky.graph.listitem';
1659
1660
  createdAt: string;
1660
1661
  /** Reference (AT-URI) to the list record (app.bsky.graph.list). */
1661
- list: At.Uri;
1662
+ list: At.ResourceUri;
1662
1663
  /** The account which is included on the list. */
1663
- subject: At.DID;
1664
+ subject: At.Did;
1664
1665
  }
1665
1666
  }
1666
1667
  /** Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth. */
@@ -1668,7 +1669,7 @@ declare module '@atcute/client/lexicons' {
1668
1669
  interface Params {
1669
1670
  }
1670
1671
  interface Input {
1671
- actor: string;
1672
+ actor: At.Identifier;
1672
1673
  }
1673
1674
  type Output = undefined;
1674
1675
  }
@@ -1677,7 +1678,7 @@ declare module '@atcute/client/lexicons' {
1677
1678
  interface Params {
1678
1679
  }
1679
1680
  interface Input {
1680
- list: At.Uri;
1681
+ list: At.ResourceUri;
1681
1682
  }
1682
1683
  type Output = undefined;
1683
1684
  }
@@ -1686,7 +1687,7 @@ declare module '@atcute/client/lexicons' {
1686
1687
  interface Params {
1687
1688
  }
1688
1689
  interface Input {
1689
- root: At.Uri;
1690
+ root: At.ResourceUri;
1690
1691
  }
1691
1692
  type Output = undefined;
1692
1693
  }
@@ -1715,7 +1716,7 @@ declare module '@atcute/client/lexicons' {
1715
1716
  $type: 'app.bsky.graph.starterpack';
1716
1717
  createdAt: string;
1717
1718
  /** Reference (AT-URI) to the list record. */
1718
- list: At.Uri;
1719
+ list: At.ResourceUri;
1719
1720
  /**
1720
1721
  * Display name for starter pack; can not be empty. \
1721
1722
  * Minimum string length: 1 \
@@ -1734,7 +1735,7 @@ declare module '@atcute/client/lexicons' {
1734
1735
  }
1735
1736
  interface FeedItem {
1736
1737
  [Brand.Type]?: 'app.bsky.graph.starterpack#feedItem';
1737
- uri: At.Uri;
1738
+ uri: At.ResourceUri;
1738
1739
  }
1739
1740
  }
1740
1741
  /** Unmutes the specified account. Requires auth. */
@@ -1742,7 +1743,7 @@ declare module '@atcute/client/lexicons' {
1742
1743
  interface Params {
1743
1744
  }
1744
1745
  interface Input {
1745
- actor: string;
1746
+ actor: At.Identifier;
1746
1747
  }
1747
1748
  type Output = undefined;
1748
1749
  }
@@ -1751,7 +1752,7 @@ declare module '@atcute/client/lexicons' {
1751
1752
  interface Params {
1752
1753
  }
1753
1754
  interface Input {
1754
- list: At.Uri;
1755
+ list: At.ResourceUri;
1755
1756
  }
1756
1757
  type Output = undefined;
1757
1758
  }
@@ -1760,7 +1761,7 @@ declare module '@atcute/client/lexicons' {
1760
1761
  interface Params {
1761
1762
  }
1762
1763
  interface Input {
1763
- root: At.Uri;
1764
+ root: At.ResourceUri;
1764
1765
  }
1765
1766
  type Output = undefined;
1766
1767
  }
@@ -1774,10 +1775,10 @@ declare module '@atcute/client/lexicons' {
1774
1775
  }
1775
1776
  interface LabelerView {
1776
1777
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerView';
1777
- cid: At.CID;
1778
+ cid: At.Cid;
1778
1779
  creator: AppBskyActorDefs.ProfileView;
1779
1780
  indexedAt: string;
1780
- uri: At.Uri;
1781
+ uri: At.ResourceUri;
1781
1782
  labels?: ComAtprotoLabelDefs.Label[];
1782
1783
  /** Minimum: 0 */
1783
1784
  likeCount?: number;
@@ -1785,25 +1786,31 @@ declare module '@atcute/client/lexicons' {
1785
1786
  }
1786
1787
  interface LabelerViewDetailed {
1787
1788
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewDetailed';
1788
- cid: At.CID;
1789
+ cid: At.Cid;
1789
1790
  creator: AppBskyActorDefs.ProfileView;
1790
1791
  indexedAt: string;
1791
1792
  policies: AppBskyLabelerDefs.LabelerPolicies;
1792
- uri: At.Uri;
1793
+ uri: At.ResourceUri;
1793
1794
  labels?: ComAtprotoLabelDefs.Label[];
1794
1795
  /** Minimum: 0 */
1795
1796
  likeCount?: number;
1797
+ /** 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. */
1798
+ reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1799
+ /** 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. */
1800
+ subjectCollections?: At.Nsid[];
1801
+ /** The set of subject types (account, record, etc) this service accepts reports on. */
1802
+ subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1796
1803
  viewer?: LabelerViewerState;
1797
1804
  }
1798
1805
  interface LabelerViewerState {
1799
1806
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewerState';
1800
- like?: At.Uri;
1807
+ like?: At.ResourceUri;
1801
1808
  }
1802
1809
  }
1803
1810
  /** Get information about a list of labeler services. */
1804
1811
  namespace AppBskyLabelerGetServices {
1805
1812
  interface Params {
1806
- dids: At.DID[];
1813
+ dids: At.Did[];
1807
1814
  /** @default false */
1808
1815
  detailed?: boolean;
1809
1816
  }
@@ -1819,6 +1826,12 @@ declare module '@atcute/client/lexicons' {
1819
1826
  createdAt: string;
1820
1827
  policies: AppBskyLabelerDefs.LabelerPolicies;
1821
1828
  labels?: Brand.Union<ComAtprotoLabelDefs.SelfLabels>;
1829
+ /** 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. */
1830
+ reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1831
+ /** 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. */
1832
+ subjectCollections?: At.Nsid[];
1833
+ /** The set of subject types (account, record, etc) this service accepts reports on. */
1834
+ subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1822
1835
  }
1823
1836
  }
1824
1837
  /** Count the number of unread notifications for the requesting account. Requires auth. */
@@ -1860,15 +1873,15 @@ declare module '@atcute/client/lexicons' {
1860
1873
  interface Notification {
1861
1874
  [Brand.Type]?: 'app.bsky.notification.listNotifications#notification';
1862
1875
  author: AppBskyActorDefs.ProfileView;
1863
- cid: At.CID;
1876
+ cid: At.Cid;
1864
1877
  indexedAt: string;
1865
1878
  isRead: boolean;
1866
1879
  /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
1867
1880
  reason: 'follow' | 'like' | 'mention' | 'quote' | 'reply' | 'repost' | 'starterpack-joined' | (string & {});
1868
1881
  record: unknown;
1869
- uri: At.Uri;
1882
+ uri: At.ResourceUri;
1870
1883
  labels?: ComAtprotoLabelDefs.Label[];
1871
- reasonSubject?: At.Uri;
1884
+ reasonSubject?: At.ResourceUri;
1872
1885
  }
1873
1886
  }
1874
1887
  /** Set notification-related preferences for an account. Requires auth. */
@@ -1887,7 +1900,7 @@ declare module '@atcute/client/lexicons' {
1887
1900
  interface Input {
1888
1901
  appId: string;
1889
1902
  platform: 'android' | 'ios' | 'web' | (string & {});
1890
- serviceDid: At.DID;
1903
+ serviceDid: At.Did;
1891
1904
  token: string;
1892
1905
  }
1893
1906
  type Output = undefined;
@@ -1919,12 +1932,12 @@ declare module '@atcute/client/lexicons' {
1919
1932
  /** Facet feature for a URL. The text URL may have been simplified or truncated, but the facet reference should be a complete URL. */
1920
1933
  interface Link {
1921
1934
  [Brand.Type]?: 'app.bsky.richtext.facet#link';
1922
- uri: string;
1935
+ uri: At.GenericUri;
1923
1936
  }
1924
1937
  /** Facet feature for mention of another account. The text is usually a handle, including a '@' prefix, but the facet reference is a DID. */
1925
1938
  interface Mention {
1926
1939
  [Brand.Type]?: 'app.bsky.richtext.facet#mention';
1927
- did: At.DID;
1940
+ did: At.Did;
1928
1941
  }
1929
1942
  /** 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'). */
1930
1943
  interface Tag {
@@ -1939,15 +1952,15 @@ declare module '@atcute/client/lexicons' {
1939
1952
  namespace AppBskyUnspeccedDefs {
1940
1953
  interface SkeletonSearchActor {
1941
1954
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchActor';
1942
- did: At.DID;
1955
+ did: At.Did;
1943
1956
  }
1944
1957
  interface SkeletonSearchPost {
1945
1958
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchPost';
1946
- uri: At.Uri;
1959
+ uri: At.ResourceUri;
1947
1960
  }
1948
1961
  interface SkeletonSearchStarterPack {
1949
1962
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchStarterPack';
1950
- uri: At.Uri;
1963
+ uri: At.ResourceUri;
1951
1964
  }
1952
1965
  interface TrendingTopic {
1953
1966
  [Brand.Type]?: 'app.bsky.unspecced.defs#trendingTopic';
@@ -1995,9 +2008,9 @@ declare module '@atcute/client/lexicons' {
1995
2008
  */
1996
2009
  limit?: number;
1997
2010
  /** DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer. */
1998
- relativeToDid?: At.DID;
2011
+ relativeToDid?: At.Did;
1999
2012
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2000
- viewer?: At.DID;
2013
+ viewer?: At.Did;
2001
2014
  }
2002
2015
  type Input = undefined;
2003
2016
  interface Output {
@@ -2006,7 +2019,7 @@ declare module '@atcute/client/lexicons' {
2006
2019
  /** Snowflake for this recommendation, use when submitting recommendation events. */
2007
2020
  recId?: number;
2008
2021
  /** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
2009
- relativeToDid?: At.DID;
2022
+ relativeToDid?: At.Did;
2010
2023
  }
2011
2024
  }
2012
2025
  /** Get a list of suggestions (feeds and users) tagged with categories */
@@ -2017,7 +2030,7 @@ declare module '@atcute/client/lexicons' {
2017
2030
  }
2018
2031
  interface Suggestion {
2019
2032
  [Brand.Type]?: 'app.bsky.unspecced.getTaggedSuggestions#suggestion';
2020
- subject: string;
2033
+ subject: At.GenericUri;
2021
2034
  subjectType: 'actor' | 'feed' | (string & {});
2022
2035
  tag: string;
2023
2036
  }
@@ -2032,7 +2045,7 @@ declare module '@atcute/client/lexicons' {
2032
2045
  */
2033
2046
  limit?: number;
2034
2047
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2035
- viewer?: At.DID;
2048
+ viewer?: At.Did;
2036
2049
  }
2037
2050
  type Input = undefined;
2038
2051
  interface Output {
@@ -2056,7 +2069,7 @@ declare module '@atcute/client/lexicons' {
2056
2069
  /** If true, acts as fast/simple 'typeahead' query. */
2057
2070
  typeahead?: boolean;
2058
2071
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2059
- viewer?: At.DID;
2072
+ viewer?: At.Did;
2060
2073
  }
2061
2074
  type Input = undefined;
2062
2075
  interface Output {
@@ -2075,7 +2088,7 @@ declare module '@atcute/client/lexicons' {
2075
2088
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
2076
2089
  q: string;
2077
2090
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
2078
- author?: string;
2091
+ author?: At.Identifier;
2079
2092
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
2080
2093
  cursor?: string;
2081
2094
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -2089,7 +2102,7 @@ declare module '@atcute/client/lexicons' {
2089
2102
  */
2090
2103
  limit?: number;
2091
2104
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
2092
- mentions?: string;
2105
+ mentions?: At.Identifier;
2093
2106
  /** 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). */
2094
2107
  since?: string;
2095
2108
  /**
@@ -2106,9 +2119,9 @@ declare module '@atcute/client/lexicons' {
2106
2119
  /** 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). */
2107
2120
  until?: string;
2108
2121
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
2109
- url?: string;
2122
+ url?: At.GenericUri;
2110
2123
  /** DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries. */
2111
- viewer?: At.DID;
2124
+ viewer?: At.Did;
2112
2125
  }
2113
2126
  type Input = undefined;
2114
2127
  interface Output {
@@ -2135,7 +2148,7 @@ declare module '@atcute/client/lexicons' {
2135
2148
  */
2136
2149
  limit?: number;
2137
2150
  /** DID of the account making the request (not included for public/unauthenticated queries). */
2138
- viewer?: At.DID;
2151
+ viewer?: At.Did;
2139
2152
  }
2140
2153
  type Input = undefined;
2141
2154
  interface Output {
@@ -2151,7 +2164,7 @@ declare module '@atcute/client/lexicons' {
2151
2164
  namespace AppBskyVideoDefs {
2152
2165
  interface JobStatus {
2153
2166
  [Brand.Type]?: 'app.bsky.video.defs#jobStatus';
2154
- did: At.DID;
2167
+ did: At.Did;
2155
2168
  jobId: string;
2156
2169
  /** The state of the video processing job. All values not listed as a known value indicate that the job is in process. */
2157
2170
  state: 'JOB_STATE_COMPLETED' | 'JOB_STATE_FAILED' | (string & {});
@@ -2193,7 +2206,7 @@ declare module '@atcute/client/lexicons' {
2193
2206
  namespace AppBskyVideoUploadVideo {
2194
2207
  interface Params {
2195
2208
  }
2196
- type Input = Blob | ArrayBufferView;
2209
+ type Input = Blob | BufferSource | ReadableStream;
2197
2210
  interface Output {
2198
2211
  jobStatus: AppBskyVideoDefs.JobStatus;
2199
2212
  }
@@ -2208,10 +2221,10 @@ declare module '@atcute/client/lexicons' {
2208
2221
  namespace ChatBskyActorDefs {
2209
2222
  interface ProfileViewBasic {
2210
2223
  [Brand.Type]?: 'chat.bsky.actor.defs#profileViewBasic';
2211
- did: At.DID;
2224
+ did: At.Did;
2212
2225
  handle: At.Handle;
2213
2226
  associated?: AppBskyActorDefs.ProfileAssociated;
2214
- avatar?: string;
2227
+ avatar?: At.GenericUri;
2215
2228
  /** Set to true when the actor cannot actively participate in converations */
2216
2229
  chatDisabled?: boolean;
2217
2230
  /**
@@ -2247,6 +2260,29 @@ declare module '@atcute/client/lexicons' {
2247
2260
  rev?: string;
2248
2261
  }
2249
2262
  }
2263
+ /** 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. */
2264
+ namespace ChatBskyConvoAddReaction {
2265
+ interface Params {
2266
+ }
2267
+ interface Input {
2268
+ convoId: string;
2269
+ messageId: string;
2270
+ /**
2271
+ * Minimum string length: 1 \
2272
+ * Maximum string length: 32 \
2273
+ * Maximum grapheme length: 1
2274
+ */
2275
+ value: string;
2276
+ }
2277
+ interface Output {
2278
+ message: ChatBskyConvoDefs.MessageView;
2279
+ }
2280
+ interface Errors {
2281
+ ReactionMessageDeleted: {};
2282
+ ReactionLimitReached: {};
2283
+ ReactionInvalidValue: {};
2284
+ }
2285
+ }
2250
2286
  namespace ChatBskyConvoDefs {
2251
2287
  interface ConvoView {
2252
2288
  [Brand.Type]?: 'chat.bsky.convo.defs#convoView';
@@ -2255,7 +2291,7 @@ declare module '@atcute/client/lexicons' {
2255
2291
  muted: boolean;
2256
2292
  rev: string;
2257
2293
  unreadCount: number;
2258
- lastMessage?: Brand.Union<DeletedMessageView | MessageView>;
2294
+ lastMessage?: Brand.Union<DeletedMessageView | MessageAndReactionView | MessageView>;
2259
2295
  status?: 'accepted' | 'request' | (string & {});
2260
2296
  }
2261
2297
  interface DeletedMessageView {
@@ -2270,6 +2306,13 @@ declare module '@atcute/client/lexicons' {
2270
2306
  convoId: string;
2271
2307
  rev: string;
2272
2308
  }
2309
+ interface LogAddReaction {
2310
+ [Brand.Type]?: 'chat.bsky.convo.defs#logAddReaction';
2311
+ convoId: string;
2312
+ message: Brand.Union<DeletedMessageView | MessageView>;
2313
+ reaction: ReactionView;
2314
+ rev: string;
2315
+ }
2273
2316
  interface LogBeginConvo {
2274
2317
  [Brand.Type]?: 'chat.bsky.convo.defs#logBeginConvo';
2275
2318
  convoId: string;
@@ -2303,11 +2346,23 @@ declare module '@atcute/client/lexicons' {
2303
2346
  message: Brand.Union<DeletedMessageView | MessageView>;
2304
2347
  rev: string;
2305
2348
  }
2349
+ interface LogRemoveReaction {
2350
+ [Brand.Type]?: 'chat.bsky.convo.defs#logRemoveReaction';
2351
+ convoId: string;
2352
+ message: Brand.Union<DeletedMessageView | MessageView>;
2353
+ reaction: ReactionView;
2354
+ rev: string;
2355
+ }
2306
2356
  interface LogUnmuteConvo {
2307
2357
  [Brand.Type]?: 'chat.bsky.convo.defs#logUnmuteConvo';
2308
2358
  convoId: string;
2309
2359
  rev: string;
2310
2360
  }
2361
+ interface MessageAndReactionView {
2362
+ [Brand.Type]?: 'chat.bsky.convo.defs#messageAndReactionView';
2363
+ message: MessageView;
2364
+ reaction: ReactionView;
2365
+ }
2311
2366
  interface MessageInput {
2312
2367
  [Brand.Type]?: 'chat.bsky.convo.defs#messageInput';
2313
2368
  /**
@@ -2322,7 +2377,7 @@ declare module '@atcute/client/lexicons' {
2322
2377
  interface MessageRef {
2323
2378
  [Brand.Type]?: 'chat.bsky.convo.defs#messageRef';
2324
2379
  convoId: string;
2325
- did: At.DID;
2380
+ did: At.Did;
2326
2381
  messageId: string;
2327
2382
  }
2328
2383
  interface MessageView {
@@ -2339,10 +2394,21 @@ declare module '@atcute/client/lexicons' {
2339
2394
  embed?: Brand.Union<AppBskyEmbedRecord.View>;
2340
2395
  /** Annotations of text (mentions, URLs, hashtags, etc) */
2341
2396
  facets?: AppBskyRichtextFacet.Main[];
2397
+ reactions?: ReactionView[];
2342
2398
  }
2343
2399
  interface MessageViewSender {
2344
2400
  [Brand.Type]?: 'chat.bsky.convo.defs#messageViewSender';
2345
- did: At.DID;
2401
+ did: At.Did;
2402
+ }
2403
+ interface ReactionView {
2404
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionView';
2405
+ createdAt: string;
2406
+ sender: ReactionViewSender;
2407
+ value: string;
2408
+ }
2409
+ interface ReactionViewSender {
2410
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionViewSender';
2411
+ did: At.Did;
2346
2412
  }
2347
2413
  }
2348
2414
  namespace ChatBskyConvoDeleteMessageForSelf {
@@ -2370,7 +2436,7 @@ declare module '@atcute/client/lexicons' {
2370
2436
  * Minimum array length: 1 \
2371
2437
  * Maximum array length: 10
2372
2438
  */
2373
- members: At.DID[];
2439
+ members: At.Did[];
2374
2440
  }
2375
2441
  type Input = undefined;
2376
2442
  interface Output {
@@ -2384,7 +2450,7 @@ declare module '@atcute/client/lexicons' {
2384
2450
  * Minimum array length: 1 \
2385
2451
  * Maximum array length: 10
2386
2452
  */
2387
- members: At.DID[];
2453
+ members: At.Did[];
2388
2454
  }
2389
2455
  type Input = undefined;
2390
2456
  interface Output {
@@ -2397,7 +2463,7 @@ declare module '@atcute/client/lexicons' {
2397
2463
  }
2398
2464
  type Input = undefined;
2399
2465
  interface Output {
2400
- logs: Brand.Union<ChatBskyConvoDefs.LogAcceptConvo | ChatBskyConvoDefs.LogBeginConvo | ChatBskyConvoDefs.LogCreateMessage | ChatBskyConvoDefs.LogDeleteMessage | ChatBskyConvoDefs.LogLeaveConvo>[];
2466
+ logs: Brand.Union<ChatBskyConvoDefs.LogAcceptConvo | ChatBskyConvoDefs.LogAddReaction | ChatBskyConvoDefs.LogBeginConvo | ChatBskyConvoDefs.LogCreateMessage | ChatBskyConvoDefs.LogDeleteMessage | ChatBskyConvoDefs.LogLeaveConvo | ChatBskyConvoDefs.LogMuteConvo | ChatBskyConvoDefs.LogReadMessage | ChatBskyConvoDefs.LogRemoveReaction | ChatBskyConvoDefs.LogUnmuteConvo>[];
2401
2467
  cursor?: string;
2402
2468
  }
2403
2469
  }
@@ -2457,6 +2523,28 @@ declare module '@atcute/client/lexicons' {
2457
2523
  convo: ChatBskyConvoDefs.ConvoView;
2458
2524
  }
2459
2525
  }
2526
+ /** 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. */
2527
+ namespace ChatBskyConvoRemoveReaction {
2528
+ interface Params {
2529
+ }
2530
+ interface Input {
2531
+ convoId: string;
2532
+ messageId: string;
2533
+ /**
2534
+ * Minimum string length: 1 \
2535
+ * Maximum string length: 32 \
2536
+ * Maximum grapheme length: 1
2537
+ */
2538
+ value: string;
2539
+ }
2540
+ interface Output {
2541
+ message: ChatBskyConvoDefs.MessageView;
2542
+ }
2543
+ interface Errors {
2544
+ ReactionMessageDeleted: {};
2545
+ ReactionInvalidValue: {};
2546
+ }
2547
+ }
2460
2548
  namespace ChatBskyConvoSendMessage {
2461
2549
  interface Params {
2462
2550
  }
@@ -2492,6 +2580,17 @@ declare module '@atcute/client/lexicons' {
2492
2580
  convo: ChatBskyConvoDefs.ConvoView;
2493
2581
  }
2494
2582
  }
2583
+ namespace ChatBskyConvoUpdateAllRead {
2584
+ interface Params {
2585
+ }
2586
+ interface Input {
2587
+ status?: 'accepted' | 'request' | (string & {});
2588
+ }
2589
+ interface Output {
2590
+ /** The count of updated convos. */
2591
+ updatedCount: number;
2592
+ }
2593
+ }
2495
2594
  namespace ChatBskyConvoUpdateRead {
2496
2595
  interface Params {
2497
2596
  }
@@ -2505,7 +2604,7 @@ declare module '@atcute/client/lexicons' {
2505
2604
  }
2506
2605
  namespace ChatBskyModerationGetActorMetadata {
2507
2606
  interface Params {
2508
- actor: At.DID;
2607
+ actor: At.Did;
2509
2608
  }
2510
2609
  type Input = undefined;
2511
2610
  interface Output {
@@ -2540,7 +2639,7 @@ declare module '@atcute/client/lexicons' {
2540
2639
  interface Params {
2541
2640
  }
2542
2641
  interface Input {
2543
- actor: At.DID;
2642
+ actor: At.Did;
2544
2643
  allowAccess: boolean;
2545
2644
  ref?: string;
2546
2645
  }
@@ -2565,238 +2664,476 @@ declare module '@atcute/client/lexicons' {
2565
2664
  }
2566
2665
  interface Queries {
2567
2666
  'app.bsky.actor.getPreferences': {
2667
+ /** @deprecated */
2568
2668
  output: AppBskyActorGetPreferences.Output;
2669
+ response: {
2670
+ json: AppBskyActorGetPreferences.Output;
2671
+ };
2569
2672
  };
2570
2673
  'app.bsky.actor.getProfile': {
2571
2674
  params: AppBskyActorGetProfile.Params;
2675
+ /** @deprecated */
2572
2676
  output: AppBskyActorGetProfile.Output;
2677
+ response: {
2678
+ json: AppBskyActorGetProfile.Output;
2679
+ };
2573
2680
  };
2574
2681
  'app.bsky.actor.getProfiles': {
2575
2682
  params: AppBskyActorGetProfiles.Params;
2683
+ /** @deprecated */
2576
2684
  output: AppBskyActorGetProfiles.Output;
2685
+ response: {
2686
+ json: AppBskyActorGetProfiles.Output;
2687
+ };
2577
2688
  };
2578
2689
  'app.bsky.actor.getSuggestions': {
2579
2690
  params: AppBskyActorGetSuggestions.Params;
2691
+ /** @deprecated */
2580
2692
  output: AppBskyActorGetSuggestions.Output;
2693
+ response: {
2694
+ json: AppBskyActorGetSuggestions.Output;
2695
+ };
2581
2696
  };
2582
2697
  'app.bsky.actor.searchActors': {
2583
2698
  params: AppBskyActorSearchActors.Params;
2699
+ /** @deprecated */
2584
2700
  output: AppBskyActorSearchActors.Output;
2701
+ response: {
2702
+ json: AppBskyActorSearchActors.Output;
2703
+ };
2585
2704
  };
2586
2705
  'app.bsky.actor.searchActorsTypeahead': {
2587
2706
  params: AppBskyActorSearchActorsTypeahead.Params;
2707
+ /** @deprecated */
2588
2708
  output: AppBskyActorSearchActorsTypeahead.Output;
2709
+ response: {
2710
+ json: AppBskyActorSearchActorsTypeahead.Output;
2711
+ };
2589
2712
  };
2590
2713
  'app.bsky.feed.describeFeedGenerator': {
2714
+ /** @deprecated */
2591
2715
  output: AppBskyFeedDescribeFeedGenerator.Output;
2716
+ response: {
2717
+ json: AppBskyFeedDescribeFeedGenerator.Output;
2718
+ };
2592
2719
  };
2593
2720
  'app.bsky.feed.getActorFeeds': {
2594
2721
  params: AppBskyFeedGetActorFeeds.Params;
2722
+ /** @deprecated */
2595
2723
  output: AppBskyFeedGetActorFeeds.Output;
2724
+ response: {
2725
+ json: AppBskyFeedGetActorFeeds.Output;
2726
+ };
2596
2727
  };
2597
2728
  'app.bsky.feed.getActorLikes': {
2598
2729
  params: AppBskyFeedGetActorLikes.Params;
2730
+ /** @deprecated */
2599
2731
  output: AppBskyFeedGetActorLikes.Output;
2732
+ response: {
2733
+ json: AppBskyFeedGetActorLikes.Output;
2734
+ };
2600
2735
  };
2601
2736
  'app.bsky.feed.getAuthorFeed': {
2602
2737
  params: AppBskyFeedGetAuthorFeed.Params;
2738
+ /** @deprecated */
2603
2739
  output: AppBskyFeedGetAuthorFeed.Output;
2740
+ response: {
2741
+ json: AppBskyFeedGetAuthorFeed.Output;
2742
+ };
2604
2743
  };
2605
2744
  'app.bsky.feed.getFeed': {
2606
2745
  params: AppBskyFeedGetFeed.Params;
2746
+ /** @deprecated */
2607
2747
  output: AppBskyFeedGetFeed.Output;
2748
+ response: {
2749
+ json: AppBskyFeedGetFeed.Output;
2750
+ };
2608
2751
  };
2609
2752
  'app.bsky.feed.getFeedGenerator': {
2610
2753
  params: AppBskyFeedGetFeedGenerator.Params;
2754
+ /** @deprecated */
2611
2755
  output: AppBskyFeedGetFeedGenerator.Output;
2756
+ response: {
2757
+ json: AppBskyFeedGetFeedGenerator.Output;
2758
+ };
2612
2759
  };
2613
2760
  'app.bsky.feed.getFeedGenerators': {
2614
2761
  params: AppBskyFeedGetFeedGenerators.Params;
2762
+ /** @deprecated */
2615
2763
  output: AppBskyFeedGetFeedGenerators.Output;
2764
+ response: {
2765
+ json: AppBskyFeedGetFeedGenerators.Output;
2766
+ };
2616
2767
  };
2617
2768
  'app.bsky.feed.getFeedSkeleton': {
2618
2769
  params: AppBskyFeedGetFeedSkeleton.Params;
2770
+ /** @deprecated */
2619
2771
  output: AppBskyFeedGetFeedSkeleton.Output;
2772
+ response: {
2773
+ json: AppBskyFeedGetFeedSkeleton.Output;
2774
+ };
2620
2775
  };
2621
2776
  'app.bsky.feed.getLikes': {
2622
2777
  params: AppBskyFeedGetLikes.Params;
2778
+ /** @deprecated */
2623
2779
  output: AppBskyFeedGetLikes.Output;
2780
+ response: {
2781
+ json: AppBskyFeedGetLikes.Output;
2782
+ };
2624
2783
  };
2625
2784
  'app.bsky.feed.getListFeed': {
2626
2785
  params: AppBskyFeedGetListFeed.Params;
2786
+ /** @deprecated */
2627
2787
  output: AppBskyFeedGetListFeed.Output;
2788
+ response: {
2789
+ json: AppBskyFeedGetListFeed.Output;
2790
+ };
2628
2791
  };
2629
2792
  'app.bsky.feed.getPosts': {
2630
2793
  params: AppBskyFeedGetPosts.Params;
2794
+ /** @deprecated */
2631
2795
  output: AppBskyFeedGetPosts.Output;
2796
+ response: {
2797
+ json: AppBskyFeedGetPosts.Output;
2798
+ };
2632
2799
  };
2633
2800
  'app.bsky.feed.getPostThread': {
2634
2801
  params: AppBskyFeedGetPostThread.Params;
2802
+ /** @deprecated */
2635
2803
  output: AppBskyFeedGetPostThread.Output;
2804
+ response: {
2805
+ json: AppBskyFeedGetPostThread.Output;
2806
+ };
2636
2807
  };
2637
2808
  'app.bsky.feed.getQuotes': {
2638
2809
  params: AppBskyFeedGetQuotes.Params;
2810
+ /** @deprecated */
2639
2811
  output: AppBskyFeedGetQuotes.Output;
2812
+ response: {
2813
+ json: AppBskyFeedGetQuotes.Output;
2814
+ };
2640
2815
  };
2641
2816
  'app.bsky.feed.getRepostedBy': {
2642
2817
  params: AppBskyFeedGetRepostedBy.Params;
2818
+ /** @deprecated */
2643
2819
  output: AppBskyFeedGetRepostedBy.Output;
2820
+ response: {
2821
+ json: AppBskyFeedGetRepostedBy.Output;
2822
+ };
2644
2823
  };
2645
2824
  'app.bsky.feed.getSuggestedFeeds': {
2646
2825
  params: AppBskyFeedGetSuggestedFeeds.Params;
2826
+ /** @deprecated */
2647
2827
  output: AppBskyFeedGetSuggestedFeeds.Output;
2828
+ response: {
2829
+ json: AppBskyFeedGetSuggestedFeeds.Output;
2830
+ };
2648
2831
  };
2649
2832
  'app.bsky.feed.getTimeline': {
2650
2833
  params: AppBskyFeedGetTimeline.Params;
2834
+ /** @deprecated */
2651
2835
  output: AppBskyFeedGetTimeline.Output;
2836
+ response: {
2837
+ json: AppBskyFeedGetTimeline.Output;
2838
+ };
2652
2839
  };
2653
2840
  'app.bsky.feed.searchPosts': {
2654
2841
  params: AppBskyFeedSearchPosts.Params;
2842
+ /** @deprecated */
2655
2843
  output: AppBskyFeedSearchPosts.Output;
2844
+ response: {
2845
+ json: AppBskyFeedSearchPosts.Output;
2846
+ };
2656
2847
  };
2657
2848
  'app.bsky.graph.getActorStarterPacks': {
2658
2849
  params: AppBskyGraphGetActorStarterPacks.Params;
2850
+ /** @deprecated */
2659
2851
  output: AppBskyGraphGetActorStarterPacks.Output;
2852
+ response: {
2853
+ json: AppBskyGraphGetActorStarterPacks.Output;
2854
+ };
2660
2855
  };
2661
2856
  'app.bsky.graph.getBlocks': {
2662
2857
  params: AppBskyGraphGetBlocks.Params;
2858
+ /** @deprecated */
2663
2859
  output: AppBskyGraphGetBlocks.Output;
2860
+ response: {
2861
+ json: AppBskyGraphGetBlocks.Output;
2862
+ };
2664
2863
  };
2665
2864
  'app.bsky.graph.getFollowers': {
2666
2865
  params: AppBskyGraphGetFollowers.Params;
2866
+ /** @deprecated */
2667
2867
  output: AppBskyGraphGetFollowers.Output;
2868
+ response: {
2869
+ json: AppBskyGraphGetFollowers.Output;
2870
+ };
2668
2871
  };
2669
2872
  'app.bsky.graph.getFollows': {
2670
2873
  params: AppBskyGraphGetFollows.Params;
2874
+ /** @deprecated */
2671
2875
  output: AppBskyGraphGetFollows.Output;
2876
+ response: {
2877
+ json: AppBskyGraphGetFollows.Output;
2878
+ };
2672
2879
  };
2673
2880
  'app.bsky.graph.getKnownFollowers': {
2674
2881
  params: AppBskyGraphGetKnownFollowers.Params;
2882
+ /** @deprecated */
2675
2883
  output: AppBskyGraphGetKnownFollowers.Output;
2884
+ response: {
2885
+ json: AppBskyGraphGetKnownFollowers.Output;
2886
+ };
2676
2887
  };
2677
2888
  'app.bsky.graph.getList': {
2678
2889
  params: AppBskyGraphGetList.Params;
2890
+ /** @deprecated */
2679
2891
  output: AppBskyGraphGetList.Output;
2892
+ response: {
2893
+ json: AppBskyGraphGetList.Output;
2894
+ };
2680
2895
  };
2681
2896
  'app.bsky.graph.getListBlocks': {
2682
2897
  params: AppBskyGraphGetListBlocks.Params;
2898
+ /** @deprecated */
2683
2899
  output: AppBskyGraphGetListBlocks.Output;
2900
+ response: {
2901
+ json: AppBskyGraphGetListBlocks.Output;
2902
+ };
2684
2903
  };
2685
2904
  'app.bsky.graph.getListMutes': {
2686
2905
  params: AppBskyGraphGetListMutes.Params;
2906
+ /** @deprecated */
2687
2907
  output: AppBskyGraphGetListMutes.Output;
2908
+ response: {
2909
+ json: AppBskyGraphGetListMutes.Output;
2910
+ };
2688
2911
  };
2689
2912
  'app.bsky.graph.getLists': {
2690
2913
  params: AppBskyGraphGetLists.Params;
2914
+ /** @deprecated */
2691
2915
  output: AppBskyGraphGetLists.Output;
2916
+ response: {
2917
+ json: AppBskyGraphGetLists.Output;
2918
+ };
2692
2919
  };
2693
2920
  'app.bsky.graph.getMutes': {
2694
2921
  params: AppBskyGraphGetMutes.Params;
2922
+ /** @deprecated */
2695
2923
  output: AppBskyGraphGetMutes.Output;
2924
+ response: {
2925
+ json: AppBskyGraphGetMutes.Output;
2926
+ };
2696
2927
  };
2697
2928
  'app.bsky.graph.getRelationships': {
2698
2929
  params: AppBskyGraphGetRelationships.Params;
2930
+ /** @deprecated */
2699
2931
  output: AppBskyGraphGetRelationships.Output;
2932
+ response: {
2933
+ json: AppBskyGraphGetRelationships.Output;
2934
+ };
2700
2935
  };
2701
2936
  'app.bsky.graph.getStarterPack': {
2702
2937
  params: AppBskyGraphGetStarterPack.Params;
2938
+ /** @deprecated */
2703
2939
  output: AppBskyGraphGetStarterPack.Output;
2940
+ response: {
2941
+ json: AppBskyGraphGetStarterPack.Output;
2942
+ };
2704
2943
  };
2705
2944
  'app.bsky.graph.getStarterPacks': {
2706
2945
  params: AppBskyGraphGetStarterPacks.Params;
2946
+ /** @deprecated */
2707
2947
  output: AppBskyGraphGetStarterPacks.Output;
2948
+ response: {
2949
+ json: AppBskyGraphGetStarterPacks.Output;
2950
+ };
2708
2951
  };
2709
2952
  'app.bsky.graph.getSuggestedFollowsByActor': {
2710
2953
  params: AppBskyGraphGetSuggestedFollowsByActor.Params;
2954
+ /** @deprecated */
2711
2955
  output: AppBskyGraphGetSuggestedFollowsByActor.Output;
2956
+ response: {
2957
+ json: AppBskyGraphGetSuggestedFollowsByActor.Output;
2958
+ };
2712
2959
  };
2713
2960
  'app.bsky.graph.searchStarterPacks': {
2714
2961
  params: AppBskyGraphSearchStarterPacks.Params;
2962
+ /** @deprecated */
2715
2963
  output: AppBskyGraphSearchStarterPacks.Output;
2964
+ response: {
2965
+ json: AppBskyGraphSearchStarterPacks.Output;
2966
+ };
2716
2967
  };
2717
2968
  'app.bsky.labeler.getServices': {
2718
2969
  params: AppBskyLabelerGetServices.Params;
2970
+ /** @deprecated */
2719
2971
  output: AppBskyLabelerGetServices.Output;
2972
+ response: {
2973
+ json: AppBskyLabelerGetServices.Output;
2974
+ };
2720
2975
  };
2721
2976
  'app.bsky.notification.getUnreadCount': {
2722
2977
  params: AppBskyNotificationGetUnreadCount.Params;
2978
+ /** @deprecated */
2723
2979
  output: AppBskyNotificationGetUnreadCount.Output;
2980
+ response: {
2981
+ json: AppBskyNotificationGetUnreadCount.Output;
2982
+ };
2724
2983
  };
2725
2984
  'app.bsky.notification.listNotifications': {
2726
2985
  params: AppBskyNotificationListNotifications.Params;
2986
+ /** @deprecated */
2727
2987
  output: AppBskyNotificationListNotifications.Output;
2988
+ response: {
2989
+ json: AppBskyNotificationListNotifications.Output;
2990
+ };
2728
2991
  };
2729
2992
  'app.bsky.unspecced.getConfig': {
2993
+ /** @deprecated */
2730
2994
  output: AppBskyUnspeccedGetConfig.Output;
2995
+ response: {
2996
+ json: AppBskyUnspeccedGetConfig.Output;
2997
+ };
2731
2998
  };
2732
2999
  'app.bsky.unspecced.getPopularFeedGenerators': {
2733
3000
  params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
3001
+ /** @deprecated */
2734
3002
  output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3003
+ response: {
3004
+ json: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3005
+ };
2735
3006
  };
2736
3007
  'app.bsky.unspecced.getSuggestionsSkeleton': {
2737
3008
  params: AppBskyUnspeccedGetSuggestionsSkeleton.Params;
3009
+ /** @deprecated */
2738
3010
  output: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3011
+ response: {
3012
+ json: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3013
+ };
2739
3014
  };
2740
3015
  'app.bsky.unspecced.getTaggedSuggestions': {
3016
+ /** @deprecated */
2741
3017
  output: AppBskyUnspeccedGetTaggedSuggestions.Output;
3018
+ response: {
3019
+ json: AppBskyUnspeccedGetTaggedSuggestions.Output;
3020
+ };
2742
3021
  };
2743
3022
  'app.bsky.unspecced.getTrendingTopics': {
2744
3023
  params: AppBskyUnspeccedGetTrendingTopics.Params;
3024
+ /** @deprecated */
2745
3025
  output: AppBskyUnspeccedGetTrendingTopics.Output;
3026
+ response: {
3027
+ json: AppBskyUnspeccedGetTrendingTopics.Output;
3028
+ };
2746
3029
  };
2747
3030
  'app.bsky.unspecced.searchActorsSkeleton': {
2748
3031
  params: AppBskyUnspeccedSearchActorsSkeleton.Params;
3032
+ /** @deprecated */
2749
3033
  output: AppBskyUnspeccedSearchActorsSkeleton.Output;
3034
+ response: {
3035
+ json: AppBskyUnspeccedSearchActorsSkeleton.Output;
3036
+ };
2750
3037
  };
2751
3038
  'app.bsky.unspecced.searchPostsSkeleton': {
2752
3039
  params: AppBskyUnspeccedSearchPostsSkeleton.Params;
3040
+ /** @deprecated */
2753
3041
  output: AppBskyUnspeccedSearchPostsSkeleton.Output;
3042
+ response: {
3043
+ json: AppBskyUnspeccedSearchPostsSkeleton.Output;
3044
+ };
2754
3045
  };
2755
3046
  'app.bsky.unspecced.searchStarterPacksSkeleton': {
2756
3047
  params: AppBskyUnspeccedSearchStarterPacksSkeleton.Params;
3048
+ /** @deprecated */
2757
3049
  output: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3050
+ response: {
3051
+ json: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3052
+ };
2758
3053
  };
2759
3054
  'app.bsky.video.getJobStatus': {
2760
3055
  params: AppBskyVideoGetJobStatus.Params;
3056
+ /** @deprecated */
2761
3057
  output: AppBskyVideoGetJobStatus.Output;
3058
+ response: {
3059
+ json: AppBskyVideoGetJobStatus.Output;
3060
+ };
2762
3061
  };
2763
3062
  'app.bsky.video.getUploadLimits': {
3063
+ /** @deprecated */
2764
3064
  output: AppBskyVideoGetUploadLimits.Output;
3065
+ response: {
3066
+ json: AppBskyVideoGetUploadLimits.Output;
3067
+ };
2765
3068
  };
2766
3069
  'chat.bsky.actor.exportAccountData': {
3070
+ /** @deprecated */
2767
3071
  output: ChatBskyActorExportAccountData.Output;
3072
+ response: {};
2768
3073
  };
2769
3074
  'chat.bsky.convo.getConvo': {
2770
3075
  params: ChatBskyConvoGetConvo.Params;
3076
+ /** @deprecated */
2771
3077
  output: ChatBskyConvoGetConvo.Output;
3078
+ response: {
3079
+ json: ChatBskyConvoGetConvo.Output;
3080
+ };
2772
3081
  };
2773
3082
  'chat.bsky.convo.getConvoAvailability': {
2774
3083
  params: ChatBskyConvoGetConvoAvailability.Params;
3084
+ /** @deprecated */
2775
3085
  output: ChatBskyConvoGetConvoAvailability.Output;
3086
+ response: {
3087
+ json: ChatBskyConvoGetConvoAvailability.Output;
3088
+ };
2776
3089
  };
2777
3090
  'chat.bsky.convo.getConvoForMembers': {
2778
3091
  params: ChatBskyConvoGetConvoForMembers.Params;
3092
+ /** @deprecated */
2779
3093
  output: ChatBskyConvoGetConvoForMembers.Output;
3094
+ response: {
3095
+ json: ChatBskyConvoGetConvoForMembers.Output;
3096
+ };
2780
3097
  };
2781
3098
  'chat.bsky.convo.getLog': {
2782
3099
  params: ChatBskyConvoGetLog.Params;
3100
+ /** @deprecated */
2783
3101
  output: ChatBskyConvoGetLog.Output;
3102
+ response: {
3103
+ json: ChatBskyConvoGetLog.Output;
3104
+ };
2784
3105
  };
2785
3106
  'chat.bsky.convo.getMessages': {
2786
3107
  params: ChatBskyConvoGetMessages.Params;
3108
+ /** @deprecated */
2787
3109
  output: ChatBskyConvoGetMessages.Output;
3110
+ response: {
3111
+ json: ChatBskyConvoGetMessages.Output;
3112
+ };
2788
3113
  };
2789
3114
  'chat.bsky.convo.listConvos': {
2790
3115
  params: ChatBskyConvoListConvos.Params;
3116
+ /** @deprecated */
2791
3117
  output: ChatBskyConvoListConvos.Output;
3118
+ response: {
3119
+ json: ChatBskyConvoListConvos.Output;
3120
+ };
2792
3121
  };
2793
3122
  'chat.bsky.moderation.getActorMetadata': {
2794
3123
  params: ChatBskyModerationGetActorMetadata.Params;
3124
+ /** @deprecated */
2795
3125
  output: ChatBskyModerationGetActorMetadata.Output;
3126
+ response: {
3127
+ json: ChatBskyModerationGetActorMetadata.Output;
3128
+ };
2796
3129
  };
2797
3130
  'chat.bsky.moderation.getMessageContext': {
2798
3131
  params: ChatBskyModerationGetMessageContext.Params;
3132
+ /** @deprecated */
2799
3133
  output: ChatBskyModerationGetMessageContext.Output;
3134
+ response: {
3135
+ json: ChatBskyModerationGetMessageContext.Output;
3136
+ };
2800
3137
  };
2801
3138
  }
2802
3139
  interface Procedures {
@@ -2805,7 +3142,11 @@ declare module '@atcute/client/lexicons' {
2805
3142
  };
2806
3143
  'app.bsky.feed.sendInteractions': {
2807
3144
  input: AppBskyFeedSendInteractions.Input;
3145
+ /** @deprecated */
2808
3146
  output: AppBskyFeedSendInteractions.Output;
3147
+ response: {
3148
+ json: AppBskyFeedSendInteractions.Output;
3149
+ };
2809
3150
  };
2810
3151
  'app.bsky.graph.muteActor': {
2811
3152
  input: AppBskyGraphMuteActor.Input;
@@ -2836,42 +3177,106 @@ declare module '@atcute/client/lexicons' {
2836
3177
  };
2837
3178
  'app.bsky.video.uploadVideo': {
2838
3179
  input: AppBskyVideoUploadVideo.Input;
3180
+ /** @deprecated */
2839
3181
  output: AppBskyVideoUploadVideo.Output;
3182
+ response: {
3183
+ json: AppBskyVideoUploadVideo.Output;
3184
+ };
2840
3185
  };
2841
3186
  'chat.bsky.actor.deleteAccount': {
3187
+ /** @deprecated */
2842
3188
  output: ChatBskyActorDeleteAccount.Output;
3189
+ response: {
3190
+ json: ChatBskyActorDeleteAccount.Output;
3191
+ };
2843
3192
  };
2844
3193
  'chat.bsky.convo.acceptConvo': {
2845
3194
  input: ChatBskyConvoAcceptConvo.Input;
3195
+ /** @deprecated */
2846
3196
  output: ChatBskyConvoAcceptConvo.Output;
3197
+ response: {
3198
+ json: ChatBskyConvoAcceptConvo.Output;
3199
+ };
3200
+ };
3201
+ 'chat.bsky.convo.addReaction': {
3202
+ input: ChatBskyConvoAddReaction.Input;
3203
+ /** @deprecated */
3204
+ output: ChatBskyConvoAddReaction.Output;
3205
+ response: {
3206
+ json: ChatBskyConvoAddReaction.Output;
3207
+ };
2847
3208
  };
2848
3209
  'chat.bsky.convo.deleteMessageForSelf': {
2849
3210
  input: ChatBskyConvoDeleteMessageForSelf.Input;
3211
+ /** @deprecated */
2850
3212
  output: ChatBskyConvoDeleteMessageForSelf.Output;
3213
+ response: {
3214
+ json: ChatBskyConvoDeleteMessageForSelf.Output;
3215
+ };
2851
3216
  };
2852
3217
  'chat.bsky.convo.leaveConvo': {
2853
3218
  input: ChatBskyConvoLeaveConvo.Input;
3219
+ /** @deprecated */
2854
3220
  output: ChatBskyConvoLeaveConvo.Output;
3221
+ response: {
3222
+ json: ChatBskyConvoLeaveConvo.Output;
3223
+ };
2855
3224
  };
2856
3225
  'chat.bsky.convo.muteConvo': {
2857
3226
  input: ChatBskyConvoMuteConvo.Input;
3227
+ /** @deprecated */
2858
3228
  output: ChatBskyConvoMuteConvo.Output;
3229
+ response: {
3230
+ json: ChatBskyConvoMuteConvo.Output;
3231
+ };
3232
+ };
3233
+ 'chat.bsky.convo.removeReaction': {
3234
+ input: ChatBskyConvoRemoveReaction.Input;
3235
+ /** @deprecated */
3236
+ output: ChatBskyConvoRemoveReaction.Output;
3237
+ response: {
3238
+ json: ChatBskyConvoRemoveReaction.Output;
3239
+ };
2859
3240
  };
2860
3241
  'chat.bsky.convo.sendMessage': {
2861
3242
  input: ChatBskyConvoSendMessage.Input;
3243
+ /** @deprecated */
2862
3244
  output: ChatBskyConvoSendMessage.Output;
3245
+ response: {
3246
+ json: ChatBskyConvoSendMessage.Output;
3247
+ };
2863
3248
  };
2864
3249
  'chat.bsky.convo.sendMessageBatch': {
2865
3250
  input: ChatBskyConvoSendMessageBatch.Input;
3251
+ /** @deprecated */
2866
3252
  output: ChatBskyConvoSendMessageBatch.Output;
3253
+ response: {
3254
+ json: ChatBskyConvoSendMessageBatch.Output;
3255
+ };
2867
3256
  };
2868
3257
  'chat.bsky.convo.unmuteConvo': {
2869
3258
  input: ChatBskyConvoUnmuteConvo.Input;
3259
+ /** @deprecated */
2870
3260
  output: ChatBskyConvoUnmuteConvo.Output;
3261
+ response: {
3262
+ json: ChatBskyConvoUnmuteConvo.Output;
3263
+ };
3264
+ };
3265
+ 'chat.bsky.convo.updateAllRead': {
3266
+ input: ChatBskyConvoUpdateAllRead.Input;
3267
+ /** @deprecated */
3268
+ output: ChatBskyConvoUpdateAllRead.Output;
3269
+ response: {
3270
+ json: ChatBskyConvoUpdateAllRead.Output;
3271
+ };
2871
3272
  };
2872
3273
  'chat.bsky.convo.updateRead': {
2873
3274
  input: ChatBskyConvoUpdateRead.Input;
3275
+ /** @deprecated */
2874
3276
  output: ChatBskyConvoUpdateRead.Output;
3277
+ response: {
3278
+ json: ChatBskyConvoUpdateRead.Output;
3279
+ };
2875
3280
  };
2876
3281
  'chat.bsky.moderation.updateActorAccess': {
2877
3282
  input: ChatBskyModerationUpdateActorAccess.Input;