@atcute/bluesky 1.0.15 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,7 +1761,7 @@ 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
  }
@@ -1775,10 +1775,10 @@ declare module '@atcute/client/lexicons' {
1775
1775
  }
1776
1776
  interface LabelerView {
1777
1777
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerView';
1778
- cid: At.CID;
1778
+ cid: At.Cid;
1779
1779
  creator: AppBskyActorDefs.ProfileView;
1780
1780
  indexedAt: string;
1781
- uri: At.Uri;
1781
+ uri: At.ResourceUri;
1782
1782
  labels?: ComAtprotoLabelDefs.Label[];
1783
1783
  /** Minimum: 0 */
1784
1784
  likeCount?: number;
@@ -1786,31 +1786,31 @@ declare module '@atcute/client/lexicons' {
1786
1786
  }
1787
1787
  interface LabelerViewDetailed {
1788
1788
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewDetailed';
1789
- cid: At.CID;
1789
+ cid: At.Cid;
1790
1790
  creator: AppBskyActorDefs.ProfileView;
1791
1791
  indexedAt: string;
1792
1792
  policies: AppBskyLabelerDefs.LabelerPolicies;
1793
- uri: At.Uri;
1793
+ uri: At.ResourceUri;
1794
1794
  labels?: ComAtprotoLabelDefs.Label[];
1795
1795
  /** Minimum: 0 */
1796
1796
  likeCount?: number;
1797
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
1798
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1799
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?: string[];
1800
+ subjectCollections?: At.Nsid[];
1801
1801
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1802
1802
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1803
1803
  viewer?: LabelerViewerState;
1804
1804
  }
1805
1805
  interface LabelerViewerState {
1806
1806
  [Brand.Type]?: 'app.bsky.labeler.defs#labelerViewerState';
1807
- like?: At.Uri;
1807
+ like?: At.ResourceUri;
1808
1808
  }
1809
1809
  }
1810
1810
  /** Get information about a list of labeler services. */
1811
1811
  namespace AppBskyLabelerGetServices {
1812
1812
  interface Params {
1813
- dids: At.DID[];
1813
+ dids: At.Did[];
1814
1814
  /** @default false */
1815
1815
  detailed?: boolean;
1816
1816
  }
@@ -1829,7 +1829,7 @@ declare module '@atcute/client/lexicons' {
1829
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
1830
  reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1831
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?: string[];
1832
+ subjectCollections?: At.Nsid[];
1833
1833
  /** The set of subject types (account, record, etc) this service accepts reports on. */
1834
1834
  subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
1835
1835
  }
@@ -1873,15 +1873,15 @@ declare module '@atcute/client/lexicons' {
1873
1873
  interface Notification {
1874
1874
  [Brand.Type]?: 'app.bsky.notification.listNotifications#notification';
1875
1875
  author: AppBskyActorDefs.ProfileView;
1876
- cid: At.CID;
1876
+ cid: At.Cid;
1877
1877
  indexedAt: string;
1878
1878
  isRead: boolean;
1879
1879
  /** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
1880
1880
  reason: 'follow' | 'like' | 'mention' | 'quote' | 'reply' | 'repost' | 'starterpack-joined' | (string & {});
1881
1881
  record: unknown;
1882
- uri: At.Uri;
1882
+ uri: At.ResourceUri;
1883
1883
  labels?: ComAtprotoLabelDefs.Label[];
1884
- reasonSubject?: At.Uri;
1884
+ reasonSubject?: At.ResourceUri;
1885
1885
  }
1886
1886
  }
1887
1887
  /** Set notification-related preferences for an account. Requires auth. */
@@ -1900,7 +1900,7 @@ declare module '@atcute/client/lexicons' {
1900
1900
  interface Input {
1901
1901
  appId: string;
1902
1902
  platform: 'android' | 'ios' | 'web' | (string & {});
1903
- serviceDid: At.DID;
1903
+ serviceDid: At.Did;
1904
1904
  token: string;
1905
1905
  }
1906
1906
  type Output = undefined;
@@ -1932,12 +1932,12 @@ declare module '@atcute/client/lexicons' {
1932
1932
  /** Facet feature for a URL. The text URL may have been simplified or truncated, but the facet reference should be a complete URL. */
1933
1933
  interface Link {
1934
1934
  [Brand.Type]?: 'app.bsky.richtext.facet#link';
1935
- uri: string;
1935
+ uri: At.GenericUri;
1936
1936
  }
1937
1937
  /** Facet feature for mention of another account. The text is usually a handle, including a '@' prefix, but the facet reference is a DID. */
1938
1938
  interface Mention {
1939
1939
  [Brand.Type]?: 'app.bsky.richtext.facet#mention';
1940
- did: At.DID;
1940
+ did: At.Did;
1941
1941
  }
1942
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'). */
1943
1943
  interface Tag {
@@ -1952,15 +1952,15 @@ declare module '@atcute/client/lexicons' {
1952
1952
  namespace AppBskyUnspeccedDefs {
1953
1953
  interface SkeletonSearchActor {
1954
1954
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchActor';
1955
- did: At.DID;
1955
+ did: At.Did;
1956
1956
  }
1957
1957
  interface SkeletonSearchPost {
1958
1958
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchPost';
1959
- uri: At.Uri;
1959
+ uri: At.ResourceUri;
1960
1960
  }
1961
1961
  interface SkeletonSearchStarterPack {
1962
1962
  [Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchStarterPack';
1963
- uri: At.Uri;
1963
+ uri: At.ResourceUri;
1964
1964
  }
1965
1965
  interface TrendingTopic {
1966
1966
  [Brand.Type]?: 'app.bsky.unspecced.defs#trendingTopic';
@@ -2008,9 +2008,9 @@ declare module '@atcute/client/lexicons' {
2008
2008
  */
2009
2009
  limit?: number;
2010
2010
  /** DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer. */
2011
- relativeToDid?: At.DID;
2011
+ relativeToDid?: At.Did;
2012
2012
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2013
- viewer?: At.DID;
2013
+ viewer?: At.Did;
2014
2014
  }
2015
2015
  type Input = undefined;
2016
2016
  interface Output {
@@ -2019,7 +2019,7 @@ declare module '@atcute/client/lexicons' {
2019
2019
  /** Snowflake for this recommendation, use when submitting recommendation events. */
2020
2020
  recId?: number;
2021
2021
  /** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
2022
- relativeToDid?: At.DID;
2022
+ relativeToDid?: At.Did;
2023
2023
  }
2024
2024
  }
2025
2025
  /** Get a list of suggestions (feeds and users) tagged with categories */
@@ -2030,7 +2030,7 @@ declare module '@atcute/client/lexicons' {
2030
2030
  }
2031
2031
  interface Suggestion {
2032
2032
  [Brand.Type]?: 'app.bsky.unspecced.getTaggedSuggestions#suggestion';
2033
- subject: string;
2033
+ subject: At.GenericUri;
2034
2034
  subjectType: 'actor' | 'feed' | (string & {});
2035
2035
  tag: string;
2036
2036
  }
@@ -2045,7 +2045,7 @@ declare module '@atcute/client/lexicons' {
2045
2045
  */
2046
2046
  limit?: number;
2047
2047
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2048
- viewer?: At.DID;
2048
+ viewer?: At.Did;
2049
2049
  }
2050
2050
  type Input = undefined;
2051
2051
  interface Output {
@@ -2069,7 +2069,7 @@ declare module '@atcute/client/lexicons' {
2069
2069
  /** If true, acts as fast/simple 'typeahead' query. */
2070
2070
  typeahead?: boolean;
2071
2071
  /** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
2072
- viewer?: At.DID;
2072
+ viewer?: At.Did;
2073
2073
  }
2074
2074
  type Input = undefined;
2075
2075
  interface Output {
@@ -2088,7 +2088,7 @@ declare module '@atcute/client/lexicons' {
2088
2088
  /** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
2089
2089
  q: string;
2090
2090
  /** Filter to posts by the given account. Handles are resolved to DID before query-time. */
2091
- author?: string;
2091
+ author?: At.Identifier;
2092
2092
  /** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
2093
2093
  cursor?: string;
2094
2094
  /** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
@@ -2102,7 +2102,7 @@ declare module '@atcute/client/lexicons' {
2102
2102
  */
2103
2103
  limit?: number;
2104
2104
  /** 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;
2105
+ mentions?: At.Identifier;
2106
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). */
2107
2107
  since?: string;
2108
2108
  /**
@@ -2119,9 +2119,9 @@ declare module '@atcute/client/lexicons' {
2119
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). */
2120
2120
  until?: string;
2121
2121
  /** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
2122
- url?: string;
2122
+ url?: At.GenericUri;
2123
2123
  /** DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries. */
2124
- viewer?: At.DID;
2124
+ viewer?: At.Did;
2125
2125
  }
2126
2126
  type Input = undefined;
2127
2127
  interface Output {
@@ -2148,7 +2148,7 @@ declare module '@atcute/client/lexicons' {
2148
2148
  */
2149
2149
  limit?: number;
2150
2150
  /** DID of the account making the request (not included for public/unauthenticated queries). */
2151
- viewer?: At.DID;
2151
+ viewer?: At.Did;
2152
2152
  }
2153
2153
  type Input = undefined;
2154
2154
  interface Output {
@@ -2164,7 +2164,7 @@ declare module '@atcute/client/lexicons' {
2164
2164
  namespace AppBskyVideoDefs {
2165
2165
  interface JobStatus {
2166
2166
  [Brand.Type]?: 'app.bsky.video.defs#jobStatus';
2167
- did: At.DID;
2167
+ did: At.Did;
2168
2168
  jobId: string;
2169
2169
  /** The state of the video processing job. All values not listed as a known value indicate that the job is in process. */
2170
2170
  state: 'JOB_STATE_COMPLETED' | 'JOB_STATE_FAILED' | (string & {});
@@ -2206,7 +2206,7 @@ declare module '@atcute/client/lexicons' {
2206
2206
  namespace AppBskyVideoUploadVideo {
2207
2207
  interface Params {
2208
2208
  }
2209
- type Input = Blob | ArrayBufferView;
2209
+ type Input = Blob | BufferSource | ReadableStream;
2210
2210
  interface Output {
2211
2211
  jobStatus: AppBskyVideoDefs.JobStatus;
2212
2212
  }
@@ -2221,10 +2221,10 @@ declare module '@atcute/client/lexicons' {
2221
2221
  namespace ChatBskyActorDefs {
2222
2222
  interface ProfileViewBasic {
2223
2223
  [Brand.Type]?: 'chat.bsky.actor.defs#profileViewBasic';
2224
- did: At.DID;
2224
+ did: At.Did;
2225
2225
  handle: At.Handle;
2226
2226
  associated?: AppBskyActorDefs.ProfileAssociated;
2227
- avatar?: string;
2227
+ avatar?: At.GenericUri;
2228
2228
  /** Set to true when the actor cannot actively participate in converations */
2229
2229
  chatDisabled?: boolean;
2230
2230
  /**
@@ -2260,6 +2260,29 @@ declare module '@atcute/client/lexicons' {
2260
2260
  rev?: string;
2261
2261
  }
2262
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
+ }
2263
2286
  namespace ChatBskyConvoDefs {
2264
2287
  interface ConvoView {
2265
2288
  [Brand.Type]?: 'chat.bsky.convo.defs#convoView';
@@ -2268,7 +2291,7 @@ declare module '@atcute/client/lexicons' {
2268
2291
  muted: boolean;
2269
2292
  rev: string;
2270
2293
  unreadCount: number;
2271
- lastMessage?: Brand.Union<DeletedMessageView | MessageView>;
2294
+ lastMessage?: Brand.Union<DeletedMessageView | MessageAndReactionView | MessageView>;
2272
2295
  status?: 'accepted' | 'request' | (string & {});
2273
2296
  }
2274
2297
  interface DeletedMessageView {
@@ -2283,6 +2306,13 @@ declare module '@atcute/client/lexicons' {
2283
2306
  convoId: string;
2284
2307
  rev: string;
2285
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
+ }
2286
2316
  interface LogBeginConvo {
2287
2317
  [Brand.Type]?: 'chat.bsky.convo.defs#logBeginConvo';
2288
2318
  convoId: string;
@@ -2316,11 +2346,23 @@ declare module '@atcute/client/lexicons' {
2316
2346
  message: Brand.Union<DeletedMessageView | MessageView>;
2317
2347
  rev: string;
2318
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
+ }
2319
2356
  interface LogUnmuteConvo {
2320
2357
  [Brand.Type]?: 'chat.bsky.convo.defs#logUnmuteConvo';
2321
2358
  convoId: string;
2322
2359
  rev: string;
2323
2360
  }
2361
+ interface MessageAndReactionView {
2362
+ [Brand.Type]?: 'chat.bsky.convo.defs#messageAndReactionView';
2363
+ message: MessageView;
2364
+ reaction: ReactionView;
2365
+ }
2324
2366
  interface MessageInput {
2325
2367
  [Brand.Type]?: 'chat.bsky.convo.defs#messageInput';
2326
2368
  /**
@@ -2335,7 +2377,7 @@ declare module '@atcute/client/lexicons' {
2335
2377
  interface MessageRef {
2336
2378
  [Brand.Type]?: 'chat.bsky.convo.defs#messageRef';
2337
2379
  convoId: string;
2338
- did: At.DID;
2380
+ did: At.Did;
2339
2381
  messageId: string;
2340
2382
  }
2341
2383
  interface MessageView {
@@ -2352,10 +2394,21 @@ declare module '@atcute/client/lexicons' {
2352
2394
  embed?: Brand.Union<AppBskyEmbedRecord.View>;
2353
2395
  /** Annotations of text (mentions, URLs, hashtags, etc) */
2354
2396
  facets?: AppBskyRichtextFacet.Main[];
2397
+ reactions?: ReactionView[];
2355
2398
  }
2356
2399
  interface MessageViewSender {
2357
2400
  [Brand.Type]?: 'chat.bsky.convo.defs#messageViewSender';
2358
- 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;
2359
2412
  }
2360
2413
  }
2361
2414
  namespace ChatBskyConvoDeleteMessageForSelf {
@@ -2383,7 +2436,7 @@ declare module '@atcute/client/lexicons' {
2383
2436
  * Minimum array length: 1 \
2384
2437
  * Maximum array length: 10
2385
2438
  */
2386
- members: At.DID[];
2439
+ members: At.Did[];
2387
2440
  }
2388
2441
  type Input = undefined;
2389
2442
  interface Output {
@@ -2397,7 +2450,7 @@ declare module '@atcute/client/lexicons' {
2397
2450
  * Minimum array length: 1 \
2398
2451
  * Maximum array length: 10
2399
2452
  */
2400
- members: At.DID[];
2453
+ members: At.Did[];
2401
2454
  }
2402
2455
  type Input = undefined;
2403
2456
  interface Output {
@@ -2410,7 +2463,7 @@ declare module '@atcute/client/lexicons' {
2410
2463
  }
2411
2464
  type Input = undefined;
2412
2465
  interface Output {
2413
- 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>[];
2414
2467
  cursor?: string;
2415
2468
  }
2416
2469
  }
@@ -2470,6 +2523,28 @@ declare module '@atcute/client/lexicons' {
2470
2523
  convo: ChatBskyConvoDefs.ConvoView;
2471
2524
  }
2472
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
+ }
2473
2548
  namespace ChatBskyConvoSendMessage {
2474
2549
  interface Params {
2475
2550
  }
@@ -2529,7 +2604,7 @@ declare module '@atcute/client/lexicons' {
2529
2604
  }
2530
2605
  namespace ChatBskyModerationGetActorMetadata {
2531
2606
  interface Params {
2532
- actor: At.DID;
2607
+ actor: At.Did;
2533
2608
  }
2534
2609
  type Input = undefined;
2535
2610
  interface Output {
@@ -2564,7 +2639,7 @@ declare module '@atcute/client/lexicons' {
2564
2639
  interface Params {
2565
2640
  }
2566
2641
  interface Input {
2567
- actor: At.DID;
2642
+ actor: At.Did;
2568
2643
  allowAccess: boolean;
2569
2644
  ref?: string;
2570
2645
  }
@@ -2589,238 +2664,476 @@ declare module '@atcute/client/lexicons' {
2589
2664
  }
2590
2665
  interface Queries {
2591
2666
  'app.bsky.actor.getPreferences': {
2667
+ /** @deprecated */
2592
2668
  output: AppBskyActorGetPreferences.Output;
2669
+ response: {
2670
+ json: AppBskyActorGetPreferences.Output;
2671
+ };
2593
2672
  };
2594
2673
  'app.bsky.actor.getProfile': {
2595
2674
  params: AppBskyActorGetProfile.Params;
2675
+ /** @deprecated */
2596
2676
  output: AppBskyActorGetProfile.Output;
2677
+ response: {
2678
+ json: AppBskyActorGetProfile.Output;
2679
+ };
2597
2680
  };
2598
2681
  'app.bsky.actor.getProfiles': {
2599
2682
  params: AppBskyActorGetProfiles.Params;
2683
+ /** @deprecated */
2600
2684
  output: AppBskyActorGetProfiles.Output;
2685
+ response: {
2686
+ json: AppBskyActorGetProfiles.Output;
2687
+ };
2601
2688
  };
2602
2689
  'app.bsky.actor.getSuggestions': {
2603
2690
  params: AppBskyActorGetSuggestions.Params;
2691
+ /** @deprecated */
2604
2692
  output: AppBskyActorGetSuggestions.Output;
2693
+ response: {
2694
+ json: AppBskyActorGetSuggestions.Output;
2695
+ };
2605
2696
  };
2606
2697
  'app.bsky.actor.searchActors': {
2607
2698
  params: AppBskyActorSearchActors.Params;
2699
+ /** @deprecated */
2608
2700
  output: AppBskyActorSearchActors.Output;
2701
+ response: {
2702
+ json: AppBskyActorSearchActors.Output;
2703
+ };
2609
2704
  };
2610
2705
  'app.bsky.actor.searchActorsTypeahead': {
2611
2706
  params: AppBskyActorSearchActorsTypeahead.Params;
2707
+ /** @deprecated */
2612
2708
  output: AppBskyActorSearchActorsTypeahead.Output;
2709
+ response: {
2710
+ json: AppBskyActorSearchActorsTypeahead.Output;
2711
+ };
2613
2712
  };
2614
2713
  'app.bsky.feed.describeFeedGenerator': {
2714
+ /** @deprecated */
2615
2715
  output: AppBskyFeedDescribeFeedGenerator.Output;
2716
+ response: {
2717
+ json: AppBskyFeedDescribeFeedGenerator.Output;
2718
+ };
2616
2719
  };
2617
2720
  'app.bsky.feed.getActorFeeds': {
2618
2721
  params: AppBskyFeedGetActorFeeds.Params;
2722
+ /** @deprecated */
2619
2723
  output: AppBskyFeedGetActorFeeds.Output;
2724
+ response: {
2725
+ json: AppBskyFeedGetActorFeeds.Output;
2726
+ };
2620
2727
  };
2621
2728
  'app.bsky.feed.getActorLikes': {
2622
2729
  params: AppBskyFeedGetActorLikes.Params;
2730
+ /** @deprecated */
2623
2731
  output: AppBskyFeedGetActorLikes.Output;
2732
+ response: {
2733
+ json: AppBskyFeedGetActorLikes.Output;
2734
+ };
2624
2735
  };
2625
2736
  'app.bsky.feed.getAuthorFeed': {
2626
2737
  params: AppBskyFeedGetAuthorFeed.Params;
2738
+ /** @deprecated */
2627
2739
  output: AppBskyFeedGetAuthorFeed.Output;
2740
+ response: {
2741
+ json: AppBskyFeedGetAuthorFeed.Output;
2742
+ };
2628
2743
  };
2629
2744
  'app.bsky.feed.getFeed': {
2630
2745
  params: AppBskyFeedGetFeed.Params;
2746
+ /** @deprecated */
2631
2747
  output: AppBskyFeedGetFeed.Output;
2748
+ response: {
2749
+ json: AppBskyFeedGetFeed.Output;
2750
+ };
2632
2751
  };
2633
2752
  'app.bsky.feed.getFeedGenerator': {
2634
2753
  params: AppBskyFeedGetFeedGenerator.Params;
2754
+ /** @deprecated */
2635
2755
  output: AppBskyFeedGetFeedGenerator.Output;
2756
+ response: {
2757
+ json: AppBskyFeedGetFeedGenerator.Output;
2758
+ };
2636
2759
  };
2637
2760
  'app.bsky.feed.getFeedGenerators': {
2638
2761
  params: AppBskyFeedGetFeedGenerators.Params;
2762
+ /** @deprecated */
2639
2763
  output: AppBskyFeedGetFeedGenerators.Output;
2764
+ response: {
2765
+ json: AppBskyFeedGetFeedGenerators.Output;
2766
+ };
2640
2767
  };
2641
2768
  'app.bsky.feed.getFeedSkeleton': {
2642
2769
  params: AppBskyFeedGetFeedSkeleton.Params;
2770
+ /** @deprecated */
2643
2771
  output: AppBskyFeedGetFeedSkeleton.Output;
2772
+ response: {
2773
+ json: AppBskyFeedGetFeedSkeleton.Output;
2774
+ };
2644
2775
  };
2645
2776
  'app.bsky.feed.getLikes': {
2646
2777
  params: AppBskyFeedGetLikes.Params;
2778
+ /** @deprecated */
2647
2779
  output: AppBskyFeedGetLikes.Output;
2780
+ response: {
2781
+ json: AppBskyFeedGetLikes.Output;
2782
+ };
2648
2783
  };
2649
2784
  'app.bsky.feed.getListFeed': {
2650
2785
  params: AppBskyFeedGetListFeed.Params;
2786
+ /** @deprecated */
2651
2787
  output: AppBskyFeedGetListFeed.Output;
2788
+ response: {
2789
+ json: AppBskyFeedGetListFeed.Output;
2790
+ };
2652
2791
  };
2653
2792
  'app.bsky.feed.getPosts': {
2654
2793
  params: AppBskyFeedGetPosts.Params;
2794
+ /** @deprecated */
2655
2795
  output: AppBskyFeedGetPosts.Output;
2796
+ response: {
2797
+ json: AppBskyFeedGetPosts.Output;
2798
+ };
2656
2799
  };
2657
2800
  'app.bsky.feed.getPostThread': {
2658
2801
  params: AppBskyFeedGetPostThread.Params;
2802
+ /** @deprecated */
2659
2803
  output: AppBskyFeedGetPostThread.Output;
2804
+ response: {
2805
+ json: AppBskyFeedGetPostThread.Output;
2806
+ };
2660
2807
  };
2661
2808
  'app.bsky.feed.getQuotes': {
2662
2809
  params: AppBskyFeedGetQuotes.Params;
2810
+ /** @deprecated */
2663
2811
  output: AppBskyFeedGetQuotes.Output;
2812
+ response: {
2813
+ json: AppBskyFeedGetQuotes.Output;
2814
+ };
2664
2815
  };
2665
2816
  'app.bsky.feed.getRepostedBy': {
2666
2817
  params: AppBskyFeedGetRepostedBy.Params;
2818
+ /** @deprecated */
2667
2819
  output: AppBskyFeedGetRepostedBy.Output;
2820
+ response: {
2821
+ json: AppBskyFeedGetRepostedBy.Output;
2822
+ };
2668
2823
  };
2669
2824
  'app.bsky.feed.getSuggestedFeeds': {
2670
2825
  params: AppBskyFeedGetSuggestedFeeds.Params;
2826
+ /** @deprecated */
2671
2827
  output: AppBskyFeedGetSuggestedFeeds.Output;
2828
+ response: {
2829
+ json: AppBskyFeedGetSuggestedFeeds.Output;
2830
+ };
2672
2831
  };
2673
2832
  'app.bsky.feed.getTimeline': {
2674
2833
  params: AppBskyFeedGetTimeline.Params;
2834
+ /** @deprecated */
2675
2835
  output: AppBskyFeedGetTimeline.Output;
2836
+ response: {
2837
+ json: AppBskyFeedGetTimeline.Output;
2838
+ };
2676
2839
  };
2677
2840
  'app.bsky.feed.searchPosts': {
2678
2841
  params: AppBskyFeedSearchPosts.Params;
2842
+ /** @deprecated */
2679
2843
  output: AppBskyFeedSearchPosts.Output;
2844
+ response: {
2845
+ json: AppBskyFeedSearchPosts.Output;
2846
+ };
2680
2847
  };
2681
2848
  'app.bsky.graph.getActorStarterPacks': {
2682
2849
  params: AppBskyGraphGetActorStarterPacks.Params;
2850
+ /** @deprecated */
2683
2851
  output: AppBskyGraphGetActorStarterPacks.Output;
2852
+ response: {
2853
+ json: AppBskyGraphGetActorStarterPacks.Output;
2854
+ };
2684
2855
  };
2685
2856
  'app.bsky.graph.getBlocks': {
2686
2857
  params: AppBskyGraphGetBlocks.Params;
2858
+ /** @deprecated */
2687
2859
  output: AppBskyGraphGetBlocks.Output;
2860
+ response: {
2861
+ json: AppBskyGraphGetBlocks.Output;
2862
+ };
2688
2863
  };
2689
2864
  'app.bsky.graph.getFollowers': {
2690
2865
  params: AppBskyGraphGetFollowers.Params;
2866
+ /** @deprecated */
2691
2867
  output: AppBskyGraphGetFollowers.Output;
2868
+ response: {
2869
+ json: AppBskyGraphGetFollowers.Output;
2870
+ };
2692
2871
  };
2693
2872
  'app.bsky.graph.getFollows': {
2694
2873
  params: AppBskyGraphGetFollows.Params;
2874
+ /** @deprecated */
2695
2875
  output: AppBskyGraphGetFollows.Output;
2876
+ response: {
2877
+ json: AppBskyGraphGetFollows.Output;
2878
+ };
2696
2879
  };
2697
2880
  'app.bsky.graph.getKnownFollowers': {
2698
2881
  params: AppBskyGraphGetKnownFollowers.Params;
2882
+ /** @deprecated */
2699
2883
  output: AppBskyGraphGetKnownFollowers.Output;
2884
+ response: {
2885
+ json: AppBskyGraphGetKnownFollowers.Output;
2886
+ };
2700
2887
  };
2701
2888
  'app.bsky.graph.getList': {
2702
2889
  params: AppBskyGraphGetList.Params;
2890
+ /** @deprecated */
2703
2891
  output: AppBskyGraphGetList.Output;
2892
+ response: {
2893
+ json: AppBskyGraphGetList.Output;
2894
+ };
2704
2895
  };
2705
2896
  'app.bsky.graph.getListBlocks': {
2706
2897
  params: AppBskyGraphGetListBlocks.Params;
2898
+ /** @deprecated */
2707
2899
  output: AppBskyGraphGetListBlocks.Output;
2900
+ response: {
2901
+ json: AppBskyGraphGetListBlocks.Output;
2902
+ };
2708
2903
  };
2709
2904
  'app.bsky.graph.getListMutes': {
2710
2905
  params: AppBskyGraphGetListMutes.Params;
2906
+ /** @deprecated */
2711
2907
  output: AppBskyGraphGetListMutes.Output;
2908
+ response: {
2909
+ json: AppBskyGraphGetListMutes.Output;
2910
+ };
2712
2911
  };
2713
2912
  'app.bsky.graph.getLists': {
2714
2913
  params: AppBskyGraphGetLists.Params;
2914
+ /** @deprecated */
2715
2915
  output: AppBskyGraphGetLists.Output;
2916
+ response: {
2917
+ json: AppBskyGraphGetLists.Output;
2918
+ };
2716
2919
  };
2717
2920
  'app.bsky.graph.getMutes': {
2718
2921
  params: AppBskyGraphGetMutes.Params;
2922
+ /** @deprecated */
2719
2923
  output: AppBskyGraphGetMutes.Output;
2924
+ response: {
2925
+ json: AppBskyGraphGetMutes.Output;
2926
+ };
2720
2927
  };
2721
2928
  'app.bsky.graph.getRelationships': {
2722
2929
  params: AppBskyGraphGetRelationships.Params;
2930
+ /** @deprecated */
2723
2931
  output: AppBskyGraphGetRelationships.Output;
2932
+ response: {
2933
+ json: AppBskyGraphGetRelationships.Output;
2934
+ };
2724
2935
  };
2725
2936
  'app.bsky.graph.getStarterPack': {
2726
2937
  params: AppBskyGraphGetStarterPack.Params;
2938
+ /** @deprecated */
2727
2939
  output: AppBskyGraphGetStarterPack.Output;
2940
+ response: {
2941
+ json: AppBskyGraphGetStarterPack.Output;
2942
+ };
2728
2943
  };
2729
2944
  'app.bsky.graph.getStarterPacks': {
2730
2945
  params: AppBskyGraphGetStarterPacks.Params;
2946
+ /** @deprecated */
2731
2947
  output: AppBskyGraphGetStarterPacks.Output;
2948
+ response: {
2949
+ json: AppBskyGraphGetStarterPacks.Output;
2950
+ };
2732
2951
  };
2733
2952
  'app.bsky.graph.getSuggestedFollowsByActor': {
2734
2953
  params: AppBskyGraphGetSuggestedFollowsByActor.Params;
2954
+ /** @deprecated */
2735
2955
  output: AppBskyGraphGetSuggestedFollowsByActor.Output;
2956
+ response: {
2957
+ json: AppBskyGraphGetSuggestedFollowsByActor.Output;
2958
+ };
2736
2959
  };
2737
2960
  'app.bsky.graph.searchStarterPacks': {
2738
2961
  params: AppBskyGraphSearchStarterPacks.Params;
2962
+ /** @deprecated */
2739
2963
  output: AppBskyGraphSearchStarterPacks.Output;
2964
+ response: {
2965
+ json: AppBskyGraphSearchStarterPacks.Output;
2966
+ };
2740
2967
  };
2741
2968
  'app.bsky.labeler.getServices': {
2742
2969
  params: AppBskyLabelerGetServices.Params;
2970
+ /** @deprecated */
2743
2971
  output: AppBskyLabelerGetServices.Output;
2972
+ response: {
2973
+ json: AppBskyLabelerGetServices.Output;
2974
+ };
2744
2975
  };
2745
2976
  'app.bsky.notification.getUnreadCount': {
2746
2977
  params: AppBskyNotificationGetUnreadCount.Params;
2978
+ /** @deprecated */
2747
2979
  output: AppBskyNotificationGetUnreadCount.Output;
2980
+ response: {
2981
+ json: AppBskyNotificationGetUnreadCount.Output;
2982
+ };
2748
2983
  };
2749
2984
  'app.bsky.notification.listNotifications': {
2750
2985
  params: AppBskyNotificationListNotifications.Params;
2986
+ /** @deprecated */
2751
2987
  output: AppBskyNotificationListNotifications.Output;
2988
+ response: {
2989
+ json: AppBskyNotificationListNotifications.Output;
2990
+ };
2752
2991
  };
2753
2992
  'app.bsky.unspecced.getConfig': {
2993
+ /** @deprecated */
2754
2994
  output: AppBskyUnspeccedGetConfig.Output;
2995
+ response: {
2996
+ json: AppBskyUnspeccedGetConfig.Output;
2997
+ };
2755
2998
  };
2756
2999
  'app.bsky.unspecced.getPopularFeedGenerators': {
2757
3000
  params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
3001
+ /** @deprecated */
2758
3002
  output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3003
+ response: {
3004
+ json: AppBskyUnspeccedGetPopularFeedGenerators.Output;
3005
+ };
2759
3006
  };
2760
3007
  'app.bsky.unspecced.getSuggestionsSkeleton': {
2761
3008
  params: AppBskyUnspeccedGetSuggestionsSkeleton.Params;
3009
+ /** @deprecated */
2762
3010
  output: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3011
+ response: {
3012
+ json: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
3013
+ };
2763
3014
  };
2764
3015
  'app.bsky.unspecced.getTaggedSuggestions': {
3016
+ /** @deprecated */
2765
3017
  output: AppBskyUnspeccedGetTaggedSuggestions.Output;
3018
+ response: {
3019
+ json: AppBskyUnspeccedGetTaggedSuggestions.Output;
3020
+ };
2766
3021
  };
2767
3022
  'app.bsky.unspecced.getTrendingTopics': {
2768
3023
  params: AppBskyUnspeccedGetTrendingTopics.Params;
3024
+ /** @deprecated */
2769
3025
  output: AppBskyUnspeccedGetTrendingTopics.Output;
3026
+ response: {
3027
+ json: AppBskyUnspeccedGetTrendingTopics.Output;
3028
+ };
2770
3029
  };
2771
3030
  'app.bsky.unspecced.searchActorsSkeleton': {
2772
3031
  params: AppBskyUnspeccedSearchActorsSkeleton.Params;
3032
+ /** @deprecated */
2773
3033
  output: AppBskyUnspeccedSearchActorsSkeleton.Output;
3034
+ response: {
3035
+ json: AppBskyUnspeccedSearchActorsSkeleton.Output;
3036
+ };
2774
3037
  };
2775
3038
  'app.bsky.unspecced.searchPostsSkeleton': {
2776
3039
  params: AppBskyUnspeccedSearchPostsSkeleton.Params;
3040
+ /** @deprecated */
2777
3041
  output: AppBskyUnspeccedSearchPostsSkeleton.Output;
3042
+ response: {
3043
+ json: AppBskyUnspeccedSearchPostsSkeleton.Output;
3044
+ };
2778
3045
  };
2779
3046
  'app.bsky.unspecced.searchStarterPacksSkeleton': {
2780
3047
  params: AppBskyUnspeccedSearchStarterPacksSkeleton.Params;
3048
+ /** @deprecated */
2781
3049
  output: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3050
+ response: {
3051
+ json: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
3052
+ };
2782
3053
  };
2783
3054
  'app.bsky.video.getJobStatus': {
2784
3055
  params: AppBskyVideoGetJobStatus.Params;
3056
+ /** @deprecated */
2785
3057
  output: AppBskyVideoGetJobStatus.Output;
3058
+ response: {
3059
+ json: AppBskyVideoGetJobStatus.Output;
3060
+ };
2786
3061
  };
2787
3062
  'app.bsky.video.getUploadLimits': {
3063
+ /** @deprecated */
2788
3064
  output: AppBskyVideoGetUploadLimits.Output;
3065
+ response: {
3066
+ json: AppBskyVideoGetUploadLimits.Output;
3067
+ };
2789
3068
  };
2790
3069
  'chat.bsky.actor.exportAccountData': {
3070
+ /** @deprecated */
2791
3071
  output: ChatBskyActorExportAccountData.Output;
3072
+ response: {};
2792
3073
  };
2793
3074
  'chat.bsky.convo.getConvo': {
2794
3075
  params: ChatBskyConvoGetConvo.Params;
3076
+ /** @deprecated */
2795
3077
  output: ChatBskyConvoGetConvo.Output;
3078
+ response: {
3079
+ json: ChatBskyConvoGetConvo.Output;
3080
+ };
2796
3081
  };
2797
3082
  'chat.bsky.convo.getConvoAvailability': {
2798
3083
  params: ChatBskyConvoGetConvoAvailability.Params;
3084
+ /** @deprecated */
2799
3085
  output: ChatBskyConvoGetConvoAvailability.Output;
3086
+ response: {
3087
+ json: ChatBskyConvoGetConvoAvailability.Output;
3088
+ };
2800
3089
  };
2801
3090
  'chat.bsky.convo.getConvoForMembers': {
2802
3091
  params: ChatBskyConvoGetConvoForMembers.Params;
3092
+ /** @deprecated */
2803
3093
  output: ChatBskyConvoGetConvoForMembers.Output;
3094
+ response: {
3095
+ json: ChatBskyConvoGetConvoForMembers.Output;
3096
+ };
2804
3097
  };
2805
3098
  'chat.bsky.convo.getLog': {
2806
3099
  params: ChatBskyConvoGetLog.Params;
3100
+ /** @deprecated */
2807
3101
  output: ChatBskyConvoGetLog.Output;
3102
+ response: {
3103
+ json: ChatBskyConvoGetLog.Output;
3104
+ };
2808
3105
  };
2809
3106
  'chat.bsky.convo.getMessages': {
2810
3107
  params: ChatBskyConvoGetMessages.Params;
3108
+ /** @deprecated */
2811
3109
  output: ChatBskyConvoGetMessages.Output;
3110
+ response: {
3111
+ json: ChatBskyConvoGetMessages.Output;
3112
+ };
2812
3113
  };
2813
3114
  'chat.bsky.convo.listConvos': {
2814
3115
  params: ChatBskyConvoListConvos.Params;
3116
+ /** @deprecated */
2815
3117
  output: ChatBskyConvoListConvos.Output;
3118
+ response: {
3119
+ json: ChatBskyConvoListConvos.Output;
3120
+ };
2816
3121
  };
2817
3122
  'chat.bsky.moderation.getActorMetadata': {
2818
3123
  params: ChatBskyModerationGetActorMetadata.Params;
3124
+ /** @deprecated */
2819
3125
  output: ChatBskyModerationGetActorMetadata.Output;
3126
+ response: {
3127
+ json: ChatBskyModerationGetActorMetadata.Output;
3128
+ };
2820
3129
  };
2821
3130
  'chat.bsky.moderation.getMessageContext': {
2822
3131
  params: ChatBskyModerationGetMessageContext.Params;
3132
+ /** @deprecated */
2823
3133
  output: ChatBskyModerationGetMessageContext.Output;
3134
+ response: {
3135
+ json: ChatBskyModerationGetMessageContext.Output;
3136
+ };
2824
3137
  };
2825
3138
  }
2826
3139
  interface Procedures {
@@ -2829,7 +3142,11 @@ declare module '@atcute/client/lexicons' {
2829
3142
  };
2830
3143
  'app.bsky.feed.sendInteractions': {
2831
3144
  input: AppBskyFeedSendInteractions.Input;
3145
+ /** @deprecated */
2832
3146
  output: AppBskyFeedSendInteractions.Output;
3147
+ response: {
3148
+ json: AppBskyFeedSendInteractions.Output;
3149
+ };
2833
3150
  };
2834
3151
  'app.bsky.graph.muteActor': {
2835
3152
  input: AppBskyGraphMuteActor.Input;
@@ -2860,46 +3177,106 @@ declare module '@atcute/client/lexicons' {
2860
3177
  };
2861
3178
  'app.bsky.video.uploadVideo': {
2862
3179
  input: AppBskyVideoUploadVideo.Input;
3180
+ /** @deprecated */
2863
3181
  output: AppBskyVideoUploadVideo.Output;
3182
+ response: {
3183
+ json: AppBskyVideoUploadVideo.Output;
3184
+ };
2864
3185
  };
2865
3186
  'chat.bsky.actor.deleteAccount': {
3187
+ /** @deprecated */
2866
3188
  output: ChatBskyActorDeleteAccount.Output;
3189
+ response: {
3190
+ json: ChatBskyActorDeleteAccount.Output;
3191
+ };
2867
3192
  };
2868
3193
  'chat.bsky.convo.acceptConvo': {
2869
3194
  input: ChatBskyConvoAcceptConvo.Input;
3195
+ /** @deprecated */
2870
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
+ };
2871
3208
  };
2872
3209
  'chat.bsky.convo.deleteMessageForSelf': {
2873
3210
  input: ChatBskyConvoDeleteMessageForSelf.Input;
3211
+ /** @deprecated */
2874
3212
  output: ChatBskyConvoDeleteMessageForSelf.Output;
3213
+ response: {
3214
+ json: ChatBskyConvoDeleteMessageForSelf.Output;
3215
+ };
2875
3216
  };
2876
3217
  'chat.bsky.convo.leaveConvo': {
2877
3218
  input: ChatBskyConvoLeaveConvo.Input;
3219
+ /** @deprecated */
2878
3220
  output: ChatBskyConvoLeaveConvo.Output;
3221
+ response: {
3222
+ json: ChatBskyConvoLeaveConvo.Output;
3223
+ };
2879
3224
  };
2880
3225
  'chat.bsky.convo.muteConvo': {
2881
3226
  input: ChatBskyConvoMuteConvo.Input;
3227
+ /** @deprecated */
2882
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
+ };
2883
3240
  };
2884
3241
  'chat.bsky.convo.sendMessage': {
2885
3242
  input: ChatBskyConvoSendMessage.Input;
3243
+ /** @deprecated */
2886
3244
  output: ChatBskyConvoSendMessage.Output;
3245
+ response: {
3246
+ json: ChatBskyConvoSendMessage.Output;
3247
+ };
2887
3248
  };
2888
3249
  'chat.bsky.convo.sendMessageBatch': {
2889
3250
  input: ChatBskyConvoSendMessageBatch.Input;
3251
+ /** @deprecated */
2890
3252
  output: ChatBskyConvoSendMessageBatch.Output;
3253
+ response: {
3254
+ json: ChatBskyConvoSendMessageBatch.Output;
3255
+ };
2891
3256
  };
2892
3257
  'chat.bsky.convo.unmuteConvo': {
2893
3258
  input: ChatBskyConvoUnmuteConvo.Input;
3259
+ /** @deprecated */
2894
3260
  output: ChatBskyConvoUnmuteConvo.Output;
3261
+ response: {
3262
+ json: ChatBskyConvoUnmuteConvo.Output;
3263
+ };
2895
3264
  };
2896
3265
  'chat.bsky.convo.updateAllRead': {
2897
3266
  input: ChatBskyConvoUpdateAllRead.Input;
3267
+ /** @deprecated */
2898
3268
  output: ChatBskyConvoUpdateAllRead.Output;
3269
+ response: {
3270
+ json: ChatBskyConvoUpdateAllRead.Output;
3271
+ };
2899
3272
  };
2900
3273
  'chat.bsky.convo.updateRead': {
2901
3274
  input: ChatBskyConvoUpdateRead.Input;
3275
+ /** @deprecated */
2902
3276
  output: ChatBskyConvoUpdateRead.Output;
3277
+ response: {
3278
+ json: ChatBskyConvoUpdateRead.Output;
3279
+ };
2903
3280
  };
2904
3281
  'chat.bsky.moderation.updateActorAccess': {
2905
3282
  input: ChatBskyModerationUpdateActorAccess.Input;