@atcute/bluesky 1.0.15 → 2.0.1

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>[];
@@ -534,28 +534,28 @@ declare module '@atcute/client/lexicons' {
534
534
  }
535
535
  interface View {
536
536
  [Brand.Type]?: 'app.bsky.embed.video#view';
537
- cid: At.CID;
538
- playlist: string;
537
+ cid: At.Cid;
538
+ playlist: At.GenericUri;
539
539
  /**
540
540
  * Maximum string length: 10000 \
541
541
  * Maximum grapheme length: 1000
542
542
  */
543
543
  alt?: string;
544
544
  aspectRatio?: AppBskyEmbedDefs.AspectRatio;
545
- thumbnail?: string;
545
+ thumbnail?: At.GenericUri;
546
546
  }
547
547
  }
548
548
  namespace AppBskyFeedDefs {
549
549
  interface BlockedAuthor {
550
550
  [Brand.Type]?: 'app.bsky.feed.defs#blockedAuthor';
551
- did: At.DID;
551
+ did: At.Did;
552
552
  viewer?: AppBskyActorDefs.ViewerState;
553
553
  }
554
554
  interface BlockedPost {
555
555
  [Brand.Type]?: 'app.bsky.feed.defs#blockedPost';
556
556
  author: BlockedAuthor;
557
557
  blocked: boolean;
558
- uri: At.Uri;
558
+ uri: At.ResourceUri;
559
559
  }
560
560
  type ClickthroughAuthor = 'app.bsky.feed.defs#clickthroughAuthor';
561
561
  type ClickthroughEmbed = 'app.bsky.feed.defs#clickthroughEmbed';
@@ -576,14 +576,14 @@ declare module '@atcute/client/lexicons' {
576
576
  }
577
577
  interface GeneratorView {
578
578
  [Brand.Type]?: 'app.bsky.feed.defs#generatorView';
579
- cid: At.CID;
579
+ cid: At.Cid;
580
580
  creator: AppBskyActorDefs.ProfileView;
581
- did: At.DID;
581
+ did: At.Did;
582
582
  displayName: string;
583
583
  indexedAt: string;
584
- uri: At.Uri;
584
+ uri: At.ResourceUri;
585
585
  acceptsInteractions?: boolean;
586
- avatar?: string;
586
+ avatar?: At.GenericUri;
587
587
  contentMode?: 'app.bsky.feed.defs#contentModeUnspecified' | 'app.bsky.feed.defs#contentModeVideo' | (string & {});
588
588
  /**
589
589
  * Maximum string length: 3000 \
@@ -598,7 +598,7 @@ declare module '@atcute/client/lexicons' {
598
598
  }
599
599
  interface GeneratorViewerState {
600
600
  [Brand.Type]?: 'app.bsky.feed.defs#generatorViewerState';
601
- like?: At.Uri;
601
+ like?: At.ResourceUri;
602
602
  }
603
603
  interface Interaction {
604
604
  [Brand.Type]?: 'app.bsky.feed.defs#interaction';
@@ -608,7 +608,7 @@ declare module '@atcute/client/lexicons' {
608
608
  * Maximum string length: 2000
609
609
  */
610
610
  feedContext?: string;
611
- item?: At.Uri;
611
+ item?: At.ResourceUri;
612
612
  }
613
613
  type InteractionLike = 'app.bsky.feed.defs#interactionLike';
614
614
  type InteractionQuote = 'app.bsky.feed.defs#interactionQuote';
@@ -619,15 +619,15 @@ declare module '@atcute/client/lexicons' {
619
619
  interface NotFoundPost {
620
620
  [Brand.Type]?: 'app.bsky.feed.defs#notFoundPost';
621
621
  notFound: boolean;
622
- uri: At.Uri;
622
+ uri: At.ResourceUri;
623
623
  }
624
624
  interface PostView {
625
625
  [Brand.Type]?: 'app.bsky.feed.defs#postView';
626
626
  author: AppBskyActorDefs.ProfileViewBasic;
627
- cid: At.CID;
627
+ cid: At.Cid;
628
628
  indexedAt: string;
629
629
  record: unknown;
630
- uri: At.Uri;
630
+ uri: At.ResourceUri;
631
631
  embed?: Brand.Union<AppBskyEmbedExternal.View | AppBskyEmbedImages.View | AppBskyEmbedRecord.View | AppBskyEmbedRecordWithMedia.View | AppBskyEmbedVideo.View>;
632
632
  labels?: ComAtprotoLabelDefs.Label[];
633
633
  likeCount?: number;
@@ -656,7 +656,7 @@ declare module '@atcute/client/lexicons' {
656
656
  type RequestMore = 'app.bsky.feed.defs#requestMore';
657
657
  interface SkeletonFeedPost {
658
658
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonFeedPost';
659
- post: At.Uri;
659
+ post: At.ResourceUri;
660
660
  /**
661
661
  * Context that will be passed through to client and may be passed to feed generator back alongside interactions. \
662
662
  * Maximum string length: 2000
@@ -669,19 +669,19 @@ declare module '@atcute/client/lexicons' {
669
669
  }
670
670
  interface SkeletonReasonRepost {
671
671
  [Brand.Type]?: 'app.bsky.feed.defs#skeletonReasonRepost';
672
- repost: At.Uri;
672
+ repost: At.ResourceUri;
673
673
  }
674
674
  /** Metadata about this post within the context of the thread it is in. */
675
675
  interface ThreadContext {
676
676
  [Brand.Type]?: 'app.bsky.feed.defs#threadContext';
677
- rootAuthorLike?: At.Uri;
677
+ rootAuthorLike?: At.ResourceUri;
678
678
  }
679
679
  interface ThreadgateView {
680
680
  [Brand.Type]?: 'app.bsky.feed.defs#threadgateView';
681
- cid?: At.CID;
681
+ cid?: At.Cid;
682
682
  lists?: AppBskyGraphDefs.ListViewBasic[];
683
683
  record?: unknown;
684
- uri?: At.Uri;
684
+ uri?: At.ResourceUri;
685
685
  }
686
686
  interface ThreadViewPost {
687
687
  [Brand.Type]?: 'app.bsky.feed.defs#threadViewPost';
@@ -694,10 +694,10 @@ declare module '@atcute/client/lexicons' {
694
694
  interface ViewerState {
695
695
  [Brand.Type]?: 'app.bsky.feed.defs#viewerState';
696
696
  embeddingDisabled?: boolean;
697
- like?: At.Uri;
697
+ like?: At.ResourceUri;
698
698
  pinned?: boolean;
699
699
  replyDisabled?: boolean;
700
- repost?: At.Uri;
700
+ repost?: At.ResourceUri;
701
701
  threadMuted?: boolean;
702
702
  }
703
703
  }
@@ -707,13 +707,13 @@ declare module '@atcute/client/lexicons' {
707
707
  }
708
708
  type Input = undefined;
709
709
  interface Output {
710
- did: At.DID;
710
+ did: At.Did;
711
711
  feeds: Feed[];
712
712
  links?: Links;
713
713
  }
714
714
  interface Feed {
715
715
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#feed';
716
- uri: At.Uri;
716
+ uri: At.ResourceUri;
717
717
  }
718
718
  interface Links {
719
719
  [Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#links';
@@ -726,7 +726,7 @@ declare module '@atcute/client/lexicons' {
726
726
  interface Record {
727
727
  $type: 'app.bsky.feed.generator';
728
728
  createdAt: string;
729
- did: At.DID;
729
+ did: At.Did;
730
730
  /**
731
731
  * Maximum string length: 240 \
732
732
  * Maximum grapheme length: 24
@@ -749,7 +749,7 @@ declare module '@atcute/client/lexicons' {
749
749
  /** Get a list of feeds (feed generator records) created by the actor (in the actor's repo). */
750
750
  namespace AppBskyFeedGetActorFeeds {
751
751
  interface Params {
752
- actor: string;
752
+ actor: At.Identifier;
753
753
  cursor?: string;
754
754
  /**
755
755
  * Minimum: 1 \
@@ -767,7 +767,7 @@ declare module '@atcute/client/lexicons' {
767
767
  /** Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. */
768
768
  namespace AppBskyFeedGetActorLikes {
769
769
  interface Params {
770
- actor: string;
770
+ actor: At.Identifier;
771
771
  cursor?: string;
772
772
  /**
773
773
  * Minimum: 1 \
@@ -789,7 +789,7 @@ declare module '@atcute/client/lexicons' {
789
789
  /** Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. */
790
790
  namespace AppBskyFeedGetAuthorFeed {
791
791
  interface Params {
792
- actor: string;
792
+ actor: At.Identifier;
793
793
  cursor?: string;
794
794
  /**
795
795
  * Combinations of post/repost types to include in response.
@@ -818,7 +818,7 @@ declare module '@atcute/client/lexicons' {
818
818
  /** Get a hydrated feed from an actor's selected feed generator. Implemented by App View. */
819
819
  namespace AppBskyFeedGetFeed {
820
820
  interface Params {
821
- feed: At.Uri;
821
+ feed: At.ResourceUri;
822
822
  cursor?: string;
823
823
  /**
824
824
  * Minimum: 1 \
@@ -840,7 +840,7 @@ declare module '@atcute/client/lexicons' {
840
840
  namespace AppBskyFeedGetFeedGenerator {
841
841
  interface Params {
842
842
  /** AT-URI of the feed generator record. */
843
- feed: At.Uri;
843
+ feed: At.ResourceUri;
844
844
  }
845
845
  type Input = undefined;
846
846
  interface Output {
@@ -854,7 +854,7 @@ declare module '@atcute/client/lexicons' {
854
854
  /** Get information about a list of feed generators. */
855
855
  namespace AppBskyFeedGetFeedGenerators {
856
856
  interface Params {
857
- feeds: At.Uri[];
857
+ feeds: At.ResourceUri[];
858
858
  }
859
859
  type Input = undefined;
860
860
  interface Output {
@@ -865,7 +865,7 @@ declare module '@atcute/client/lexicons' {
865
865
  namespace AppBskyFeedGetFeedSkeleton {
866
866
  interface Params {
867
867
  /** Reference to feed generator record describing the specific feed being requested. */
868
- feed: At.Uri;
868
+ feed: At.ResourceUri;
869
869
  cursor?: string;
870
870
  /**
871
871
  * Minimum: 1 \
@@ -887,9 +887,9 @@ declare module '@atcute/client/lexicons' {
887
887
  namespace AppBskyFeedGetLikes {
888
888
  interface Params {
889
889
  /** AT-URI of the subject (eg, a post record). */
890
- uri: At.Uri;
890
+ uri: At.ResourceUri;
891
891
  /** CID of the subject record (aka, specific version of record), to filter likes. */
892
- cid?: At.CID;
892
+ cid?: At.Cid;
893
893
  cursor?: string;
894
894
  /**
895
895
  * Minimum: 1 \
@@ -901,8 +901,8 @@ declare module '@atcute/client/lexicons' {
901
901
  type Input = undefined;
902
902
  interface Output {
903
903
  likes: Like[];
904
- uri: At.Uri;
905
- cid?: At.CID;
904
+ uri: At.ResourceUri;
905
+ cid?: At.Cid;
906
906
  cursor?: string;
907
907
  }
908
908
  interface Like {
@@ -916,7 +916,7 @@ declare module '@atcute/client/lexicons' {
916
916
  namespace AppBskyFeedGetListFeed {
917
917
  interface Params {
918
918
  /** Reference (AT-URI) to the list record. */
919
- list: At.Uri;
919
+ list: At.ResourceUri;
920
920
  cursor?: string;
921
921
  /**
922
922
  * Minimum: 1 \
@@ -941,7 +941,7 @@ declare module '@atcute/client/lexicons' {
941
941
  * List of post AT-URIs to return hydrated views for. \
942
942
  * Maximum array length: 25
943
943
  */
944
- uris: At.Uri[];
944
+ uris: At.ResourceUri[];
945
945
  }
946
946
  type Input = undefined;
947
947
  interface Output {
@@ -952,7 +952,7 @@ declare module '@atcute/client/lexicons' {
952
952
  namespace AppBskyFeedGetPostThread {
953
953
  interface Params {
954
954
  /** Reference (AT-URI) to post record. */
955
- uri: At.Uri;
955
+ uri: At.ResourceUri;
956
956
  /**
957
957
  * How many levels of reply depth should be included in response. \
958
958
  * Minimum: 0 \
@@ -981,9 +981,9 @@ declare module '@atcute/client/lexicons' {
981
981
  namespace AppBskyFeedGetQuotes {
982
982
  interface Params {
983
983
  /** Reference (AT-URI) of post record */
984
- uri: At.Uri;
984
+ uri: At.ResourceUri;
985
985
  /** If supplied, filters to quotes of specific version (by CID) of the post record. */
986
- cid?: At.CID;
986
+ cid?: At.Cid;
987
987
  cursor?: string;
988
988
  /**
989
989
  * Minimum: 1 \
@@ -995,8 +995,8 @@ declare module '@atcute/client/lexicons' {
995
995
  type Input = undefined;
996
996
  interface Output {
997
997
  posts: AppBskyFeedDefs.PostView[];
998
- uri: At.Uri;
999
- cid?: At.CID;
998
+ uri: At.ResourceUri;
999
+ cid?: At.Cid;
1000
1000
  cursor?: string;
1001
1001
  }
1002
1002
  }
@@ -1004,9 +1004,9 @@ declare module '@atcute/client/lexicons' {
1004
1004
  namespace AppBskyFeedGetRepostedBy {
1005
1005
  interface Params {
1006
1006
  /** Reference (AT-URI) of post record */
1007
- uri: At.Uri;
1007
+ uri: At.ResourceUri;
1008
1008
  /** If supplied, filters to reposts of specific version (by CID) of the post record. */
1009
- cid?: At.CID;
1009
+ cid?: At.Cid;
1010
1010
  cursor?: string;
1011
1011
  /**
1012
1012
  * Minimum: 1 \
@@ -1018,8 +1018,8 @@ declare module '@atcute/client/lexicons' {
1018
1018
  type Input = undefined;
1019
1019
  interface Output {
1020
1020
  repostedBy: AppBskyActorDefs.ProfileView[];
1021
- uri: At.Uri;
1022
- cid?: At.CID;
1021
+ uri: At.ResourceUri;
1022
+ cid?: At.Cid;
1023
1023
  cursor?: string;
1024
1024
  }
1025
1025
  }
@@ -1137,12 +1137,12 @@ declare module '@atcute/client/lexicons' {
1137
1137
  $type: 'app.bsky.feed.postgate';
1138
1138
  createdAt: string;
1139
1139
  /** Reference (AT-URI) to the post record. */
1140
- post: At.Uri;
1140
+ post: At.ResourceUri;
1141
1141
  /**
1142
1142
  * List of AT-URIs embedding this post that the author has detached from. \
1143
1143
  * Maximum array length: 50
1144
1144
  */
1145
- detachedEmbeddingUris?: At.Uri[];
1145
+ detachedEmbeddingUris?: At.ResourceUri[];
1146
1146
  /**
1147
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. \
1148
1148
  * Maximum array length: 5
@@ -1168,7 +1168,7 @@ declare module '@atcute/client/lexicons' {
1168
1168
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
1169
1169
  q: string;
1170
1170
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
1171
- author?: string;
1171
+ author?: At.Identifier;
1172
1172
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
1173
1173
  cursor?: string;
1174
1174
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -1182,7 +1182,7 @@ declare module '@atcute/client/lexicons' {
1182
1182
  */
1183
1183
  limit?: number;
1184
1184
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
1185
- mentions?: string;
1185
+ mentions?: At.Identifier;
1186
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). */
1187
1187
  since?: string;
1188
1188
  /**
@@ -1199,7 +1199,7 @@ declare module '@atcute/client/lexicons' {
1199
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). */
1200
1200
  until?: string;
1201
1201
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
1202
- url?: string;
1202
+ url?: At.GenericUri;
1203
1203
  }
1204
1204
  type Input = undefined;
1205
1205
  interface Output {
@@ -1228,7 +1228,7 @@ declare module '@atcute/client/lexicons' {
1228
1228
  $type: 'app.bsky.feed.threadgate';
1229
1229
  createdAt: string;
1230
1230
  /** Reference (AT-URI) to the post record. */
1231
- post: At.Uri;
1231
+ post: At.ResourceUri;
1232
1232
  /**
1233
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. \
1234
1234
  * Maximum array length: 5
@@ -1238,7 +1238,7 @@ declare module '@atcute/client/lexicons' {
1238
1238
  * List of hidden reply URIs. \
1239
1239
  * Maximum array length: 50
1240
1240
  */
1241
- hiddenReplies?: At.Uri[];
1241
+ hiddenReplies?: At.ResourceUri[];
1242
1242
  }
1243
1243
  /** Allow replies from actors who follow you. */
1244
1244
  interface FollowerRule {
@@ -1251,7 +1251,7 @@ declare module '@atcute/client/lexicons' {
1251
1251
  /** Allow replies from actors on a list. */
1252
1252
  interface ListRule {
1253
1253
  [Brand.Type]?: 'app.bsky.feed.threadgate#listRule';
1254
- list: At.Uri;
1254
+ list: At.ResourceUri;
1255
1255
  }
1256
1256
  /** Allow replies from actors mentioned in your post. */
1257
1257
  interface MentionRule {
@@ -1264,7 +1264,7 @@ declare module '@atcute/client/lexicons' {
1264
1264
  $type: 'app.bsky.graph.block';
1265
1265
  createdAt: string;
1266
1266
  /** DID of the account to be blocked. */
1267
- subject: At.DID;
1267
+ subject: At.Did;
1268
1268
  }
1269
1269
  }
1270
1270
  namespace AppBskyGraphDefs {
@@ -1272,12 +1272,12 @@ declare module '@atcute/client/lexicons' {
1272
1272
  interface ListItemView {
1273
1273
  [Brand.Type]?: 'app.bsky.graph.defs#listItemView';
1274
1274
  subject: AppBskyActorDefs.ProfileView;
1275
- uri: At.Uri;
1275
+ uri: At.ResourceUri;
1276
1276
  }
1277
1277
  type ListPurpose = 'app.bsky.graph.defs#curatelist' | 'app.bsky.graph.defs#modlist' | 'app.bsky.graph.defs#referencelist' | (string & {});
1278
1278
  interface ListView {
1279
1279
  [Brand.Type]?: 'app.bsky.graph.defs#listView';
1280
- cid: At.CID;
1280
+ cid: At.Cid;
1281
1281
  creator: AppBskyActorDefs.ProfileView;
1282
1282
  indexedAt: string;
1283
1283
  /**
@@ -1286,8 +1286,8 @@ declare module '@atcute/client/lexicons' {
1286
1286
  */
1287
1287
  name: string;
1288
1288
  purpose: ListPurpose;
1289
- uri: At.Uri;
1290
- avatar?: string;
1289
+ uri: At.ResourceUri;
1290
+ avatar?: At.GenericUri;
1291
1291
  /**
1292
1292
  * Maximum string length: 3000 \
1293
1293
  * Maximum grapheme length: 300
@@ -1301,15 +1301,15 @@ declare module '@atcute/client/lexicons' {
1301
1301
  }
1302
1302
  interface ListViewBasic {
1303
1303
  [Brand.Type]?: 'app.bsky.graph.defs#listViewBasic';
1304
- cid: At.CID;
1304
+ cid: At.Cid;
1305
1305
  /**
1306
1306
  * Minimum string length: 1 \
1307
1307
  * Maximum string length: 64
1308
1308
  */
1309
1309
  name: string;
1310
1310
  purpose: ListPurpose;
1311
- uri: At.Uri;
1312
- avatar?: string;
1311
+ uri: At.ResourceUri;
1312
+ avatar?: At.GenericUri;
1313
1313
  indexedAt?: string;
1314
1314
  labels?: ComAtprotoLabelDefs.Label[];
1315
1315
  /** Minimum: 0 */
@@ -1318,33 +1318,33 @@ declare module '@atcute/client/lexicons' {
1318
1318
  }
1319
1319
  interface ListViewerState {
1320
1320
  [Brand.Type]?: 'app.bsky.graph.defs#listViewerState';
1321
- blocked?: At.Uri;
1321
+ blocked?: At.ResourceUri;
1322
1322
  muted?: boolean;
1323
1323
  }
1324
1324
  type Modlist = 'app.bsky.graph.defs#modlist';
1325
1325
  /** indicates that a handle or DID could not be resolved */
1326
1326
  interface NotFoundActor {
1327
1327
  [Brand.Type]?: 'app.bsky.graph.defs#notFoundActor';
1328
- actor: string;
1328
+ actor: At.Identifier;
1329
1329
  notFound: boolean;
1330
1330
  }
1331
1331
  type Referencelist = 'app.bsky.graph.defs#referencelist';
1332
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) */
1333
1333
  interface Relationship {
1334
1334
  [Brand.Type]?: 'app.bsky.graph.defs#relationship';
1335
- did: At.DID;
1335
+ did: At.Did;
1336
1336
  /** if the actor is followed by this DID, contains the AT-URI of the follow record */
1337
- followedBy?: At.Uri;
1337
+ followedBy?: At.ResourceUri;
1338
1338
  /** if the actor follows this DID, this is the AT-URI of the follow record */
1339
- following?: At.Uri;
1339
+ following?: At.ResourceUri;
1340
1340
  }
1341
1341
  interface StarterPackView {
1342
1342
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackView';
1343
- cid: At.CID;
1343
+ cid: At.Cid;
1344
1344
  creator: AppBskyActorDefs.ProfileViewBasic;
1345
1345
  indexedAt: string;
1346
1346
  record: unknown;
1347
- uri: At.Uri;
1347
+ uri: At.ResourceUri;
1348
1348
  /** Maximum array length: 3 */
1349
1349
  feeds?: AppBskyFeedDefs.GeneratorView[];
1350
1350
  /** Minimum: 0 */
@@ -1358,11 +1358,11 @@ declare module '@atcute/client/lexicons' {
1358
1358
  }
1359
1359
  interface StarterPackViewBasic {
1360
1360
  [Brand.Type]?: 'app.bsky.graph.defs#starterPackViewBasic';
1361
- cid: At.CID;
1361
+ cid: At.Cid;
1362
1362
  creator: AppBskyActorDefs.ProfileViewBasic;
1363
1363
  indexedAt: string;
1364
1364
  record: unknown;
1365
- uri: At.Uri;
1365
+ uri: At.ResourceUri;
1366
1366
  /** Minimum: 0 */
1367
1367
  joinedAllTimeCount?: number;
1368
1368
  /** Minimum: 0 */
@@ -1377,13 +1377,13 @@ declare module '@atcute/client/lexicons' {
1377
1377
  interface Record {
1378
1378
  $type: 'app.bsky.graph.follow';
1379
1379
  createdAt: string;
1380
- subject: At.DID;
1380
+ subject: At.Did;
1381
1381
  }
1382
1382
  }
1383
1383
  /** Get a list of starter packs created by the actor. */
1384
1384
  namespace AppBskyGraphGetActorStarterPacks {
1385
1385
  interface Params {
1386
- actor: string;
1386
+ actor: At.Identifier;
1387
1387
  cursor?: string;
1388
1388
  /**
1389
1389
  * Minimum: 1 \
@@ -1418,7 +1418,7 @@ declare module '@atcute/client/lexicons' {
1418
1418
  /** Enumerates accounts which follow a specified account (actor). */
1419
1419
  namespace AppBskyGraphGetFollowers {
1420
1420
  interface Params {
1421
- actor: string;
1421
+ actor: At.Identifier;
1422
1422
  cursor?: string;
1423
1423
  /**
1424
1424
  * Minimum: 1 \
@@ -1437,7 +1437,7 @@ declare module '@atcute/client/lexicons' {
1437
1437
  /** Enumerates accounts which a specified account (actor) follows. */
1438
1438
  namespace AppBskyGraphGetFollows {
1439
1439
  interface Params {
1440
- actor: string;
1440
+ actor: At.Identifier;
1441
1441
  cursor?: string;
1442
1442
  /**
1443
1443
  * Minimum: 1 \
@@ -1456,7 +1456,7 @@ declare module '@atcute/client/lexicons' {
1456
1456
  /** Enumerates accounts which follow a specified account (actor) and are followed by the viewer. */
1457
1457
  namespace AppBskyGraphGetKnownFollowers {
1458
1458
  interface Params {
1459
- actor: string;
1459
+ actor: At.Identifier;
1460
1460
  cursor?: string;
1461
1461
  /**
1462
1462
  * Minimum: 1 \
@@ -1476,7 +1476,7 @@ declare module '@atcute/client/lexicons' {
1476
1476
  namespace AppBskyGraphGetList {
1477
1477
  interface Params {
1478
1478
  /** Reference (AT-URI) of the list record to hydrate. */
1479
- list: At.Uri;
1479
+ list: At.ResourceUri;
1480
1480
  cursor?: string;
1481
1481
  /**
1482
1482
  * Minimum: 1 \
@@ -1530,7 +1530,7 @@ declare module '@atcute/client/lexicons' {
1530
1530
  namespace AppBskyGraphGetLists {
1531
1531
  interface Params {
1532
1532
  /** The account (actor) to enumerate lists from. */
1533
- actor: string;
1533
+ actor: At.Identifier;
1534
1534
  cursor?: string;
1535
1535
  /**
1536
1536
  * Minimum: 1 \
@@ -1566,17 +1566,17 @@ declare module '@atcute/client/lexicons' {
1566
1566
  namespace AppBskyGraphGetRelationships {
1567
1567
  interface Params {
1568
1568
  /** Primary account requesting relationships for. */
1569
- actor: string;
1569
+ actor: At.Identifier;
1570
1570
  /**
1571
1571
  * List of 'other' accounts to be related back to the primary. \
1572
1572
  * Maximum array length: 30
1573
1573
  */
1574
- others?: string[];
1574
+ others?: At.Identifier[];
1575
1575
  }
1576
1576
  type Input = undefined;
1577
1577
  interface Output {
1578
1578
  relationships: Brand.Union<AppBskyGraphDefs.NotFoundActor | AppBskyGraphDefs.Relationship>[];
1579
- actor?: At.DID;
1579
+ actor?: At.Did;
1580
1580
  }
1581
1581
  interface Errors {
1582
1582
  ActorNotFound: {};
@@ -1586,7 +1586,7 @@ declare module '@atcute/client/lexicons' {
1586
1586
  namespace AppBskyGraphGetStarterPack {
1587
1587
  interface Params {
1588
1588
  /** Reference (AT-URI) of the starter pack record. */
1589
- starterPack: At.Uri;
1589
+ starterPack: At.ResourceUri;
1590
1590
  }
1591
1591
  type Input = undefined;
1592
1592
  interface Output {
@@ -1597,7 +1597,7 @@ declare module '@atcute/client/lexicons' {
1597
1597
  namespace AppBskyGraphGetStarterPacks {
1598
1598
  interface Params {
1599
1599
  /** Maximum array length: 25 */
1600
- uris: At.Uri[];
1600
+ uris: At.ResourceUri[];
1601
1601
  }
1602
1602
  type Input = undefined;
1603
1603
  interface Output {
@@ -1607,7 +1607,7 @@ declare module '@atcute/client/lexicons' {
1607
1607
  /** Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account. */
1608
1608
  namespace AppBskyGraphGetSuggestedFollowsByActor {
1609
1609
  interface Params {
1610
- actor: string;
1610
+ actor: At.Identifier;
1611
1611
  }
1612
1612
  type Input = undefined;
1613
1613
  interface Output {
@@ -1650,7 +1650,7 @@ declare module '@atcute/client/lexicons' {
1650
1650
  $type: 'app.bsky.graph.listblock';
1651
1651
  createdAt: string;
1652
1652
  /** Reference (AT-URI) to the mod list record. */
1653
- subject: At.Uri;
1653
+ subject: At.ResourceUri;
1654
1654
  }
1655
1655
  }
1656
1656
  namespace AppBskyGraphListitem {
@@ -1659,9 +1659,9 @@ declare module '@atcute/client/lexicons' {
1659
1659
  $type: 'app.bsky.graph.listitem';
1660
1660
  createdAt: string;
1661
1661
  /** Reference (AT-URI) to the list record (app.bsky.graph.list). */
1662
- list: At.Uri;
1662
+ list: At.ResourceUri;
1663
1663
  /** The account which is included on the list. */
1664
- subject: At.DID;
1664
+ subject: At.Did;
1665
1665
  }
1666
1666
  }
1667
1667
  /** Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth. */
@@ -1669,7 +1669,7 @@ declare module '@atcute/client/lexicons' {
1669
1669
  interface Params {
1670
1670
  }
1671
1671
  interface Input {
1672
- actor: string;
1672
+ actor: At.Identifier;
1673
1673
  }
1674
1674
  type Output = undefined;
1675
1675
  }
@@ -1678,7 +1678,7 @@ declare module '@atcute/client/lexicons' {
1678
1678
  interface Params {
1679
1679
  }
1680
1680
  interface Input {
1681
- list: At.Uri;
1681
+ list: At.ResourceUri;
1682
1682
  }
1683
1683
  type Output = undefined;
1684
1684
  }
@@ -1687,7 +1687,7 @@ declare module '@atcute/client/lexicons' {
1687
1687
  interface Params {
1688
1688
  }
1689
1689
  interface Input {
1690
- root: At.Uri;
1690
+ root: At.ResourceUri;
1691
1691
  }
1692
1692
  type Output = undefined;
1693
1693
  }
@@ -1716,7 +1716,7 @@ declare module '@atcute/client/lexicons' {
1716
1716
  $type: 'app.bsky.graph.starterpack';
1717
1717
  createdAt: string;
1718
1718
  /** Reference (AT-URI) to the list record. */
1719
- list: At.Uri;
1719
+ list: At.ResourceUri;
1720
1720
  /**
1721
1721
  * Display name for starter pack; can not be empty. \
1722
1722
  * Minimum string length: 1 \
@@ -1735,7 +1735,7 @@ declare module '@atcute/client/lexicons' {
1735
1735
  }
1736
1736
  interface FeedItem {
1737
1737
  [Brand.Type]?: 'app.bsky.graph.starterpack#feedItem';
1738
- uri: At.Uri;
1738
+ uri: At.ResourceUri;
1739
1739
  }
1740
1740
  }
1741
1741
  /** Unmutes the specified account. Requires auth. */
@@ -1743,7 +1743,7 @@ declare module '@atcute/client/lexicons' {
1743
1743
  interface Params {
1744
1744
  }
1745
1745
  interface Input {
1746
- actor: string;
1746
+ actor: At.Identifier;
1747
1747
  }
1748
1748
  type Output = undefined;
1749
1749
  }
@@ -1752,7 +1752,7 @@ declare module '@atcute/client/lexicons' {
1752
1752
  interface Params {
1753
1753
  }
1754
1754
  interface Input {
1755
- list: At.Uri;
1755
+ list: At.ResourceUri;
1756
1756
  }
1757
1757
  type Output = undefined;
1758
1758
  }
@@ -1761,10 +1761,24 @@ declare module '@atcute/client/lexicons' {
1761
1761
  interface Params {
1762
1762
  }
1763
1763
  interface Input {
1764
- root: At.Uri;
1764
+ root: At.ResourceUri;
1765
1765
  }
1766
1766
  type Output = undefined;
1767
1767
  }
1768
+ namespace AppBskyGraphVerification {
1769
+ /** Record declaring a verification relationship between two accounts. Verifications are only considered valid by an app if issued by an account the app considers trusted. */
1770
+ interface Record {
1771
+ $type: 'app.bsky.graph.verification';
1772
+ /** Date of when the verification was created. */
1773
+ createdAt: string;
1774
+ /** Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying. */
1775
+ displayName: string;
1776
+ /** Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying. */
1777
+ handle: At.Handle;
1778
+ /** DID of the subject the verification applies to. */
1779
+ subject: At.Did;
1780
+ }
1781
+ }
1768
1782
  namespace AppBskyLabelerDefs {
1769
1783
  interface LabelerPolicies {
1770
1784
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerPolicies';
@@ -1775,10 +1789,10 @@ declare module '@atcute/client/lexicons' {
1775
1789
  }
1776
1790
  interface LabelerView {
1777
1791
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerView';
1778
- cid: At.CID;
1792
+ cid: At.Cid;
1779
1793
  creator: AppBskyActorDefs.ProfileView;
1780
1794
  indexedAt: string;
1781
- uri: At.Uri;
1795
+ uri: At.ResourceUri;
1782
1796
  labels?: ComAtprotoLabelDefs.Label[];
1783
1797
  /** Minimum: 0 */
1784
1798
  likeCount?: number;
@@ -1786,31 +1800,31 @@ declare module '@atcute/client/lexicons' {
1786
1800
  }
1787
1801
  interface LabelerViewDetailed {
1788
1802
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewDetailed';
1789
- cid: At.CID;
1803
+ cid: At.Cid;
1790
1804
  creator: AppBskyActorDefs.ProfileView;
1791
1805
  indexedAt: string;
1792
1806
  policies: AppBskyLabelerDefs.LabelerPolicies;
1793
- uri: At.Uri;
1807
+ uri: At.ResourceUri;
1794
1808
  labels?: ComAtprotoLabelDefs.Label[];
1795
1809
  /** Minimum: 0 */
1796
1810
  likeCount?: number;
1797
1811
  /** 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
1812
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1799
1813
  /** 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?: string[];
1814
+ subjectCollections?: At.Nsid[];
1801
1815
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1802
1816
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1803
1817
  viewer?: LabelerViewerState;
1804
1818
  }
1805
1819
  interface LabelerViewerState {
1806
1820
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewerState';
1807
- like?: At.Uri;
1821
+ like?: At.ResourceUri;
1808
1822
  }
1809
1823
  }
1810
1824
  /** Get information about a list of labeler services. */
1811
1825
  namespace AppBskyLabelerGetServices {
1812
1826
  interface Params {
1813
- dids: At.DID[];
1827
+ dids: At.Did[];
1814
1828
  /** @default false */
1815
1829
  detailed?: boolean;
1816
1830
  }
@@ -1829,7 +1843,7 @@ declare module '@atcute/client/lexicons' {
1829
1843
  /** 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
1844
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1831
1845
  /** 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?: string[];
1846
+ subjectCollections?: At.Nsid[];
1833
1847
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1834
1848
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1835
1849
  }
@@ -1873,15 +1887,15 @@ declare module '@atcute/client/lexicons' {
1873
1887
  interface Notification {
1874
1888
  [Brand.Type]?: 'app.bsky.notification.listNotifications#notification';
1875
1889
  author: AppBskyActorDefs.ProfileView;
1876
- cid: At.CID;
1890
+ cid: At.Cid;
1877
1891
  indexedAt: string;
1878
1892
  isRead: boolean;
1879
1893
  /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
1880
1894
  reason: 'follow' | 'like' | 'mention' | 'quote' | 'reply' | 'repost' | 'starterpack-joined' | (string & {});
1881
1895
  record: unknown;
1882
- uri: At.Uri;
1896
+ uri: At.ResourceUri;
1883
1897
  labels?: ComAtprotoLabelDefs.Label[];
1884
- reasonSubject?: At.Uri;
1898
+ reasonSubject?: At.ResourceUri;
1885
1899
  }
1886
1900
  }
1887
1901
  /** Set notification-related preferences for an account. Requires auth. */
@@ -1900,7 +1914,7 @@ declare module '@atcute/client/lexicons' {
1900
1914
  interface Input {
1901
1915
  appId: string;
1902
1916
  platform: 'android' | 'ios' | 'web' | (string & {});
1903
- serviceDid: At.DID;
1917
+ serviceDid: At.Did;
1904
1918
  token: string;
1905
1919
  }
1906
1920
  type Output = undefined;
@@ -1932,12 +1946,12 @@ declare module '@atcute/client/lexicons' {
1932
1946
  /** Facet feature for a URL. The text URL may have been simplified or truncated, but the facet reference should be a complete URL. */
1933
1947
  interface Link {
1934
1948
  [Brand.Type]?: 'app.bsky.richtext.facet#link';
1935
- uri: string;
1949
+ uri: At.GenericUri;
1936
1950
  }
1937
1951
  /** Facet feature for mention of another account. The text is usually a handle, including a '@' prefix, but the facet reference is a DID. */
1938
1952
  interface Mention {
1939
1953
  [Brand.Type]?: 'app.bsky.richtext.facet#mention';
1940
- did: At.DID;
1954
+ did: At.Did;
1941
1955
  }
1942
1956
  /** 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'). */
1943
1957
  interface Tag {
@@ -1952,15 +1966,26 @@ declare module '@atcute/client/lexicons' {
1952
1966
  namespace AppBskyUnspeccedDefs {
1953
1967
  interface SkeletonSearchActor {
1954
1968
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchActor';
1955
- did: At.DID;
1969
+ did: At.Did;
1956
1970
  }
1957
1971
  interface SkeletonSearchPost {
1958
1972
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchPost';
1959
- uri: At.Uri;
1973
+ uri: At.ResourceUri;
1960
1974
  }
1961
1975
  interface SkeletonSearchStarterPack {
1962
1976
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchStarterPack';
1963
- uri: At.Uri;
1977
+ uri: At.ResourceUri;
1978
+ }
1979
+ interface SkeletonTrend {
1980
+ [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonTrend';
1981
+ dids: At.Did[];
1982
+ displayName: string;
1983
+ link: string;
1984
+ postCount: number;
1985
+ startedAt: string;
1986
+ topic: string;
1987
+ category?: string;
1988
+ status?: 'hot' | (string & {});
1964
1989
  }
1965
1990
  interface TrendingTopic {
1966
1991
  [Brand.Type]?: 'app.bsky.unspecced.defs#trendingTopic';
@@ -1969,6 +1994,17 @@ declare module '@atcute/client/lexicons' {
1969
1994
  description?: string;
1970
1995
  displayName?: string;
1971
1996
  }
1997
+ interface TrendView {
1998
+ [Brand.Type]?: 'app.bsky.unspecced.defs#trendView';
1999
+ actors: AppBskyActorDefs.ProfileViewBasic[];
2000
+ displayName: string;
2001
+ link: string;
2002
+ postCount: number;
2003
+ startedAt: string;
2004
+ topic: string;
2005
+ category?: string;
2006
+ status?: 'hot' | (string & {});
2007
+ }
1972
2008
  }
1973
2009
  /** Get miscellaneous runtime configuration. */
1974
2010
  namespace AppBskyUnspeccedGetConfig {
@@ -1997,6 +2033,106 @@ declare module '@atcute/client/lexicons' {
1997
2033
  cursor?: string;
1998
2034
  }
1999
2035
  }
2036
+ /** Get a list of suggested feeds */
2037
+ namespace AppBskyUnspeccedGetSuggestedFeeds {
2038
+ interface Params {
2039
+ /**
2040
+ * Minimum: 1 \
2041
+ * Maximum: 25
2042
+ * @default 10
2043
+ */
2044
+ limit?: number;
2045
+ }
2046
+ type Input = undefined;
2047
+ interface Output {
2048
+ feeds: AppBskyFeedDefs.GeneratorView[];
2049
+ }
2050
+ }
2051
+ /** Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds */
2052
+ namespace AppBskyUnspeccedGetSuggestedFeedsSkeleton {
2053
+ interface Params {
2054
+ /**
2055
+ * Minimum: 1 \
2056
+ * Maximum: 25
2057
+ * @default 10
2058
+ */
2059
+ limit?: number;
2060
+ /** DID of the account making the request (not included for public/unauthenticated queries). */
2061
+ viewer?: At.Did;
2062
+ }
2063
+ type Input = undefined;
2064
+ interface Output {
2065
+ feeds: At.ResourceUri[];
2066
+ }
2067
+ }
2068
+ /** Get a list of suggested starterpacks */
2069
+ namespace AppBskyUnspeccedGetSuggestedStarterPacks {
2070
+ interface Params {
2071
+ /**
2072
+ * Minimum: 1 \
2073
+ * Maximum: 25
2074
+ * @default 10
2075
+ */
2076
+ limit?: number;
2077
+ }
2078
+ type Input = undefined;
2079
+ interface Output {
2080
+ starterPacks: AppBskyGraphDefs.StarterPackView[];
2081
+ }
2082
+ }
2083
+ /** Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks */
2084
+ namespace AppBskyUnspeccedGetSuggestedStarterPacksSkeleton {
2085
+ interface Params {
2086
+ /**
2087
+ * Minimum: 1 \
2088
+ * Maximum: 25
2089
+ * @default 10
2090
+ */
2091
+ limit?: number;
2092
+ /** DID of the account making the request (not included for public/unauthenticated queries). */
2093
+ viewer?: At.Did;
2094
+ }
2095
+ type Input = undefined;
2096
+ interface Output {
2097
+ starterPacks: At.ResourceUri[];
2098
+ }
2099
+ }
2100
+ /** Get a list of suggested users */
2101
+ namespace AppBskyUnspeccedGetSuggestedUsers {
2102
+ interface Params {
2103
+ /** Category of users to get suggestions for. */
2104
+ category?: string;
2105
+ /**
2106
+ * Minimum: 1 \
2107
+ * Maximum: 50
2108
+ * @default 25
2109
+ */
2110
+ limit?: number;
2111
+ }
2112
+ type Input = undefined;
2113
+ interface Output {
2114
+ actors: AppBskyActorDefs.ProfileView[];
2115
+ }
2116
+ }
2117
+ /** Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers */
2118
+ namespace AppBskyUnspeccedGetSuggestedUsersSkeleton {
2119
+ interface Params {
2120
+ /** Category of users to get suggestions for. */
2121
+ category?: string;
2122
+ /**
2123
+ * Minimum: 1 \
2124
+ * Maximum: 50
2125
+ * @default 25
2126
+ */
2127
+ limit?: number;
2128
+ /** DID of the account making the request (not included for public/unauthenticated queries). */
2129
+ viewer?: At.Did;
2130
+ }
2131
+ type Input = undefined;
2132
+ interface Output {
2133
+ dids: At.Did[];
2134
+ }
2135
+ }
2000
2136
  /** Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions */
2001
2137
  namespace AppBskyUnspeccedGetSuggestionsSkeleton {
2002
2138
  interface Params {
@@ -2008,9 +2144,9 @@ declare module '@atcute/client/lexicons' {
2008
2144
  */
2009
2145
  limit?: number;
2010
2146
  /** DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer. */
2011
- relativeToDid?: At.DID;
2147
+ relativeToDid?: At.Did;
2012
2148
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2013
- viewer?: At.DID;
2149
+ viewer?: At.Did;
2014
2150
  }
2015
2151
  type Input = undefined;
2016
2152
  interface Output {
@@ -2019,7 +2155,7 @@ declare module '@atcute/client/lexicons' {
2019
2155
  /** Snowflake for this recommendation, use when submitting recommendation events. */
2020
2156
  recId?: number;
2021
2157
  /** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
2022
- relativeToDid?: At.DID;
2158
+ relativeToDid?: At.Did;
2023
2159
  }
2024
2160
  }
2025
2161
  /** Get a list of suggestions (feeds and users) tagged with categories */
@@ -2030,7 +2166,7 @@ declare module '@atcute/client/lexicons' {
2030
2166
  }
2031
2167
  interface Suggestion {
2032
2168
  [Brand.Type]?: 'app.bsky.unspecced.getTaggedSuggestions#suggestion';
2033
- subject: string;
2169
+ subject: At.GenericUri;
2034
2170
  subjectType: 'actor' | 'feed' | (string & {});
2035
2171
  tag: string;
2036
2172
  }
@@ -2045,7 +2181,7 @@ declare module '@atcute/client/lexicons' {
2045
2181
  */
2046
2182
  limit?: number;
2047
2183
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2048
- viewer?: At.DID;
2184
+ viewer?: At.Did;
2049
2185
  }
2050
2186
  type Input = undefined;
2051
2187
  interface Output {
@@ -2053,6 +2189,38 @@ declare module '@atcute/client/lexicons' {
2053
2189
  topics: AppBskyUnspeccedDefs.TrendingTopic[];
2054
2190
  }
2055
2191
  }
2192
+ /** Get the current trends on the network */
2193
+ namespace AppBskyUnspeccedGetTrends {
2194
+ interface Params {
2195
+ /**
2196
+ * Minimum: 1 \
2197
+ * Maximum: 25
2198
+ * @default 10
2199
+ */
2200
+ limit?: number;
2201
+ }
2202
+ type Input = undefined;
2203
+ interface Output {
2204
+ trends: AppBskyUnspeccedDefs.TrendView[];
2205
+ }
2206
+ }
2207
+ /** Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends */
2208
+ namespace AppBskyUnspeccedGetTrendsSkeleton {
2209
+ interface Params {
2210
+ /**
2211
+ * Minimum: 1 \
2212
+ * Maximum: 25
2213
+ * @default 10
2214
+ */
2215
+ limit?: number;
2216
+ /** DID of the account making the request (not included for public/unauthenticated queries). */
2217
+ viewer?: At.Did;
2218
+ }
2219
+ type Input = undefined;
2220
+ interface Output {
2221
+ trends: AppBskyUnspeccedDefs.SkeletonTrend[];
2222
+ }
2223
+ }
2056
2224
  /** Backend Actors (profile) search, returns only skeleton. */
2057
2225
  namespace AppBskyUnspeccedSearchActorsSkeleton {
2058
2226
  interface Params {
@@ -2069,7 +2237,7 @@ declare module '@atcute/client/lexicons' {
2069
2237
  /** If true, acts as fast/simple 'typeahead' query. */
2070
2238
  typeahead?: boolean;
2071
2239
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2072
- viewer?: At.DID;
2240
+ viewer?: At.Did;
2073
2241
  }
2074
2242
  type Input = undefined;
2075
2243
  interface Output {
@@ -2088,7 +2256,7 @@ declare module '@atcute/client/lexicons' {
2088
2256
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
2089
2257
  q: string;
2090
2258
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
2091
- author?: string;
2259
+ author?: At.Identifier;
2092
2260
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
2093
2261
  cursor?: string;
2094
2262
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -2102,7 +2270,7 @@ declare module '@atcute/client/lexicons' {
2102
2270
  */
2103
2271
  limit?: number;
2104
2272
  /** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
2105
- mentions?: string;
2273
+ mentions?: At.Identifier;
2106
2274
  /** 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). */
2107
2275
  since?: string;
2108
2276
  /**
@@ -2119,9 +2287,9 @@ declare module '@atcute/client/lexicons' {
2119
2287
  /** 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). */
2120
2288
  until?: string;
2121
2289
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
2122
- url?: string;
2290
+ url?: At.GenericUri;
2123
2291
  /** DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries. */
2124
- viewer?: At.DID;
2292
+ viewer?: At.Did;
2125
2293
  }
2126
2294
  type Input = undefined;
2127
2295
  interface Output {
@@ -2148,7 +2316,7 @@ declare module '@atcute/client/lexicons' {
2148
2316
  */
2149
2317
  limit?: number;
2150
2318
  /** DID of the account making the request (not included for public/unauthenticated queries). */
2151
- viewer?: At.DID;
2319
+ viewer?: At.Did;
2152
2320
  }
2153
2321
  type Input = undefined;
2154
2322
  interface Output {
@@ -2164,7 +2332,7 @@ declare module '@atcute/client/lexicons' {
2164
2332
  namespace AppBskyVideoDefs {
2165
2333
  interface JobStatus {
2166
2334
  [Brand.Type]?: 'app.bsky.video.defs#jobStatus';
2167
- did: At.DID;
2335
+ did: At.Did;
2168
2336
  jobId: string;
2169
2337
  /** The state of the video processing job. All values not listed as a known value indicate that the job is in process. */
2170
2338
  state: 'JOB_STATE_COMPLETED' | 'JOB_STATE_FAILED' | (string & {});
@@ -2206,7 +2374,7 @@ declare module '@atcute/client/lexicons' {
2206
2374
  namespace AppBskyVideoUploadVideo {
2207
2375
  interface Params {
2208
2376
  }
2209
- type Input = Blob | ArrayBufferView;
2377
+ type Input = Blob | BufferSource | ReadableStream;
2210
2378
  interface Output {
2211
2379
  jobStatus: AppBskyVideoDefs.JobStatus;
2212
2380
  }
@@ -2221,10 +2389,10 @@ declare module '@atcute/client/lexicons' {
2221
2389
  namespace ChatBskyActorDefs {
2222
2390
  interface ProfileViewBasic {
2223
2391
  [Brand.Type]?: 'chat.bsky.actor.defs#profileViewBasic';
2224
- did: At.DID;
2392
+ did: At.Did;
2225
2393
  handle: At.Handle;
2226
2394
  associated?: AppBskyActorDefs.ProfileAssociated;
2227
- avatar?: string;
2395
+ avatar?: At.GenericUri;
2228
2396
  /** Set to true when the actor cannot actively participate in converations */
2229
2397
  chatDisabled?: boolean;
2230
2398
  /**
@@ -2260,6 +2428,29 @@ declare module '@atcute/client/lexicons' {
2260
2428
  rev?: string;
2261
2429
  }
2262
2430
  }
2431
+ /** 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. */
2432
+ namespace ChatBskyConvoAddReaction {
2433
+ interface Params {
2434
+ }
2435
+ interface Input {
2436
+ convoId: string;
2437
+ messageId: string;
2438
+ /**
2439
+ * Minimum string length: 1 \
2440
+ * Maximum string length: 64 \
2441
+ * Maximum grapheme length: 1
2442
+ */
2443
+ value: string;
2444
+ }
2445
+ interface Output {
2446
+ message: ChatBskyConvoDefs.MessageView;
2447
+ }
2448
+ interface Errors {
2449
+ ReactionMessageDeleted: {};
2450
+ ReactionLimitReached: {};
2451
+ ReactionInvalidValue: {};
2452
+ }
2453
+ }
2263
2454
  namespace ChatBskyConvoDefs {
2264
2455
  interface ConvoView {
2265
2456
  [Brand.Type]?: 'chat.bsky.convo.defs#convoView';
@@ -2269,6 +2460,7 @@ declare module '@atcute/client/lexicons' {
2269
2460
  rev: string;
2270
2461
  unreadCount: number;
2271
2462
  lastMessage?: Brand.Union<DeletedMessageView | MessageView>;
2463
+ lastReaction?: Brand.Union<MessageAndReactionView>;
2272
2464
  status?: 'accepted' | 'request' | (string & {});
2273
2465
  }
2274
2466
  interface DeletedMessageView {
@@ -2283,6 +2475,13 @@ declare module '@atcute/client/lexicons' {
2283
2475
  convoId: string;
2284
2476
  rev: string;
2285
2477
  }
2478
+ interface LogAddReaction {
2479
+ [Brand.Type]?: 'chat.bsky.convo.defs#logAddReaction';
2480
+ convoId: string;
2481
+ message: Brand.Union<DeletedMessageView | MessageView>;
2482
+ reaction: ReactionView;
2483
+ rev: string;
2484
+ }
2286
2485
  interface LogBeginConvo {
2287
2486
  [Brand.Type]?: 'chat.bsky.convo.defs#logBeginConvo';
2288
2487
  convoId: string;
@@ -2316,11 +2515,23 @@ declare module '@atcute/client/lexicons' {
2316
2515
  message: Brand.Union<DeletedMessageView | MessageView>;
2317
2516
  rev: string;
2318
2517
  }
2518
+ interface LogRemoveReaction {
2519
+ [Brand.Type]?: 'chat.bsky.convo.defs#logRemoveReaction';
2520
+ convoId: string;
2521
+ message: Brand.Union<DeletedMessageView | MessageView>;
2522
+ reaction: ReactionView;
2523
+ rev: string;
2524
+ }
2319
2525
  interface LogUnmuteConvo {
2320
2526
  [Brand.Type]?: 'chat.bsky.convo.defs#logUnmuteConvo';
2321
2527
  convoId: string;
2322
2528
  rev: string;
2323
2529
  }
2530
+ interface MessageAndReactionView {
2531
+ [Brand.Type]?: 'chat.bsky.convo.defs#messageAndReactionView';
2532
+ message: MessageView;
2533
+ reaction: ReactionView;
2534
+ }
2324
2535
  interface MessageInput {
2325
2536
  [Brand.Type]?: 'chat.bsky.convo.defs#messageInput';
2326
2537
  /**
@@ -2335,7 +2546,7 @@ declare module '@atcute/client/lexicons' {
2335
2546
  interface MessageRef {
2336
2547
  [Brand.Type]?: 'chat.bsky.convo.defs#messageRef';
2337
2548
  convoId: string;
2338
- did: At.DID;
2549
+ did: At.Did;
2339
2550
  messageId: string;
2340
2551
  }
2341
2552
  interface MessageView {
@@ -2352,10 +2563,22 @@ declare module '@atcute/client/lexicons' {
2352
2563
  embed?: Brand.Union<AppBskyEmbedRecord.View>;
2353
2564
  /** Annotations of text (mentions, URLs, hashtags, etc) */
2354
2565
  facets?: AppBskyRichtextFacet.Main[];
2566
+ /** Reactions to this message, in ascending order of creation time. */
2567
+ reactions?: ReactionView[];
2355
2568
  }
2356
2569
  interface MessageViewSender {
2357
2570
  [Brand.Type]?: 'chat.bsky.convo.defs#messageViewSender';
2358
- did: At.DID;
2571
+ did: At.Did;
2572
+ }
2573
+ interface ReactionView {
2574
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionView';
2575
+ createdAt: string;
2576
+ sender: ReactionViewSender;
2577
+ value: string;
2578
+ }
2579
+ interface ReactionViewSender {
2580
+ [Brand.Type]?: 'chat.bsky.convo.defs#reactionViewSender';
2581
+ did: At.Did;
2359
2582
  }
2360
2583
  }
2361
2584
  namespace ChatBskyConvoDeleteMessageForSelf {
@@ -2383,7 +2606,7 @@ declare module '@atcute/client/lexicons' {
2383
2606
  * Minimum array length: 1 \
2384
2607
  * Maximum array length: 10
2385
2608
  */
2386
- members: At.DID[];
2609
+ members: At.Did[];
2387
2610
  }
2388
2611
  type Input = undefined;
2389
2612
  interface Output {
@@ -2397,7 +2620,7 @@ declare module '@atcute/client/lexicons' {
2397
2620
  * Minimum array length: 1 \
2398
2621
  * Maximum array length: 10
2399
2622
  */
2400
- members: At.DID[];
2623
+ members: At.Did[];
2401
2624
  }
2402
2625
  type Input = undefined;
2403
2626
  interface Output {
@@ -2410,7 +2633,7 @@ declare module '@atcute/client/lexicons' {
2410
2633
  }
2411
2634
  type Input = undefined;
2412
2635
  interface Output {
2413
- logs: Brand.Union<ChatBskyConvoDefs.LogAcceptConvo | ChatBskyConvoDefs.LogBeginConvo | ChatBskyConvoDefs.LogCreateMessage | ChatBskyConvoDefs.LogDeleteMessage | ChatBskyConvoDefs.LogLeaveConvo>[];
2636
+ logs: Brand.Union<ChatBskyConvoDefs.LogAcceptConvo | ChatBskyConvoDefs.LogAddReaction | ChatBskyConvoDefs.LogBeginConvo | ChatBskyConvoDefs.LogCreateMessage | ChatBskyConvoDefs.LogDeleteMessage | ChatBskyConvoDefs.LogLeaveConvo | ChatBskyConvoDefs.LogMuteConvo | ChatBskyConvoDefs.LogReadMessage | ChatBskyConvoDefs.LogRemoveReaction | ChatBskyConvoDefs.LogUnmuteConvo>[];
2414
2637
  cursor?: string;
2415
2638
  }
2416
2639
  }
@@ -2470,6 +2693,28 @@ declare module '@atcute/client/lexicons' {
2470
2693
  convo: ChatBskyConvoDefs.ConvoView;
2471
2694
  }
2472
2695
  }
2696
+ /** 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. */
2697
+ namespace ChatBskyConvoRemoveReaction {
2698
+ interface Params {
2699
+ }
2700
+ interface Input {
2701
+ convoId: string;
2702
+ messageId: string;
2703
+ /**
2704
+ * Minimum string length: 1 \
2705
+ * Maximum string length: 64 \
2706
+ * Maximum grapheme length: 1
2707
+ */
2708
+ value: string;
2709
+ }
2710
+ interface Output {
2711
+ message: ChatBskyConvoDefs.MessageView;
2712
+ }
2713
+ interface Errors {
2714
+ ReactionMessageDeleted: {};
2715
+ ReactionInvalidValue: {};
2716
+ }
2717
+ }
2473
2718
  namespace ChatBskyConvoSendMessage {
2474
2719
  interface Params {
2475
2720
  }
@@ -2529,7 +2774,7 @@ declare module '@atcute/client/lexicons' {
2529
2774
  }
2530
2775
  namespace ChatBskyModerationGetActorMetadata {
2531
2776
  interface Params {
2532
- actor: At.DID;
2777
+ actor: At.Did;
2533
2778
  }
2534
2779
  type Input = undefined;
2535
2780
  interface Output {
@@ -2564,7 +2809,7 @@ declare module '@atcute/client/lexicons' {
2564
2809
  interface Params {
2565
2810
  }
2566
2811
  interface Input {
2567
- actor: At.DID;
2812
+ actor: At.Did;
2568
2813
  allowAccess: boolean;
2569
2814
  ref?: string;
2570
2815
  }
@@ -2584,243 +2829,546 @@ declare module '@atcute/client/lexicons' {
2584
2829
  'app.bsky.graph.listblock': AppBskyGraphListblock.Record;
2585
2830
  'app.bsky.graph.listitem': AppBskyGraphListitem.Record;
2586
2831
  'app.bsky.graph.starterpack': AppBskyGraphStarterpack.Record;
2832
+ 'app.bsky.graph.verification': AppBskyGraphVerification.Record;
2587
2833
  'app.bsky.labeler.service': AppBskyLabelerService.Record;
2588
2834
  'chat.bsky.actor.declaration': ChatBskyActorDeclaration.Record;
2589
2835
  }
2590
2836
  interface Queries {
2591
2837
  'app.bsky.actor.getPreferences': {
2838
+ /** @deprecated */
2592
2839
  output: AppBskyActorGetPreferences.Output;
2840
+ response: {
2841
+ json: AppBskyActorGetPreferences.Output;
2842
+ };
2593
2843
  };
2594
2844
  'app.bsky.actor.getProfile': {
2595
2845
  params: AppBskyActorGetProfile.Params;
2846
+ /** @deprecated */
2596
2847
  output: AppBskyActorGetProfile.Output;
2848
+ response: {
2849
+ json: AppBskyActorGetProfile.Output;
2850
+ };
2597
2851
  };
2598
2852
  'app.bsky.actor.getProfiles': {
2599
2853
  params: AppBskyActorGetProfiles.Params;
2854
+ /** @deprecated */
2600
2855
  output: AppBskyActorGetProfiles.Output;
2856
+ response: {
2857
+ json: AppBskyActorGetProfiles.Output;
2858
+ };
2601
2859
  };
2602
2860
  'app.bsky.actor.getSuggestions': {
2603
2861
  params: AppBskyActorGetSuggestions.Params;
2862
+ /** @deprecated */
2604
2863
  output: AppBskyActorGetSuggestions.Output;
2864
+ response: {
2865
+ json: AppBskyActorGetSuggestions.Output;
2866
+ };
2605
2867
  };
2606
2868
  'app.bsky.actor.searchActors': {
2607
2869
  params: AppBskyActorSearchActors.Params;
2870
+ /** @deprecated */
2608
2871
  output: AppBskyActorSearchActors.Output;
2872
+ response: {
2873
+ json: AppBskyActorSearchActors.Output;
2874
+ };
2609
2875
  };
2610
2876
  'app.bsky.actor.searchActorsTypeahead': {
2611
2877
  params: AppBskyActorSearchActorsTypeahead.Params;
2878
+ /** @deprecated */
2612
2879
  output: AppBskyActorSearchActorsTypeahead.Output;
2880
+ response: {
2881
+ json: AppBskyActorSearchActorsTypeahead.Output;
2882
+ };
2613
2883
  };
2614
2884
  'app.bsky.feed.describeFeedGenerator': {
2885
+ /** @deprecated */
2615
2886
  output: AppBskyFeedDescribeFeedGenerator.Output;
2887
+ response: {
2888
+ json: AppBskyFeedDescribeFeedGenerator.Output;
2889
+ };
2616
2890
  };
2617
2891
  'app.bsky.feed.getActorFeeds': {
2618
2892
  params: AppBskyFeedGetActorFeeds.Params;
2893
+ /** @deprecated */
2619
2894
  output: AppBskyFeedGetActorFeeds.Output;
2895
+ response: {
2896
+ json: AppBskyFeedGetActorFeeds.Output;
2897
+ };
2620
2898
  };
2621
2899
  'app.bsky.feed.getActorLikes': {
2622
2900
  params: AppBskyFeedGetActorLikes.Params;
2901
+ /** @deprecated */
2623
2902
  output: AppBskyFeedGetActorLikes.Output;
2903
+ response: {
2904
+ json: AppBskyFeedGetActorLikes.Output;
2905
+ };
2624
2906
  };
2625
2907
  'app.bsky.feed.getAuthorFeed': {
2626
2908
  params: AppBskyFeedGetAuthorFeed.Params;
2909
+ /** @deprecated */
2627
2910
  output: AppBskyFeedGetAuthorFeed.Output;
2911
+ response: {
2912
+ json: AppBskyFeedGetAuthorFeed.Output;
2913
+ };
2628
2914
  };
2629
2915
  'app.bsky.feed.getFeed': {
2630
2916
  params: AppBskyFeedGetFeed.Params;
2917
+ /** @deprecated */
2631
2918
  output: AppBskyFeedGetFeed.Output;
2919
+ response: {
2920
+ json: AppBskyFeedGetFeed.Output;
2921
+ };
2632
2922
  };
2633
2923
  'app.bsky.feed.getFeedGenerator': {
2634
2924
  params: AppBskyFeedGetFeedGenerator.Params;
2925
+ /** @deprecated */
2635
2926
  output: AppBskyFeedGetFeedGenerator.Output;
2927
+ response: {
2928
+ json: AppBskyFeedGetFeedGenerator.Output;
2929
+ };
2636
2930
  };
2637
2931
  'app.bsky.feed.getFeedGenerators': {
2638
2932
  params: AppBskyFeedGetFeedGenerators.Params;
2933
+ /** @deprecated */
2639
2934
  output: AppBskyFeedGetFeedGenerators.Output;
2935
+ response: {
2936
+ json: AppBskyFeedGetFeedGenerators.Output;
2937
+ };
2640
2938
  };
2641
2939
  'app.bsky.feed.getFeedSkeleton': {
2642
2940
  params: AppBskyFeedGetFeedSkeleton.Params;
2941
+ /** @deprecated */
2643
2942
  output: AppBskyFeedGetFeedSkeleton.Output;
2943
+ response: {
2944
+ json: AppBskyFeedGetFeedSkeleton.Output;
2945
+ };
2644
2946
  };
2645
2947
  'app.bsky.feed.getLikes': {
2646
2948
  params: AppBskyFeedGetLikes.Params;
2949
+ /** @deprecated */
2647
2950
  output: AppBskyFeedGetLikes.Output;
2951
+ response: {
2952
+ json: AppBskyFeedGetLikes.Output;
2953
+ };
2648
2954
  };
2649
2955
  'app.bsky.feed.getListFeed': {
2650
2956
  params: AppBskyFeedGetListFeed.Params;
2957
+ /** @deprecated */
2651
2958
  output: AppBskyFeedGetListFeed.Output;
2959
+ response: {
2960
+ json: AppBskyFeedGetListFeed.Output;
2961
+ };
2652
2962
  };
2653
2963
  'app.bsky.feed.getPosts': {
2654
2964
  params: AppBskyFeedGetPosts.Params;
2965
+ /** @deprecated */
2655
2966
  output: AppBskyFeedGetPosts.Output;
2967
+ response: {
2968
+ json: AppBskyFeedGetPosts.Output;
2969
+ };
2656
2970
  };
2657
2971
  'app.bsky.feed.getPostThread': {
2658
2972
  params: AppBskyFeedGetPostThread.Params;
2973
+ /** @deprecated */
2659
2974
  output: AppBskyFeedGetPostThread.Output;
2975
+ response: {
2976
+ json: AppBskyFeedGetPostThread.Output;
2977
+ };
2660
2978
  };
2661
2979
  'app.bsky.feed.getQuotes': {
2662
2980
  params: AppBskyFeedGetQuotes.Params;
2981
+ /** @deprecated */
2663
2982
  output: AppBskyFeedGetQuotes.Output;
2983
+ response: {
2984
+ json: AppBskyFeedGetQuotes.Output;
2985
+ };
2664
2986
  };
2665
2987
  'app.bsky.feed.getRepostedBy': {
2666
2988
  params: AppBskyFeedGetRepostedBy.Params;
2989
+ /** @deprecated */
2667
2990
  output: AppBskyFeedGetRepostedBy.Output;
2991
+ response: {
2992
+ json: AppBskyFeedGetRepostedBy.Output;
2993
+ };
2668
2994
  };
2669
2995
  'app.bsky.feed.getSuggestedFeeds': {
2670
2996
  params: AppBskyFeedGetSuggestedFeeds.Params;
2997
+ /** @deprecated */
2671
2998
  output: AppBskyFeedGetSuggestedFeeds.Output;
2999
+ response: {
3000
+ json: AppBskyFeedGetSuggestedFeeds.Output;
3001
+ };
2672
3002
  };
2673
3003
  'app.bsky.feed.getTimeline': {
2674
3004
  params: AppBskyFeedGetTimeline.Params;
3005
+ /** @deprecated */
2675
3006
  output: AppBskyFeedGetTimeline.Output;
3007
+ response: {
3008
+ json: AppBskyFeedGetTimeline.Output;
3009
+ };
2676
3010
  };
2677
3011
  'app.bsky.feed.searchPosts': {
2678
3012
  params: AppBskyFeedSearchPosts.Params;
3013
+ /** @deprecated */
2679
3014
  output: AppBskyFeedSearchPosts.Output;
3015
+ response: {
3016
+ json: AppBskyFeedSearchPosts.Output;
3017
+ };
2680
3018
  };
2681
3019
  'app.bsky.graph.getActorStarterPacks': {
2682
3020
  params: AppBskyGraphGetActorStarterPacks.Params;
3021
+ /** @deprecated */
2683
3022
  output: AppBskyGraphGetActorStarterPacks.Output;
3023
+ response: {
3024
+ json: AppBskyGraphGetActorStarterPacks.Output;
3025
+ };
2684
3026
  };
2685
3027
  'app.bsky.graph.getBlocks': {
2686
3028
  params: AppBskyGraphGetBlocks.Params;
3029
+ /** @deprecated */
2687
3030
  output: AppBskyGraphGetBlocks.Output;
3031
+ response: {
3032
+ json: AppBskyGraphGetBlocks.Output;
3033
+ };
2688
3034
  };
2689
3035
  'app.bsky.graph.getFollowers': {
2690
3036
  params: AppBskyGraphGetFollowers.Params;
3037
+ /** @deprecated */
2691
3038
  output: AppBskyGraphGetFollowers.Output;
3039
+ response: {
3040
+ json: AppBskyGraphGetFollowers.Output;
3041
+ };
2692
3042
  };
2693
3043
  'app.bsky.graph.getFollows': {
2694
3044
  params: AppBskyGraphGetFollows.Params;
3045
+ /** @deprecated */
2695
3046
  output: AppBskyGraphGetFollows.Output;
3047
+ response: {
3048
+ json: AppBskyGraphGetFollows.Output;
3049
+ };
2696
3050
  };
2697
3051
  'app.bsky.graph.getKnownFollowers': {
2698
3052
  params: AppBskyGraphGetKnownFollowers.Params;
3053
+ /** @deprecated */
2699
3054
  output: AppBskyGraphGetKnownFollowers.Output;
3055
+ response: {
3056
+ json: AppBskyGraphGetKnownFollowers.Output;
3057
+ };
2700
3058
  };
2701
3059
  'app.bsky.graph.getList': {
2702
3060
  params: AppBskyGraphGetList.Params;
3061
+ /** @deprecated */
2703
3062
  output: AppBskyGraphGetList.Output;
3063
+ response: {
3064
+ json: AppBskyGraphGetList.Output;
3065
+ };
2704
3066
  };
2705
3067
  'app.bsky.graph.getListBlocks': {
2706
3068
  params: AppBskyGraphGetListBlocks.Params;
3069
+ /** @deprecated */
2707
3070
  output: AppBskyGraphGetListBlocks.Output;
3071
+ response: {
3072
+ json: AppBskyGraphGetListBlocks.Output;
3073
+ };
2708
3074
  };
2709
3075
  'app.bsky.graph.getListMutes': {
2710
3076
  params: AppBskyGraphGetListMutes.Params;
3077
+ /** @deprecated */
2711
3078
  output: AppBskyGraphGetListMutes.Output;
3079
+ response: {
3080
+ json: AppBskyGraphGetListMutes.Output;
3081
+ };
2712
3082
  };
2713
3083
  'app.bsky.graph.getLists': {
2714
3084
  params: AppBskyGraphGetLists.Params;
3085
+ /** @deprecated */
2715
3086
  output: AppBskyGraphGetLists.Output;
3087
+ response: {
3088
+ json: AppBskyGraphGetLists.Output;
3089
+ };
2716
3090
  };
2717
3091
  'app.bsky.graph.getMutes': {
2718
3092
  params: AppBskyGraphGetMutes.Params;
3093
+ /** @deprecated */
2719
3094
  output: AppBskyGraphGetMutes.Output;
3095
+ response: {
3096
+ json: AppBskyGraphGetMutes.Output;
3097
+ };
2720
3098
  };
2721
3099
  'app.bsky.graph.getRelationships': {
2722
3100
  params: AppBskyGraphGetRelationships.Params;
3101
+ /** @deprecated */
2723
3102
  output: AppBskyGraphGetRelationships.Output;
3103
+ response: {
3104
+ json: AppBskyGraphGetRelationships.Output;
3105
+ };
2724
3106
  };
2725
3107
  'app.bsky.graph.getStarterPack': {
2726
3108
  params: AppBskyGraphGetStarterPack.Params;
3109
+ /** @deprecated */
2727
3110
  output: AppBskyGraphGetStarterPack.Output;
3111
+ response: {
3112
+ json: AppBskyGraphGetStarterPack.Output;
3113
+ };
2728
3114
  };
2729
3115
  'app.bsky.graph.getStarterPacks': {
2730
3116
  params: AppBskyGraphGetStarterPacks.Params;
3117
+ /** @deprecated */
2731
3118
  output: AppBskyGraphGetStarterPacks.Output;
3119
+ response: {
3120
+ json: AppBskyGraphGetStarterPacks.Output;
3121
+ };
2732
3122
  };
2733
3123
  'app.bsky.graph.getSuggestedFollowsByActor': {
2734
3124
  params: AppBskyGraphGetSuggestedFollowsByActor.Params;
3125
+ /** @deprecated */
2735
3126
  output: AppBskyGraphGetSuggestedFollowsByActor.Output;
3127
+ response: {
3128
+ json: AppBskyGraphGetSuggestedFollowsByActor.Output;
3129
+ };
2736
3130
  };
2737
3131
  'app.bsky.graph.searchStarterPacks': {
2738
3132
  params: AppBskyGraphSearchStarterPacks.Params;
3133
+ /** @deprecated */
2739
3134
  output: AppBskyGraphSearchStarterPacks.Output;
3135
+ response: {
3136
+ json: AppBskyGraphSearchStarterPacks.Output;
3137
+ };
2740
3138
  };
2741
3139
  'app.bsky.labeler.getServices': {
2742
3140
  params: AppBskyLabelerGetServices.Params;
3141
+ /** @deprecated */
2743
3142
  output: AppBskyLabelerGetServices.Output;
3143
+ response: {
3144
+ json: AppBskyLabelerGetServices.Output;
3145
+ };
2744
3146
  };
2745
3147
  'app.bsky.notification.getUnreadCount': {
2746
3148
  params: AppBskyNotificationGetUnreadCount.Params;
3149
+ /** @deprecated */
2747
3150
  output: AppBskyNotificationGetUnreadCount.Output;
3151
+ response: {
3152
+ json: AppBskyNotificationGetUnreadCount.Output;
3153
+ };
2748
3154
  };
2749
3155
  'app.bsky.notification.listNotifications': {
2750
3156
  params: AppBskyNotificationListNotifications.Params;
3157
+ /** @deprecated */
2751
3158
  output: AppBskyNotificationListNotifications.Output;
3159
+ response: {
3160
+ json: AppBskyNotificationListNotifications.Output;
3161
+ };
2752
3162
  };
2753
3163
  'app.bsky.unspecced.getConfig': {
3164
+ /** @deprecated */
2754
3165
  output: AppBskyUnspeccedGetConfig.Output;
3166
+ response: {
3167
+ json: AppBskyUnspeccedGetConfig.Output;
3168
+ };
2755
3169
  };
2756
3170
  'app.bsky.unspecced.getPopularFeedGenerators': {
2757
3171
  params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
3172
+ /** @deprecated */
2758
3173
  output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3174
+ response: {
3175
+ json: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3176
+ };
3177
+ };
3178
+ 'app.bsky.unspecced.getSuggestedFeeds': {
3179
+ params: AppBskyUnspeccedGetSuggestedFeeds.Params;
3180
+ /** @deprecated */
3181
+ output: AppBskyUnspeccedGetSuggestedFeeds.Output;
3182
+ response: {
3183
+ json: AppBskyUnspeccedGetSuggestedFeeds.Output;
3184
+ };
3185
+ };
3186
+ 'app.bsky.unspecced.getSuggestedFeedsSkeleton': {
3187
+ params: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Params;
3188
+ /** @deprecated */
3189
+ output: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Output;
3190
+ response: {
3191
+ json: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Output;
3192
+ };
3193
+ };
3194
+ 'app.bsky.unspecced.getSuggestedStarterPacks': {
3195
+ params: AppBskyUnspeccedGetSuggestedStarterPacks.Params;
3196
+ /** @deprecated */
3197
+ output: AppBskyUnspeccedGetSuggestedStarterPacks.Output;
3198
+ response: {
3199
+ json: AppBskyUnspeccedGetSuggestedStarterPacks.Output;
3200
+ };
3201
+ };
3202
+ 'app.bsky.unspecced.getSuggestedStarterPacksSkeleton': {
3203
+ params: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Params;
3204
+ /** @deprecated */
3205
+ output: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Output;
3206
+ response: {
3207
+ json: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Output;
3208
+ };
3209
+ };
3210
+ 'app.bsky.unspecced.getSuggestedUsers': {
3211
+ params: AppBskyUnspeccedGetSuggestedUsers.Params;
3212
+ /** @deprecated */
3213
+ output: AppBskyUnspeccedGetSuggestedUsers.Output;
3214
+ response: {
3215
+ json: AppBskyUnspeccedGetSuggestedUsers.Output;
3216
+ };
3217
+ };
3218
+ 'app.bsky.unspecced.getSuggestedUsersSkeleton': {
3219
+ params: AppBskyUnspeccedGetSuggestedUsersSkeleton.Params;
3220
+ /** @deprecated */
3221
+ output: AppBskyUnspeccedGetSuggestedUsersSkeleton.Output;
3222
+ response: {
3223
+ json: AppBskyUnspeccedGetSuggestedUsersSkeleton.Output;
3224
+ };
2759
3225
  };
2760
3226
  'app.bsky.unspecced.getSuggestionsSkeleton': {
2761
3227
  params: AppBskyUnspeccedGetSuggestionsSkeleton.Params;
3228
+ /** @deprecated */
2762
3229
  output: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3230
+ response: {
3231
+ json: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3232
+ };
2763
3233
  };
2764
3234
  'app.bsky.unspecced.getTaggedSuggestions': {
3235
+ /** @deprecated */
2765
3236
  output: AppBskyUnspeccedGetTaggedSuggestions.Output;
3237
+ response: {
3238
+ json: AppBskyUnspeccedGetTaggedSuggestions.Output;
3239
+ };
2766
3240
  };
2767
3241
  'app.bsky.unspecced.getTrendingTopics': {
2768
3242
  params: AppBskyUnspeccedGetTrendingTopics.Params;
3243
+ /** @deprecated */
2769
3244
  output: AppBskyUnspeccedGetTrendingTopics.Output;
3245
+ response: {
3246
+ json: AppBskyUnspeccedGetTrendingTopics.Output;
3247
+ };
3248
+ };
3249
+ 'app.bsky.unspecced.getTrends': {
3250
+ params: AppBskyUnspeccedGetTrends.Params;
3251
+ /** @deprecated */
3252
+ output: AppBskyUnspeccedGetTrends.Output;
3253
+ response: {
3254
+ json: AppBskyUnspeccedGetTrends.Output;
3255
+ };
3256
+ };
3257
+ 'app.bsky.unspecced.getTrendsSkeleton': {
3258
+ params: AppBskyUnspeccedGetTrendsSkeleton.Params;
3259
+ /** @deprecated */
3260
+ output: AppBskyUnspeccedGetTrendsSkeleton.Output;
3261
+ response: {
3262
+ json: AppBskyUnspeccedGetTrendsSkeleton.Output;
3263
+ };
2770
3264
  };
2771
3265
  'app.bsky.unspecced.searchActorsSkeleton': {
2772
3266
  params: AppBskyUnspeccedSearchActorsSkeleton.Params;
3267
+ /** @deprecated */
2773
3268
  output: AppBskyUnspeccedSearchActorsSkeleton.Output;
3269
+ response: {
3270
+ json: AppBskyUnspeccedSearchActorsSkeleton.Output;
3271
+ };
2774
3272
  };
2775
3273
  'app.bsky.unspecced.searchPostsSkeleton': {
2776
3274
  params: AppBskyUnspeccedSearchPostsSkeleton.Params;
3275
+ /** @deprecated */
2777
3276
  output: AppBskyUnspeccedSearchPostsSkeleton.Output;
3277
+ response: {
3278
+ json: AppBskyUnspeccedSearchPostsSkeleton.Output;
3279
+ };
2778
3280
  };
2779
3281
  'app.bsky.unspecced.searchStarterPacksSkeleton': {
2780
3282
  params: AppBskyUnspeccedSearchStarterPacksSkeleton.Params;
3283
+ /** @deprecated */
2781
3284
  output: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3285
+ response: {
3286
+ json: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3287
+ };
2782
3288
  };
2783
3289
  'app.bsky.video.getJobStatus': {
2784
3290
  params: AppBskyVideoGetJobStatus.Params;
3291
+ /** @deprecated */
2785
3292
  output: AppBskyVideoGetJobStatus.Output;
3293
+ response: {
3294
+ json: AppBskyVideoGetJobStatus.Output;
3295
+ };
2786
3296
  };
2787
3297
  'app.bsky.video.getUploadLimits': {
3298
+ /** @deprecated */
2788
3299
  output: AppBskyVideoGetUploadLimits.Output;
3300
+ response: {
3301
+ json: AppBskyVideoGetUploadLimits.Output;
3302
+ };
2789
3303
  };
2790
3304
  'chat.bsky.actor.exportAccountData': {
3305
+ /** @deprecated */
2791
3306
  output: ChatBskyActorExportAccountData.Output;
3307
+ response: {};
2792
3308
  };
2793
3309
  'chat.bsky.convo.getConvo': {
2794
3310
  params: ChatBskyConvoGetConvo.Params;
3311
+ /** @deprecated */
2795
3312
  output: ChatBskyConvoGetConvo.Output;
3313
+ response: {
3314
+ json: ChatBskyConvoGetConvo.Output;
3315
+ };
2796
3316
  };
2797
3317
  'chat.bsky.convo.getConvoAvailability': {
2798
3318
  params: ChatBskyConvoGetConvoAvailability.Params;
3319
+ /** @deprecated */
2799
3320
  output: ChatBskyConvoGetConvoAvailability.Output;
3321
+ response: {
3322
+ json: ChatBskyConvoGetConvoAvailability.Output;
3323
+ };
2800
3324
  };
2801
3325
  'chat.bsky.convo.getConvoForMembers': {
2802
3326
  params: ChatBskyConvoGetConvoForMembers.Params;
3327
+ /** @deprecated */
2803
3328
  output: ChatBskyConvoGetConvoForMembers.Output;
3329
+ response: {
3330
+ json: ChatBskyConvoGetConvoForMembers.Output;
3331
+ };
2804
3332
  };
2805
3333
  'chat.bsky.convo.getLog': {
2806
3334
  params: ChatBskyConvoGetLog.Params;
3335
+ /** @deprecated */
2807
3336
  output: ChatBskyConvoGetLog.Output;
3337
+ response: {
3338
+ json: ChatBskyConvoGetLog.Output;
3339
+ };
2808
3340
  };
2809
3341
  'chat.bsky.convo.getMessages': {
2810
3342
  params: ChatBskyConvoGetMessages.Params;
3343
+ /** @deprecated */
2811
3344
  output: ChatBskyConvoGetMessages.Output;
3345
+ response: {
3346
+ json: ChatBskyConvoGetMessages.Output;
3347
+ };
2812
3348
  };
2813
3349
  'chat.bsky.convo.listConvos': {
2814
3350
  params: ChatBskyConvoListConvos.Params;
3351
+ /** @deprecated */
2815
3352
  output: ChatBskyConvoListConvos.Output;
3353
+ response: {
3354
+ json: ChatBskyConvoListConvos.Output;
3355
+ };
2816
3356
  };
2817
3357
  'chat.bsky.moderation.getActorMetadata': {
2818
3358
  params: ChatBskyModerationGetActorMetadata.Params;
3359
+ /** @deprecated */
2819
3360
  output: ChatBskyModerationGetActorMetadata.Output;
3361
+ response: {
3362
+ json: ChatBskyModerationGetActorMetadata.Output;
3363
+ };
2820
3364
  };
2821
3365
  'chat.bsky.moderation.getMessageContext': {
2822
3366
  params: ChatBskyModerationGetMessageContext.Params;
3367
+ /** @deprecated */
2823
3368
  output: ChatBskyModerationGetMessageContext.Output;
3369
+ response: {
3370
+ json: ChatBskyModerationGetMessageContext.Output;
3371
+ };
2824
3372
  };
2825
3373
  }
2826
3374
  interface Procedures {
@@ -2829,7 +3377,11 @@ declare module '@atcute/client/lexicons' {
2829
3377
  };
2830
3378
  'app.bsky.feed.sendInteractions': {
2831
3379
  input: AppBskyFeedSendInteractions.Input;
3380
+ /** @deprecated */
2832
3381
  output: AppBskyFeedSendInteractions.Output;
3382
+ response: {
3383
+ json: AppBskyFeedSendInteractions.Output;
3384
+ };
2833
3385
  };
2834
3386
  'app.bsky.graph.muteActor': {
2835
3387
  input: AppBskyGraphMuteActor.Input;
@@ -2860,46 +3412,106 @@ declare module '@atcute/client/lexicons' {
2860
3412
  };
2861
3413
  'app.bsky.video.uploadVideo': {
2862
3414
  input: AppBskyVideoUploadVideo.Input;
3415
+ /** @deprecated */
2863
3416
  output: AppBskyVideoUploadVideo.Output;
3417
+ response: {
3418
+ json: AppBskyVideoUploadVideo.Output;
3419
+ };
2864
3420
  };
2865
3421
  'chat.bsky.actor.deleteAccount': {
3422
+ /** @deprecated */
2866
3423
  output: ChatBskyActorDeleteAccount.Output;
3424
+ response: {
3425
+ json: ChatBskyActorDeleteAccount.Output;
3426
+ };
2867
3427
  };
2868
3428
  'chat.bsky.convo.acceptConvo': {
2869
3429
  input: ChatBskyConvoAcceptConvo.Input;
3430
+ /** @deprecated */
2870
3431
  output: ChatBskyConvoAcceptConvo.Output;
3432
+ response: {
3433
+ json: ChatBskyConvoAcceptConvo.Output;
3434
+ };
3435
+ };
3436
+ 'chat.bsky.convo.addReaction': {
3437
+ input: ChatBskyConvoAddReaction.Input;
3438
+ /** @deprecated */
3439
+ output: ChatBskyConvoAddReaction.Output;
3440
+ response: {
3441
+ json: ChatBskyConvoAddReaction.Output;
3442
+ };
2871
3443
  };
2872
3444
  'chat.bsky.convo.deleteMessageForSelf': {
2873
3445
  input: ChatBskyConvoDeleteMessageForSelf.Input;
3446
+ /** @deprecated */
2874
3447
  output: ChatBskyConvoDeleteMessageForSelf.Output;
3448
+ response: {
3449
+ json: ChatBskyConvoDeleteMessageForSelf.Output;
3450
+ };
2875
3451
  };
2876
3452
  'chat.bsky.convo.leaveConvo': {
2877
3453
  input: ChatBskyConvoLeaveConvo.Input;
3454
+ /** @deprecated */
2878
3455
  output: ChatBskyConvoLeaveConvo.Output;
3456
+ response: {
3457
+ json: ChatBskyConvoLeaveConvo.Output;
3458
+ };
2879
3459
  };
2880
3460
  'chat.bsky.convo.muteConvo': {
2881
3461
  input: ChatBskyConvoMuteConvo.Input;
3462
+ /** @deprecated */
2882
3463
  output: ChatBskyConvoMuteConvo.Output;
3464
+ response: {
3465
+ json: ChatBskyConvoMuteConvo.Output;
3466
+ };
3467
+ };
3468
+ 'chat.bsky.convo.removeReaction': {
3469
+ input: ChatBskyConvoRemoveReaction.Input;
3470
+ /** @deprecated */
3471
+ output: ChatBskyConvoRemoveReaction.Output;
3472
+ response: {
3473
+ json: ChatBskyConvoRemoveReaction.Output;
3474
+ };
2883
3475
  };
2884
3476
  'chat.bsky.convo.sendMessage': {
2885
3477
  input: ChatBskyConvoSendMessage.Input;
3478
+ /** @deprecated */
2886
3479
  output: ChatBskyConvoSendMessage.Output;
3480
+ response: {
3481
+ json: ChatBskyConvoSendMessage.Output;
3482
+ };
2887
3483
  };
2888
3484
  'chat.bsky.convo.sendMessageBatch': {
2889
3485
  input: ChatBskyConvoSendMessageBatch.Input;
3486
+ /** @deprecated */
2890
3487
  output: ChatBskyConvoSendMessageBatch.Output;
3488
+ response: {
3489
+ json: ChatBskyConvoSendMessageBatch.Output;
3490
+ };
2891
3491
  };
2892
3492
  'chat.bsky.convo.unmuteConvo': {
2893
3493
  input: ChatBskyConvoUnmuteConvo.Input;
3494
+ /** @deprecated */
2894
3495
  output: ChatBskyConvoUnmuteConvo.Output;
3496
+ response: {
3497
+ json: ChatBskyConvoUnmuteConvo.Output;
3498
+ };
2895
3499
  };
2896
3500
  'chat.bsky.convo.updateAllRead': {
2897
3501
  input: ChatBskyConvoUpdateAllRead.Input;
3502
+ /** @deprecated */
2898
3503
  output: ChatBskyConvoUpdateAllRead.Output;
3504
+ response: {
3505
+ json: ChatBskyConvoUpdateAllRead.Output;
3506
+ };
2899
3507
  };
2900
3508
  'chat.bsky.convo.updateRead': {
2901
3509
  input: ChatBskyConvoUpdateRead.Input;
3510
+ /** @deprecated */
2902
3511
  output: ChatBskyConvoUpdateRead.Output;
3512
+ response: {
3513
+ json: ChatBskyConvoUpdateRead.Output;
3514
+ };
2903
3515
  };
2904
3516
  'chat.bsky.moderation.updateActorAccess': {
2905
3517
  input: ChatBskyModerationUpdateActorAccess.Input;