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