@atcute/bluesky 1.0.15 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lexicons.d.ts +773 -161
- package/lib/lexicons.ts +624 -160
- 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<
|
|
@@ -586,29 +586,29 @@ declare module '@atcute/client/lexicons' {
|
|
|
586
586
|
}
|
|
587
587
|
interface View {
|
|
588
588
|
[Brand.Type]?: 'app.bsky.embed.video#view';
|
|
589
|
-
cid: At.
|
|
590
|
-
playlist:
|
|
589
|
+
cid: At.Cid;
|
|
590
|
+
playlist: At.GenericUri;
|
|
591
591
|
/**
|
|
592
592
|
* Maximum string length: 10000 \
|
|
593
593
|
* Maximum grapheme length: 1000
|
|
594
594
|
*/
|
|
595
595
|
alt?: string;
|
|
596
596
|
aspectRatio?: AppBskyEmbedDefs.AspectRatio;
|
|
597
|
-
thumbnail?:
|
|
597
|
+
thumbnail?: At.GenericUri;
|
|
598
598
|
}
|
|
599
599
|
}
|
|
600
600
|
|
|
601
601
|
namespace AppBskyFeedDefs {
|
|
602
602
|
interface BlockedAuthor {
|
|
603
603
|
[Brand.Type]?: 'app.bsky.feed.defs#blockedAuthor';
|
|
604
|
-
did: At.
|
|
604
|
+
did: At.Did;
|
|
605
605
|
viewer?: AppBskyActorDefs.ViewerState;
|
|
606
606
|
}
|
|
607
607
|
interface BlockedPost {
|
|
608
608
|
[Brand.Type]?: 'app.bsky.feed.defs#blockedPost';
|
|
609
609
|
author: BlockedAuthor;
|
|
610
610
|
blocked: boolean;
|
|
611
|
-
uri: At.
|
|
611
|
+
uri: At.ResourceUri;
|
|
612
612
|
}
|
|
613
613
|
type ClickthroughAuthor = 'app.bsky.feed.defs#clickthroughAuthor';
|
|
614
614
|
type ClickthroughEmbed = 'app.bsky.feed.defs#clickthroughEmbed';
|
|
@@ -629,14 +629,14 @@ declare module '@atcute/client/lexicons' {
|
|
|
629
629
|
}
|
|
630
630
|
interface GeneratorView {
|
|
631
631
|
[Brand.Type]?: 'app.bsky.feed.defs#generatorView';
|
|
632
|
-
cid: At.
|
|
632
|
+
cid: At.Cid;
|
|
633
633
|
creator: AppBskyActorDefs.ProfileView;
|
|
634
|
-
did: At.
|
|
634
|
+
did: At.Did;
|
|
635
635
|
displayName: string;
|
|
636
636
|
indexedAt: string;
|
|
637
|
-
uri: At.
|
|
637
|
+
uri: At.ResourceUri;
|
|
638
638
|
acceptsInteractions?: boolean;
|
|
639
|
-
avatar?:
|
|
639
|
+
avatar?: At.GenericUri;
|
|
640
640
|
contentMode?:
|
|
641
641
|
| 'app.bsky.feed.defs#contentModeUnspecified'
|
|
642
642
|
| 'app.bsky.feed.defs#contentModeVideo'
|
|
@@ -654,7 +654,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
654
654
|
}
|
|
655
655
|
interface GeneratorViewerState {
|
|
656
656
|
[Brand.Type]?: 'app.bsky.feed.defs#generatorViewerState';
|
|
657
|
-
like?: At.
|
|
657
|
+
like?: At.ResourceUri;
|
|
658
658
|
}
|
|
659
659
|
interface Interaction {
|
|
660
660
|
[Brand.Type]?: 'app.bsky.feed.defs#interaction';
|
|
@@ -677,7 +677,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
677
677
|
* Maximum string length: 2000
|
|
678
678
|
*/
|
|
679
679
|
feedContext?: string;
|
|
680
|
-
item?: At.
|
|
680
|
+
item?: At.ResourceUri;
|
|
681
681
|
}
|
|
682
682
|
type InteractionLike = 'app.bsky.feed.defs#interactionLike';
|
|
683
683
|
type InteractionQuote = 'app.bsky.feed.defs#interactionQuote';
|
|
@@ -688,15 +688,15 @@ declare module '@atcute/client/lexicons' {
|
|
|
688
688
|
interface NotFoundPost {
|
|
689
689
|
[Brand.Type]?: 'app.bsky.feed.defs#notFoundPost';
|
|
690
690
|
notFound: boolean;
|
|
691
|
-
uri: At.
|
|
691
|
+
uri: At.ResourceUri;
|
|
692
692
|
}
|
|
693
693
|
interface PostView {
|
|
694
694
|
[Brand.Type]?: 'app.bsky.feed.defs#postView';
|
|
695
695
|
author: AppBskyActorDefs.ProfileViewBasic;
|
|
696
|
-
cid: At.
|
|
696
|
+
cid: At.Cid;
|
|
697
697
|
indexedAt: string;
|
|
698
698
|
record: unknown;
|
|
699
|
-
uri: At.
|
|
699
|
+
uri: At.ResourceUri;
|
|
700
700
|
embed?: Brand.Union<
|
|
701
701
|
| AppBskyEmbedExternal.View
|
|
702
702
|
| AppBskyEmbedImages.View
|
|
@@ -731,7 +731,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
731
731
|
type RequestMore = 'app.bsky.feed.defs#requestMore';
|
|
732
732
|
interface SkeletonFeedPost {
|
|
733
733
|
[Brand.Type]?: 'app.bsky.feed.defs#skeletonFeedPost';
|
|
734
|
-
post: At.
|
|
734
|
+
post: At.ResourceUri;
|
|
735
735
|
/**
|
|
736
736
|
* Context that will be passed through to client and may be passed to feed generator back alongside interactions. \
|
|
737
737
|
* Maximum string length: 2000
|
|
@@ -744,19 +744,19 @@ declare module '@atcute/client/lexicons' {
|
|
|
744
744
|
}
|
|
745
745
|
interface SkeletonReasonRepost {
|
|
746
746
|
[Brand.Type]?: 'app.bsky.feed.defs#skeletonReasonRepost';
|
|
747
|
-
repost: At.
|
|
747
|
+
repost: At.ResourceUri;
|
|
748
748
|
}
|
|
749
749
|
/** Metadata about this post within the context of the thread it is in. */
|
|
750
750
|
interface ThreadContext {
|
|
751
751
|
[Brand.Type]?: 'app.bsky.feed.defs#threadContext';
|
|
752
|
-
rootAuthorLike?: At.
|
|
752
|
+
rootAuthorLike?: At.ResourceUri;
|
|
753
753
|
}
|
|
754
754
|
interface ThreadgateView {
|
|
755
755
|
[Brand.Type]?: 'app.bsky.feed.defs#threadgateView';
|
|
756
|
-
cid?: At.
|
|
756
|
+
cid?: At.Cid;
|
|
757
757
|
lists?: AppBskyGraphDefs.ListViewBasic[];
|
|
758
758
|
record?: unknown;
|
|
759
|
-
uri?: At.
|
|
759
|
+
uri?: At.ResourceUri;
|
|
760
760
|
}
|
|
761
761
|
interface ThreadViewPost {
|
|
762
762
|
[Brand.Type]?: 'app.bsky.feed.defs#threadViewPost';
|
|
@@ -769,10 +769,10 @@ declare module '@atcute/client/lexicons' {
|
|
|
769
769
|
interface ViewerState {
|
|
770
770
|
[Brand.Type]?: 'app.bsky.feed.defs#viewerState';
|
|
771
771
|
embeddingDisabled?: boolean;
|
|
772
|
-
like?: At.
|
|
772
|
+
like?: At.ResourceUri;
|
|
773
773
|
pinned?: boolean;
|
|
774
774
|
replyDisabled?: boolean;
|
|
775
|
-
repost?: At.
|
|
775
|
+
repost?: At.ResourceUri;
|
|
776
776
|
threadMuted?: boolean;
|
|
777
777
|
}
|
|
778
778
|
}
|
|
@@ -782,13 +782,13 @@ declare module '@atcute/client/lexicons' {
|
|
|
782
782
|
interface Params {}
|
|
783
783
|
type Input = undefined;
|
|
784
784
|
interface Output {
|
|
785
|
-
did: At.
|
|
785
|
+
did: At.Did;
|
|
786
786
|
feeds: Feed[];
|
|
787
787
|
links?: Links;
|
|
788
788
|
}
|
|
789
789
|
interface Feed {
|
|
790
790
|
[Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#feed';
|
|
791
|
-
uri: At.
|
|
791
|
+
uri: At.ResourceUri;
|
|
792
792
|
}
|
|
793
793
|
interface Links {
|
|
794
794
|
[Brand.Type]?: 'app.bsky.feed.describeFeedGenerator#links';
|
|
@@ -802,7 +802,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
802
802
|
interface Record {
|
|
803
803
|
$type: 'app.bsky.feed.generator';
|
|
804
804
|
createdAt: string;
|
|
805
|
-
did: At.
|
|
805
|
+
did: At.Did;
|
|
806
806
|
/**
|
|
807
807
|
* Maximum string length: 240 \
|
|
808
808
|
* Maximum grapheme length: 24
|
|
@@ -829,7 +829,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
829
829
|
/** Get a list of feeds (feed generator records) created by the actor (in the actor's repo). */
|
|
830
830
|
namespace AppBskyFeedGetActorFeeds {
|
|
831
831
|
interface Params {
|
|
832
|
-
actor:
|
|
832
|
+
actor: At.Identifier;
|
|
833
833
|
cursor?: string;
|
|
834
834
|
/**
|
|
835
835
|
* Minimum: 1 \
|
|
@@ -848,7 +848,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
848
848
|
/** Get a list of posts liked by an actor. Requires auth, actor must be the requesting account. */
|
|
849
849
|
namespace AppBskyFeedGetActorLikes {
|
|
850
850
|
interface Params {
|
|
851
|
-
actor:
|
|
851
|
+
actor: At.Identifier;
|
|
852
852
|
cursor?: string;
|
|
853
853
|
/**
|
|
854
854
|
* Minimum: 1 \
|
|
@@ -871,7 +871,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
871
871
|
/** Get a view of an actor's 'author feed' (post and reposts by the author). Does not require auth. */
|
|
872
872
|
namespace AppBskyFeedGetAuthorFeed {
|
|
873
873
|
interface Params {
|
|
874
|
-
actor:
|
|
874
|
+
actor: At.Identifier;
|
|
875
875
|
cursor?: string;
|
|
876
876
|
/**
|
|
877
877
|
* Combinations of post/repost types to include in response.
|
|
@@ -907,7 +907,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
907
907
|
/** Get a hydrated feed from an actor's selected feed generator. Implemented by App View. */
|
|
908
908
|
namespace AppBskyFeedGetFeed {
|
|
909
909
|
interface Params {
|
|
910
|
-
feed: At.
|
|
910
|
+
feed: At.ResourceUri;
|
|
911
911
|
cursor?: string;
|
|
912
912
|
/**
|
|
913
913
|
* Minimum: 1 \
|
|
@@ -930,7 +930,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
930
930
|
namespace AppBskyFeedGetFeedGenerator {
|
|
931
931
|
interface Params {
|
|
932
932
|
/** AT-URI of the feed generator record. */
|
|
933
|
-
feed: At.
|
|
933
|
+
feed: At.ResourceUri;
|
|
934
934
|
}
|
|
935
935
|
type Input = undefined;
|
|
936
936
|
interface Output {
|
|
@@ -945,7 +945,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
945
945
|
/** Get information about a list of feed generators. */
|
|
946
946
|
namespace AppBskyFeedGetFeedGenerators {
|
|
947
947
|
interface Params {
|
|
948
|
-
feeds: At.
|
|
948
|
+
feeds: At.ResourceUri[];
|
|
949
949
|
}
|
|
950
950
|
type Input = undefined;
|
|
951
951
|
interface Output {
|
|
@@ -957,7 +957,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
957
957
|
namespace AppBskyFeedGetFeedSkeleton {
|
|
958
958
|
interface Params {
|
|
959
959
|
/** Reference to feed generator record describing the specific feed being requested. */
|
|
960
|
-
feed: At.
|
|
960
|
+
feed: At.ResourceUri;
|
|
961
961
|
cursor?: string;
|
|
962
962
|
/**
|
|
963
963
|
* Minimum: 1 \
|
|
@@ -980,9 +980,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
980
980
|
namespace AppBskyFeedGetLikes {
|
|
981
981
|
interface Params {
|
|
982
982
|
/** AT-URI of the subject (eg, a post record). */
|
|
983
|
-
uri: At.
|
|
983
|
+
uri: At.ResourceUri;
|
|
984
984
|
/** CID of the subject record (aka, specific version of record), to filter likes. */
|
|
985
|
-
cid?: At.
|
|
985
|
+
cid?: At.Cid;
|
|
986
986
|
cursor?: string;
|
|
987
987
|
/**
|
|
988
988
|
* Minimum: 1 \
|
|
@@ -994,8 +994,8 @@ declare module '@atcute/client/lexicons' {
|
|
|
994
994
|
type Input = undefined;
|
|
995
995
|
interface Output {
|
|
996
996
|
likes: Like[];
|
|
997
|
-
uri: At.
|
|
998
|
-
cid?: At.
|
|
997
|
+
uri: At.ResourceUri;
|
|
998
|
+
cid?: At.Cid;
|
|
999
999
|
cursor?: string;
|
|
1000
1000
|
}
|
|
1001
1001
|
interface Like {
|
|
@@ -1010,7 +1010,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1010
1010
|
namespace AppBskyFeedGetListFeed {
|
|
1011
1011
|
interface Params {
|
|
1012
1012
|
/** Reference (AT-URI) to the list record. */
|
|
1013
|
-
list: At.
|
|
1013
|
+
list: At.ResourceUri;
|
|
1014
1014
|
cursor?: string;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* Minimum: 1 \
|
|
@@ -1036,7 +1036,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1036
1036
|
* List of post AT-URIs to return hydrated views for. \
|
|
1037
1037
|
* Maximum array length: 25
|
|
1038
1038
|
*/
|
|
1039
|
-
uris: At.
|
|
1039
|
+
uris: At.ResourceUri[];
|
|
1040
1040
|
}
|
|
1041
1041
|
type Input = undefined;
|
|
1042
1042
|
interface Output {
|
|
@@ -1048,7 +1048,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1048
1048
|
namespace AppBskyFeedGetPostThread {
|
|
1049
1049
|
interface Params {
|
|
1050
1050
|
/** Reference (AT-URI) to post record. */
|
|
1051
|
-
uri: At.
|
|
1051
|
+
uri: At.ResourceUri;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* How many levels of reply depth should be included in response. \
|
|
1054
1054
|
* Minimum: 0 \
|
|
@@ -1080,9 +1080,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
1080
1080
|
namespace AppBskyFeedGetQuotes {
|
|
1081
1081
|
interface Params {
|
|
1082
1082
|
/** Reference (AT-URI) of post record */
|
|
1083
|
-
uri: At.
|
|
1083
|
+
uri: At.ResourceUri;
|
|
1084
1084
|
/** If supplied, filters to quotes of specific version (by CID) of the post record. */
|
|
1085
|
-
cid?: At.
|
|
1085
|
+
cid?: At.Cid;
|
|
1086
1086
|
cursor?: string;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* Minimum: 1 \
|
|
@@ -1094,8 +1094,8 @@ declare module '@atcute/client/lexicons' {
|
|
|
1094
1094
|
type Input = undefined;
|
|
1095
1095
|
interface Output {
|
|
1096
1096
|
posts: AppBskyFeedDefs.PostView[];
|
|
1097
|
-
uri: At.
|
|
1098
|
-
cid?: At.
|
|
1097
|
+
uri: At.ResourceUri;
|
|
1098
|
+
cid?: At.Cid;
|
|
1099
1099
|
cursor?: string;
|
|
1100
1100
|
}
|
|
1101
1101
|
}
|
|
@@ -1104,9 +1104,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
1104
1104
|
namespace AppBskyFeedGetRepostedBy {
|
|
1105
1105
|
interface Params {
|
|
1106
1106
|
/** Reference (AT-URI) of post record */
|
|
1107
|
-
uri: At.
|
|
1107
|
+
uri: At.ResourceUri;
|
|
1108
1108
|
/** If supplied, filters to reposts of specific version (by CID) of the post record. */
|
|
1109
|
-
cid?: At.
|
|
1109
|
+
cid?: At.Cid;
|
|
1110
1110
|
cursor?: string;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* Minimum: 1 \
|
|
@@ -1118,8 +1118,8 @@ declare module '@atcute/client/lexicons' {
|
|
|
1118
1118
|
type Input = undefined;
|
|
1119
1119
|
interface Output {
|
|
1120
1120
|
repostedBy: AppBskyActorDefs.ProfileView[];
|
|
1121
|
-
uri: At.
|
|
1122
|
-
cid?: At.
|
|
1121
|
+
uri: At.ResourceUri;
|
|
1122
|
+
cid?: At.Cid;
|
|
1123
1123
|
cursor?: string;
|
|
1124
1124
|
}
|
|
1125
1125
|
}
|
|
@@ -1248,12 +1248,12 @@ declare module '@atcute/client/lexicons' {
|
|
|
1248
1248
|
$type: 'app.bsky.feed.postgate';
|
|
1249
1249
|
createdAt: string;
|
|
1250
1250
|
/** Reference (AT-URI) to the post record. */
|
|
1251
|
-
post: At.
|
|
1251
|
+
post: At.ResourceUri;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* List of AT-URIs embedding this post that the author has detached from. \
|
|
1254
1254
|
* Maximum array length: 50
|
|
1255
1255
|
*/
|
|
1256
|
-
detachedEmbeddingUris?: At.
|
|
1256
|
+
detachedEmbeddingUris?: At.ResourceUri[];
|
|
1257
1257
|
/**
|
|
1258
1258
|
* List of rules defining who can embed this post. If value is an empty array or is undefined, no particular rules apply and anyone can embed. \
|
|
1259
1259
|
* Maximum array length: 5
|
|
@@ -1281,7 +1281,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1281
1281
|
/** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
|
|
1282
1282
|
q: string;
|
|
1283
1283
|
/** Filter to posts by the given account. Handles are resolved to DID before query-time. */
|
|
1284
|
-
author?:
|
|
1284
|
+
author?: At.Identifier;
|
|
1285
1285
|
/** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
|
|
1286
1286
|
cursor?: string;
|
|
1287
1287
|
/** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
|
|
@@ -1295,7 +1295,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1295
1295
|
*/
|
|
1296
1296
|
limit?: number;
|
|
1297
1297
|
/** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
|
|
1298
|
-
mentions?:
|
|
1298
|
+
mentions?: At.Identifier;
|
|
1299
1299
|
/** Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
|
|
1300
1300
|
since?: string;
|
|
1301
1301
|
/**
|
|
@@ -1312,7 +1312,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1312
1312
|
/** Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD). */
|
|
1313
1313
|
until?: string;
|
|
1314
1314
|
/** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
|
|
1315
|
-
url?:
|
|
1315
|
+
url?: At.GenericUri;
|
|
1316
1316
|
}
|
|
1317
1317
|
type Input = undefined;
|
|
1318
1318
|
interface Output {
|
|
@@ -1341,7 +1341,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1341
1341
|
$type: 'app.bsky.feed.threadgate';
|
|
1342
1342
|
createdAt: string;
|
|
1343
1343
|
/** Reference (AT-URI) to the post record. */
|
|
1344
|
-
post: At.
|
|
1344
|
+
post: At.ResourceUri;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* List of rules defining who can reply to this post. If value is an empty array, no one can reply. If value is undefined, anyone can reply. \
|
|
1347
1347
|
* Maximum array length: 5
|
|
@@ -1351,7 +1351,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1351
1351
|
* List of hidden reply URIs. \
|
|
1352
1352
|
* Maximum array length: 50
|
|
1353
1353
|
*/
|
|
1354
|
-
hiddenReplies?: At.
|
|
1354
|
+
hiddenReplies?: At.ResourceUri[];
|
|
1355
1355
|
}
|
|
1356
1356
|
/** Allow replies from actors who follow you. */
|
|
1357
1357
|
interface FollowerRule {
|
|
@@ -1364,7 +1364,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1364
1364
|
/** Allow replies from actors on a list. */
|
|
1365
1365
|
interface ListRule {
|
|
1366
1366
|
[Brand.Type]?: 'app.bsky.feed.threadgate#listRule';
|
|
1367
|
-
list: At.
|
|
1367
|
+
list: At.ResourceUri;
|
|
1368
1368
|
}
|
|
1369
1369
|
/** Allow replies from actors mentioned in your post. */
|
|
1370
1370
|
interface MentionRule {
|
|
@@ -1378,7 +1378,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1378
1378
|
$type: 'app.bsky.graph.block';
|
|
1379
1379
|
createdAt: string;
|
|
1380
1380
|
/** DID of the account to be blocked. */
|
|
1381
|
-
subject: At.
|
|
1381
|
+
subject: At.Did;
|
|
1382
1382
|
}
|
|
1383
1383
|
}
|
|
1384
1384
|
|
|
@@ -1387,7 +1387,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1387
1387
|
interface ListItemView {
|
|
1388
1388
|
[Brand.Type]?: 'app.bsky.graph.defs#listItemView';
|
|
1389
1389
|
subject: AppBskyActorDefs.ProfileView;
|
|
1390
|
-
uri: At.
|
|
1390
|
+
uri: At.ResourceUri;
|
|
1391
1391
|
}
|
|
1392
1392
|
type ListPurpose =
|
|
1393
1393
|
| 'app.bsky.graph.defs#curatelist'
|
|
@@ -1396,7 +1396,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1396
1396
|
| (string & {});
|
|
1397
1397
|
interface ListView {
|
|
1398
1398
|
[Brand.Type]?: 'app.bsky.graph.defs#listView';
|
|
1399
|
-
cid: At.
|
|
1399
|
+
cid: At.Cid;
|
|
1400
1400
|
creator: AppBskyActorDefs.ProfileView;
|
|
1401
1401
|
indexedAt: string;
|
|
1402
1402
|
/**
|
|
@@ -1405,8 +1405,8 @@ declare module '@atcute/client/lexicons' {
|
|
|
1405
1405
|
*/
|
|
1406
1406
|
name: string;
|
|
1407
1407
|
purpose: ListPurpose;
|
|
1408
|
-
uri: At.
|
|
1409
|
-
avatar?:
|
|
1408
|
+
uri: At.ResourceUri;
|
|
1409
|
+
avatar?: At.GenericUri;
|
|
1410
1410
|
/**
|
|
1411
1411
|
* Maximum string length: 3000 \
|
|
1412
1412
|
* Maximum grapheme length: 300
|
|
@@ -1420,15 +1420,15 @@ declare module '@atcute/client/lexicons' {
|
|
|
1420
1420
|
}
|
|
1421
1421
|
interface ListViewBasic {
|
|
1422
1422
|
[Brand.Type]?: 'app.bsky.graph.defs#listViewBasic';
|
|
1423
|
-
cid: At.
|
|
1423
|
+
cid: At.Cid;
|
|
1424
1424
|
/**
|
|
1425
1425
|
* Minimum string length: 1 \
|
|
1426
1426
|
* Maximum string length: 64
|
|
1427
1427
|
*/
|
|
1428
1428
|
name: string;
|
|
1429
1429
|
purpose: ListPurpose;
|
|
1430
|
-
uri: At.
|
|
1431
|
-
avatar?:
|
|
1430
|
+
uri: At.ResourceUri;
|
|
1431
|
+
avatar?: At.GenericUri;
|
|
1432
1432
|
indexedAt?: string;
|
|
1433
1433
|
labels?: ComAtprotoLabelDefs.Label[];
|
|
1434
1434
|
/** Minimum: 0 */
|
|
@@ -1437,33 +1437,33 @@ declare module '@atcute/client/lexicons' {
|
|
|
1437
1437
|
}
|
|
1438
1438
|
interface ListViewerState {
|
|
1439
1439
|
[Brand.Type]?: 'app.bsky.graph.defs#listViewerState';
|
|
1440
|
-
blocked?: At.
|
|
1440
|
+
blocked?: At.ResourceUri;
|
|
1441
1441
|
muted?: boolean;
|
|
1442
1442
|
}
|
|
1443
1443
|
type Modlist = 'app.bsky.graph.defs#modlist';
|
|
1444
1444
|
/** indicates that a handle or DID could not be resolved */
|
|
1445
1445
|
interface NotFoundActor {
|
|
1446
1446
|
[Brand.Type]?: 'app.bsky.graph.defs#notFoundActor';
|
|
1447
|
-
actor:
|
|
1447
|
+
actor: At.Identifier;
|
|
1448
1448
|
notFound: boolean;
|
|
1449
1449
|
}
|
|
1450
1450
|
type Referencelist = 'app.bsky.graph.defs#referencelist';
|
|
1451
1451
|
/** lists the bi-directional graph relationships between one actor (not indicated in the object), and the target actors (the DID included in the object) */
|
|
1452
1452
|
interface Relationship {
|
|
1453
1453
|
[Brand.Type]?: 'app.bsky.graph.defs#relationship';
|
|
1454
|
-
did: At.
|
|
1454
|
+
did: At.Did;
|
|
1455
1455
|
/** if the actor is followed by this DID, contains the AT-URI of the follow record */
|
|
1456
|
-
followedBy?: At.
|
|
1456
|
+
followedBy?: At.ResourceUri;
|
|
1457
1457
|
/** if the actor follows this DID, this is the AT-URI of the follow record */
|
|
1458
|
-
following?: At.
|
|
1458
|
+
following?: At.ResourceUri;
|
|
1459
1459
|
}
|
|
1460
1460
|
interface StarterPackView {
|
|
1461
1461
|
[Brand.Type]?: 'app.bsky.graph.defs#starterPackView';
|
|
1462
|
-
cid: At.
|
|
1462
|
+
cid: At.Cid;
|
|
1463
1463
|
creator: AppBskyActorDefs.ProfileViewBasic;
|
|
1464
1464
|
indexedAt: string;
|
|
1465
1465
|
record: unknown;
|
|
1466
|
-
uri: At.
|
|
1466
|
+
uri: At.ResourceUri;
|
|
1467
1467
|
/** Maximum array length: 3 */
|
|
1468
1468
|
feeds?: AppBskyFeedDefs.GeneratorView[];
|
|
1469
1469
|
/** Minimum: 0 */
|
|
@@ -1477,11 +1477,11 @@ declare module '@atcute/client/lexicons' {
|
|
|
1477
1477
|
}
|
|
1478
1478
|
interface StarterPackViewBasic {
|
|
1479
1479
|
[Brand.Type]?: 'app.bsky.graph.defs#starterPackViewBasic';
|
|
1480
|
-
cid: At.
|
|
1480
|
+
cid: At.Cid;
|
|
1481
1481
|
creator: AppBskyActorDefs.ProfileViewBasic;
|
|
1482
1482
|
indexedAt: string;
|
|
1483
1483
|
record: unknown;
|
|
1484
|
-
uri: At.
|
|
1484
|
+
uri: At.ResourceUri;
|
|
1485
1485
|
/** Minimum: 0 */
|
|
1486
1486
|
joinedAllTimeCount?: number;
|
|
1487
1487
|
/** Minimum: 0 */
|
|
@@ -1497,14 +1497,14 @@ declare module '@atcute/client/lexicons' {
|
|
|
1497
1497
|
interface Record {
|
|
1498
1498
|
$type: 'app.bsky.graph.follow';
|
|
1499
1499
|
createdAt: string;
|
|
1500
|
-
subject: At.
|
|
1500
|
+
subject: At.Did;
|
|
1501
1501
|
}
|
|
1502
1502
|
}
|
|
1503
1503
|
|
|
1504
1504
|
/** Get a list of starter packs created by the actor. */
|
|
1505
1505
|
namespace AppBskyGraphGetActorStarterPacks {
|
|
1506
1506
|
interface Params {
|
|
1507
|
-
actor:
|
|
1507
|
+
actor: At.Identifier;
|
|
1508
1508
|
cursor?: string;
|
|
1509
1509
|
/**
|
|
1510
1510
|
* Minimum: 1 \
|
|
@@ -1541,7 +1541,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1541
1541
|
/** Enumerates accounts which follow a specified account (actor). */
|
|
1542
1542
|
namespace AppBskyGraphGetFollowers {
|
|
1543
1543
|
interface Params {
|
|
1544
|
-
actor:
|
|
1544
|
+
actor: At.Identifier;
|
|
1545
1545
|
cursor?: string;
|
|
1546
1546
|
/**
|
|
1547
1547
|
* Minimum: 1 \
|
|
@@ -1561,7 +1561,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1561
1561
|
/** Enumerates accounts which a specified account (actor) follows. */
|
|
1562
1562
|
namespace AppBskyGraphGetFollows {
|
|
1563
1563
|
interface Params {
|
|
1564
|
-
actor:
|
|
1564
|
+
actor: At.Identifier;
|
|
1565
1565
|
cursor?: string;
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Minimum: 1 \
|
|
@@ -1581,7 +1581,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1581
1581
|
/** Enumerates accounts which follow a specified account (actor) and are followed by the viewer. */
|
|
1582
1582
|
namespace AppBskyGraphGetKnownFollowers {
|
|
1583
1583
|
interface Params {
|
|
1584
|
-
actor:
|
|
1584
|
+
actor: At.Identifier;
|
|
1585
1585
|
cursor?: string;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* Minimum: 1 \
|
|
@@ -1602,7 +1602,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1602
1602
|
namespace AppBskyGraphGetList {
|
|
1603
1603
|
interface Params {
|
|
1604
1604
|
/** Reference (AT-URI) of the list record to hydrate. */
|
|
1605
|
-
list: At.
|
|
1605
|
+
list: At.ResourceUri;
|
|
1606
1606
|
cursor?: string;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* Minimum: 1 \
|
|
@@ -1659,7 +1659,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1659
1659
|
namespace AppBskyGraphGetLists {
|
|
1660
1660
|
interface Params {
|
|
1661
1661
|
/** The account (actor) to enumerate lists from. */
|
|
1662
|
-
actor:
|
|
1662
|
+
actor: At.Identifier;
|
|
1663
1663
|
cursor?: string;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* Minimum: 1 \
|
|
@@ -1697,17 +1697,17 @@ declare module '@atcute/client/lexicons' {
|
|
|
1697
1697
|
namespace AppBskyGraphGetRelationships {
|
|
1698
1698
|
interface Params {
|
|
1699
1699
|
/** Primary account requesting relationships for. */
|
|
1700
|
-
actor:
|
|
1700
|
+
actor: At.Identifier;
|
|
1701
1701
|
/**
|
|
1702
1702
|
* List of 'other' accounts to be related back to the primary. \
|
|
1703
1703
|
* Maximum array length: 30
|
|
1704
1704
|
*/
|
|
1705
|
-
others?:
|
|
1705
|
+
others?: At.Identifier[];
|
|
1706
1706
|
}
|
|
1707
1707
|
type Input = undefined;
|
|
1708
1708
|
interface Output {
|
|
1709
1709
|
relationships: Brand.Union<AppBskyGraphDefs.NotFoundActor | AppBskyGraphDefs.Relationship>[];
|
|
1710
|
-
actor?: At.
|
|
1710
|
+
actor?: At.Did;
|
|
1711
1711
|
}
|
|
1712
1712
|
interface Errors {
|
|
1713
1713
|
ActorNotFound: {};
|
|
@@ -1718,7 +1718,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1718
1718
|
namespace AppBskyGraphGetStarterPack {
|
|
1719
1719
|
interface Params {
|
|
1720
1720
|
/** Reference (AT-URI) of the starter pack record. */
|
|
1721
|
-
starterPack: At.
|
|
1721
|
+
starterPack: At.ResourceUri;
|
|
1722
1722
|
}
|
|
1723
1723
|
type Input = undefined;
|
|
1724
1724
|
interface Output {
|
|
@@ -1730,7 +1730,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1730
1730
|
namespace AppBskyGraphGetStarterPacks {
|
|
1731
1731
|
interface Params {
|
|
1732
1732
|
/** Maximum array length: 25 */
|
|
1733
|
-
uris: At.
|
|
1733
|
+
uris: At.ResourceUri[];
|
|
1734
1734
|
}
|
|
1735
1735
|
type Input = undefined;
|
|
1736
1736
|
interface Output {
|
|
@@ -1741,7 +1741,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1741
1741
|
/** Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account. */
|
|
1742
1742
|
namespace AppBskyGraphGetSuggestedFollowsByActor {
|
|
1743
1743
|
interface Params {
|
|
1744
|
-
actor:
|
|
1744
|
+
actor: At.Identifier;
|
|
1745
1745
|
}
|
|
1746
1746
|
type Input = undefined;
|
|
1747
1747
|
interface Output {
|
|
@@ -1786,7 +1786,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1786
1786
|
$type: 'app.bsky.graph.listblock';
|
|
1787
1787
|
createdAt: string;
|
|
1788
1788
|
/** Reference (AT-URI) to the mod list record. */
|
|
1789
|
-
subject: At.
|
|
1789
|
+
subject: At.ResourceUri;
|
|
1790
1790
|
}
|
|
1791
1791
|
}
|
|
1792
1792
|
|
|
@@ -1796,9 +1796,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
1796
1796
|
$type: 'app.bsky.graph.listitem';
|
|
1797
1797
|
createdAt: string;
|
|
1798
1798
|
/** Reference (AT-URI) to the list record (app.bsky.graph.list). */
|
|
1799
|
-
list: At.
|
|
1799
|
+
list: At.ResourceUri;
|
|
1800
1800
|
/** The account which is included on the list. */
|
|
1801
|
-
subject: At.
|
|
1801
|
+
subject: At.Did;
|
|
1802
1802
|
}
|
|
1803
1803
|
}
|
|
1804
1804
|
|
|
@@ -1806,7 +1806,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1806
1806
|
namespace AppBskyGraphMuteActor {
|
|
1807
1807
|
interface Params {}
|
|
1808
1808
|
interface Input {
|
|
1809
|
-
actor:
|
|
1809
|
+
actor: At.Identifier;
|
|
1810
1810
|
}
|
|
1811
1811
|
type Output = undefined;
|
|
1812
1812
|
}
|
|
@@ -1815,7 +1815,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1815
1815
|
namespace AppBskyGraphMuteActorList {
|
|
1816
1816
|
interface Params {}
|
|
1817
1817
|
interface Input {
|
|
1818
|
-
list: At.
|
|
1818
|
+
list: At.ResourceUri;
|
|
1819
1819
|
}
|
|
1820
1820
|
type Output = undefined;
|
|
1821
1821
|
}
|
|
@@ -1824,7 +1824,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1824
1824
|
namespace AppBskyGraphMuteThread {
|
|
1825
1825
|
interface Params {}
|
|
1826
1826
|
interface Input {
|
|
1827
|
-
root: At.
|
|
1827
|
+
root: At.ResourceUri;
|
|
1828
1828
|
}
|
|
1829
1829
|
type Output = undefined;
|
|
1830
1830
|
}
|
|
@@ -1855,7 +1855,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1855
1855
|
$type: 'app.bsky.graph.starterpack';
|
|
1856
1856
|
createdAt: string;
|
|
1857
1857
|
/** Reference (AT-URI) to the list record. */
|
|
1858
|
-
list: At.
|
|
1858
|
+
list: At.ResourceUri;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* Display name for starter pack; can not be empty. \
|
|
1861
1861
|
* Minimum string length: 1 \
|
|
@@ -1874,7 +1874,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1874
1874
|
}
|
|
1875
1875
|
interface FeedItem {
|
|
1876
1876
|
[Brand.Type]?: 'app.bsky.graph.starterpack#feedItem';
|
|
1877
|
-
uri: At.
|
|
1877
|
+
uri: At.ResourceUri;
|
|
1878
1878
|
}
|
|
1879
1879
|
}
|
|
1880
1880
|
|
|
@@ -1882,7 +1882,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1882
1882
|
namespace AppBskyGraphUnmuteActor {
|
|
1883
1883
|
interface Params {}
|
|
1884
1884
|
interface Input {
|
|
1885
|
-
actor:
|
|
1885
|
+
actor: At.Identifier;
|
|
1886
1886
|
}
|
|
1887
1887
|
type Output = undefined;
|
|
1888
1888
|
}
|
|
@@ -1891,7 +1891,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1891
1891
|
namespace AppBskyGraphUnmuteActorList {
|
|
1892
1892
|
interface Params {}
|
|
1893
1893
|
interface Input {
|
|
1894
|
-
list: At.
|
|
1894
|
+
list: At.ResourceUri;
|
|
1895
1895
|
}
|
|
1896
1896
|
type Output = undefined;
|
|
1897
1897
|
}
|
|
@@ -1900,11 +1900,26 @@ declare module '@atcute/client/lexicons' {
|
|
|
1900
1900
|
namespace AppBskyGraphUnmuteThread {
|
|
1901
1901
|
interface Params {}
|
|
1902
1902
|
interface Input {
|
|
1903
|
-
root: At.
|
|
1903
|
+
root: At.ResourceUri;
|
|
1904
1904
|
}
|
|
1905
1905
|
type Output = undefined;
|
|
1906
1906
|
}
|
|
1907
1907
|
|
|
1908
|
+
namespace AppBskyGraphVerification {
|
|
1909
|
+
/** Record declaring a verification relationship between two accounts. Verifications are only considered valid by an app if issued by an account the app considers trusted. */
|
|
1910
|
+
interface Record {
|
|
1911
|
+
$type: 'app.bsky.graph.verification';
|
|
1912
|
+
/** Date of when the verification was created. */
|
|
1913
|
+
createdAt: string;
|
|
1914
|
+
/** Display name of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current displayName matches the one at the time of verifying. */
|
|
1915
|
+
displayName: string;
|
|
1916
|
+
/** Handle of the subject the verification applies to at the moment of verifying, which might not be the same at the time of viewing. The verification is only valid if the current handle matches the one at the time of verifying. */
|
|
1917
|
+
handle: At.Handle;
|
|
1918
|
+
/** DID of the subject the verification applies to. */
|
|
1919
|
+
subject: At.Did;
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1908
1923
|
namespace AppBskyLabelerDefs {
|
|
1909
1924
|
interface LabelerPolicies {
|
|
1910
1925
|
[Brand.Type]?: 'app.bsky.labeler.defs#labelerPolicies';
|
|
@@ -1915,10 +1930,10 @@ declare module '@atcute/client/lexicons' {
|
|
|
1915
1930
|
}
|
|
1916
1931
|
interface LabelerView {
|
|
1917
1932
|
[Brand.Type]?: 'app.bsky.labeler.defs#labelerView';
|
|
1918
|
-
cid: At.
|
|
1933
|
+
cid: At.Cid;
|
|
1919
1934
|
creator: AppBskyActorDefs.ProfileView;
|
|
1920
1935
|
indexedAt: string;
|
|
1921
|
-
uri: At.
|
|
1936
|
+
uri: At.ResourceUri;
|
|
1922
1937
|
labels?: ComAtprotoLabelDefs.Label[];
|
|
1923
1938
|
/** Minimum: 0 */
|
|
1924
1939
|
likeCount?: number;
|
|
@@ -1926,32 +1941,32 @@ declare module '@atcute/client/lexicons' {
|
|
|
1926
1941
|
}
|
|
1927
1942
|
interface LabelerViewDetailed {
|
|
1928
1943
|
[Brand.Type]?: 'app.bsky.labeler.defs#labelerViewDetailed';
|
|
1929
|
-
cid: At.
|
|
1944
|
+
cid: At.Cid;
|
|
1930
1945
|
creator: AppBskyActorDefs.ProfileView;
|
|
1931
1946
|
indexedAt: string;
|
|
1932
1947
|
policies: AppBskyLabelerDefs.LabelerPolicies;
|
|
1933
|
-
uri: At.
|
|
1948
|
+
uri: At.ResourceUri;
|
|
1934
1949
|
labels?: ComAtprotoLabelDefs.Label[];
|
|
1935
1950
|
/** Minimum: 0 */
|
|
1936
1951
|
likeCount?: number;
|
|
1937
1952
|
/** 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
1953
|
reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
|
|
1939
1954
|
/** 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?:
|
|
1955
|
+
subjectCollections?: At.Nsid[];
|
|
1941
1956
|
/** The set of subject types (account, record, etc) this service accepts reports on. */
|
|
1942
1957
|
subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
|
|
1943
1958
|
viewer?: LabelerViewerState;
|
|
1944
1959
|
}
|
|
1945
1960
|
interface LabelerViewerState {
|
|
1946
1961
|
[Brand.Type]?: 'app.bsky.labeler.defs#labelerViewerState';
|
|
1947
|
-
like?: At.
|
|
1962
|
+
like?: At.ResourceUri;
|
|
1948
1963
|
}
|
|
1949
1964
|
}
|
|
1950
1965
|
|
|
1951
1966
|
/** Get information about a list of labeler services. */
|
|
1952
1967
|
namespace AppBskyLabelerGetServices {
|
|
1953
1968
|
interface Params {
|
|
1954
|
-
dids: At.
|
|
1969
|
+
dids: At.Did[];
|
|
1955
1970
|
/** @default false */
|
|
1956
1971
|
detailed?: boolean;
|
|
1957
1972
|
}
|
|
@@ -1971,7 +1986,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
1971
1986
|
/** 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
1987
|
reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
|
|
1973
1988
|
/** 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?:
|
|
1989
|
+
subjectCollections?: At.Nsid[];
|
|
1975
1990
|
/** The set of subject types (account, record, etc) this service accepts reports on. */
|
|
1976
1991
|
subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
|
|
1977
1992
|
}
|
|
@@ -2017,7 +2032,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2017
2032
|
interface Notification {
|
|
2018
2033
|
[Brand.Type]?: 'app.bsky.notification.listNotifications#notification';
|
|
2019
2034
|
author: AppBskyActorDefs.ProfileView;
|
|
2020
|
-
cid: At.
|
|
2035
|
+
cid: At.Cid;
|
|
2021
2036
|
indexedAt: string;
|
|
2022
2037
|
isRead: boolean;
|
|
2023
2038
|
/** Expected values are 'like', 'repost', 'follow', 'mention', 'reply', 'quote', and 'starterpack-joined'. */
|
|
@@ -2031,9 +2046,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
2031
2046
|
| 'starterpack-joined'
|
|
2032
2047
|
| (string & {});
|
|
2033
2048
|
record: unknown;
|
|
2034
|
-
uri: At.
|
|
2049
|
+
uri: At.ResourceUri;
|
|
2035
2050
|
labels?: ComAtprotoLabelDefs.Label[];
|
|
2036
|
-
reasonSubject?: At.
|
|
2051
|
+
reasonSubject?: At.ResourceUri;
|
|
2037
2052
|
}
|
|
2038
2053
|
}
|
|
2039
2054
|
|
|
@@ -2052,7 +2067,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2052
2067
|
interface Input {
|
|
2053
2068
|
appId: string;
|
|
2054
2069
|
platform: 'android' | 'ios' | 'web' | (string & {});
|
|
2055
|
-
serviceDid: At.
|
|
2070
|
+
serviceDid: At.Did;
|
|
2056
2071
|
token: string;
|
|
2057
2072
|
}
|
|
2058
2073
|
type Output = undefined;
|
|
@@ -2085,12 +2100,12 @@ declare module '@atcute/client/lexicons' {
|
|
|
2085
2100
|
/** Facet feature for a URL. The text URL may have been simplified or truncated, but the facet reference should be a complete URL. */
|
|
2086
2101
|
interface Link {
|
|
2087
2102
|
[Brand.Type]?: 'app.bsky.richtext.facet#link';
|
|
2088
|
-
uri:
|
|
2103
|
+
uri: At.GenericUri;
|
|
2089
2104
|
}
|
|
2090
2105
|
/** Facet feature for mention of another account. The text is usually a handle, including a '@' prefix, but the facet reference is a DID. */
|
|
2091
2106
|
interface Mention {
|
|
2092
2107
|
[Brand.Type]?: 'app.bsky.richtext.facet#mention';
|
|
2093
|
-
did: At.
|
|
2108
|
+
did: At.Did;
|
|
2094
2109
|
}
|
|
2095
2110
|
/** Facet feature for a hashtag. The text usually includes a '#' prefix, but the facet reference should not (except in the case of 'double hash tags'). */
|
|
2096
2111
|
interface Tag {
|
|
@@ -2106,15 +2121,26 @@ declare module '@atcute/client/lexicons' {
|
|
|
2106
2121
|
namespace AppBskyUnspeccedDefs {
|
|
2107
2122
|
interface SkeletonSearchActor {
|
|
2108
2123
|
[Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchActor';
|
|
2109
|
-
did: At.
|
|
2124
|
+
did: At.Did;
|
|
2110
2125
|
}
|
|
2111
2126
|
interface SkeletonSearchPost {
|
|
2112
2127
|
[Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchPost';
|
|
2113
|
-
uri: At.
|
|
2128
|
+
uri: At.ResourceUri;
|
|
2114
2129
|
}
|
|
2115
2130
|
interface SkeletonSearchStarterPack {
|
|
2116
2131
|
[Brand.Type]?: 'app.bsky.unspecced.defs#skeletonSearchStarterPack';
|
|
2117
|
-
uri: At.
|
|
2132
|
+
uri: At.ResourceUri;
|
|
2133
|
+
}
|
|
2134
|
+
interface SkeletonTrend {
|
|
2135
|
+
[Brand.Type]?: 'app.bsky.unspecced.defs#skeletonTrend';
|
|
2136
|
+
dids: At.Did[];
|
|
2137
|
+
displayName: string;
|
|
2138
|
+
link: string;
|
|
2139
|
+
postCount: number;
|
|
2140
|
+
startedAt: string;
|
|
2141
|
+
topic: string;
|
|
2142
|
+
category?: string;
|
|
2143
|
+
status?: 'hot' | (string & {});
|
|
2118
2144
|
}
|
|
2119
2145
|
interface TrendingTopic {
|
|
2120
2146
|
[Brand.Type]?: 'app.bsky.unspecced.defs#trendingTopic';
|
|
@@ -2123,6 +2149,17 @@ declare module '@atcute/client/lexicons' {
|
|
|
2123
2149
|
description?: string;
|
|
2124
2150
|
displayName?: string;
|
|
2125
2151
|
}
|
|
2152
|
+
interface TrendView {
|
|
2153
|
+
[Brand.Type]?: 'app.bsky.unspecced.defs#trendView';
|
|
2154
|
+
actors: AppBskyActorDefs.ProfileViewBasic[];
|
|
2155
|
+
displayName: string;
|
|
2156
|
+
link: string;
|
|
2157
|
+
postCount: number;
|
|
2158
|
+
startedAt: string;
|
|
2159
|
+
topic: string;
|
|
2160
|
+
category?: string;
|
|
2161
|
+
status?: 'hot' | (string & {});
|
|
2162
|
+
}
|
|
2126
2163
|
}
|
|
2127
2164
|
|
|
2128
2165
|
/** Get miscellaneous runtime configuration. */
|
|
@@ -2153,6 +2190,112 @@ declare module '@atcute/client/lexicons' {
|
|
|
2153
2190
|
}
|
|
2154
2191
|
}
|
|
2155
2192
|
|
|
2193
|
+
/** Get a list of suggested feeds */
|
|
2194
|
+
namespace AppBskyUnspeccedGetSuggestedFeeds {
|
|
2195
|
+
interface Params {
|
|
2196
|
+
/**
|
|
2197
|
+
* Minimum: 1 \
|
|
2198
|
+
* Maximum: 25
|
|
2199
|
+
* @default 10
|
|
2200
|
+
*/
|
|
2201
|
+
limit?: number;
|
|
2202
|
+
}
|
|
2203
|
+
type Input = undefined;
|
|
2204
|
+
interface Output {
|
|
2205
|
+
feeds: AppBskyFeedDefs.GeneratorView[];
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
/** Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds */
|
|
2210
|
+
namespace AppBskyUnspeccedGetSuggestedFeedsSkeleton {
|
|
2211
|
+
interface Params {
|
|
2212
|
+
/**
|
|
2213
|
+
* Minimum: 1 \
|
|
2214
|
+
* Maximum: 25
|
|
2215
|
+
* @default 10
|
|
2216
|
+
*/
|
|
2217
|
+
limit?: number;
|
|
2218
|
+
/** DID of the account making the request (not included for public/unauthenticated queries). */
|
|
2219
|
+
viewer?: At.Did;
|
|
2220
|
+
}
|
|
2221
|
+
type Input = undefined;
|
|
2222
|
+
interface Output {
|
|
2223
|
+
feeds: At.ResourceUri[];
|
|
2224
|
+
}
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
/** Get a list of suggested starterpacks */
|
|
2228
|
+
namespace AppBskyUnspeccedGetSuggestedStarterPacks {
|
|
2229
|
+
interface Params {
|
|
2230
|
+
/**
|
|
2231
|
+
* Minimum: 1 \
|
|
2232
|
+
* Maximum: 25
|
|
2233
|
+
* @default 10
|
|
2234
|
+
*/
|
|
2235
|
+
limit?: number;
|
|
2236
|
+
}
|
|
2237
|
+
type Input = undefined;
|
|
2238
|
+
interface Output {
|
|
2239
|
+
starterPacks: AppBskyGraphDefs.StarterPackView[];
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
/** Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks */
|
|
2244
|
+
namespace AppBskyUnspeccedGetSuggestedStarterPacksSkeleton {
|
|
2245
|
+
interface Params {
|
|
2246
|
+
/**
|
|
2247
|
+
* Minimum: 1 \
|
|
2248
|
+
* Maximum: 25
|
|
2249
|
+
* @default 10
|
|
2250
|
+
*/
|
|
2251
|
+
limit?: number;
|
|
2252
|
+
/** DID of the account making the request (not included for public/unauthenticated queries). */
|
|
2253
|
+
viewer?: At.Did;
|
|
2254
|
+
}
|
|
2255
|
+
type Input = undefined;
|
|
2256
|
+
interface Output {
|
|
2257
|
+
starterPacks: At.ResourceUri[];
|
|
2258
|
+
}
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
/** Get a list of suggested users */
|
|
2262
|
+
namespace AppBskyUnspeccedGetSuggestedUsers {
|
|
2263
|
+
interface Params {
|
|
2264
|
+
/** Category of users to get suggestions for. */
|
|
2265
|
+
category?: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* Minimum: 1 \
|
|
2268
|
+
* Maximum: 50
|
|
2269
|
+
* @default 25
|
|
2270
|
+
*/
|
|
2271
|
+
limit?: number;
|
|
2272
|
+
}
|
|
2273
|
+
type Input = undefined;
|
|
2274
|
+
interface Output {
|
|
2275
|
+
actors: AppBskyActorDefs.ProfileView[];
|
|
2276
|
+
}
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
/** Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers */
|
|
2280
|
+
namespace AppBskyUnspeccedGetSuggestedUsersSkeleton {
|
|
2281
|
+
interface Params {
|
|
2282
|
+
/** Category of users to get suggestions for. */
|
|
2283
|
+
category?: string;
|
|
2284
|
+
/**
|
|
2285
|
+
* Minimum: 1 \
|
|
2286
|
+
* Maximum: 50
|
|
2287
|
+
* @default 25
|
|
2288
|
+
*/
|
|
2289
|
+
limit?: number;
|
|
2290
|
+
/** DID of the account making the request (not included for public/unauthenticated queries). */
|
|
2291
|
+
viewer?: At.Did;
|
|
2292
|
+
}
|
|
2293
|
+
type Input = undefined;
|
|
2294
|
+
interface Output {
|
|
2295
|
+
dids: At.Did[];
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2156
2299
|
/** Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions */
|
|
2157
2300
|
namespace AppBskyUnspeccedGetSuggestionsSkeleton {
|
|
2158
2301
|
interface Params {
|
|
@@ -2164,9 +2307,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
2164
2307
|
*/
|
|
2165
2308
|
limit?: number;
|
|
2166
2309
|
/** DID of the account to get suggestions relative to. If not provided, suggestions will be based on the viewer. */
|
|
2167
|
-
relativeToDid?: At.
|
|
2310
|
+
relativeToDid?: At.Did;
|
|
2168
2311
|
/** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
|
|
2169
|
-
viewer?: At.
|
|
2312
|
+
viewer?: At.Did;
|
|
2170
2313
|
}
|
|
2171
2314
|
type Input = undefined;
|
|
2172
2315
|
interface Output {
|
|
@@ -2175,7 +2318,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2175
2318
|
/** Snowflake for this recommendation, use when submitting recommendation events. */
|
|
2176
2319
|
recId?: number;
|
|
2177
2320
|
/** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
|
|
2178
|
-
relativeToDid?: At.
|
|
2321
|
+
relativeToDid?: At.Did;
|
|
2179
2322
|
}
|
|
2180
2323
|
}
|
|
2181
2324
|
|
|
@@ -2187,7 +2330,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2187
2330
|
}
|
|
2188
2331
|
interface Suggestion {
|
|
2189
2332
|
[Brand.Type]?: 'app.bsky.unspecced.getTaggedSuggestions#suggestion';
|
|
2190
|
-
subject:
|
|
2333
|
+
subject: At.GenericUri;
|
|
2191
2334
|
subjectType: 'actor' | 'feed' | (string & {});
|
|
2192
2335
|
tag: string;
|
|
2193
2336
|
}
|
|
@@ -2203,7 +2346,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2203
2346
|
*/
|
|
2204
2347
|
limit?: number;
|
|
2205
2348
|
/** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
|
|
2206
|
-
viewer?: At.
|
|
2349
|
+
viewer?: At.Did;
|
|
2207
2350
|
}
|
|
2208
2351
|
type Input = undefined;
|
|
2209
2352
|
interface Output {
|
|
@@ -2212,6 +2355,40 @@ declare module '@atcute/client/lexicons' {
|
|
|
2212
2355
|
}
|
|
2213
2356
|
}
|
|
2214
2357
|
|
|
2358
|
+
/** Get the current trends on the network */
|
|
2359
|
+
namespace AppBskyUnspeccedGetTrends {
|
|
2360
|
+
interface Params {
|
|
2361
|
+
/**
|
|
2362
|
+
* Minimum: 1 \
|
|
2363
|
+
* Maximum: 25
|
|
2364
|
+
* @default 10
|
|
2365
|
+
*/
|
|
2366
|
+
limit?: number;
|
|
2367
|
+
}
|
|
2368
|
+
type Input = undefined;
|
|
2369
|
+
interface Output {
|
|
2370
|
+
trends: AppBskyUnspeccedDefs.TrendView[];
|
|
2371
|
+
}
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
/** Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends */
|
|
2375
|
+
namespace AppBskyUnspeccedGetTrendsSkeleton {
|
|
2376
|
+
interface Params {
|
|
2377
|
+
/**
|
|
2378
|
+
* Minimum: 1 \
|
|
2379
|
+
* Maximum: 25
|
|
2380
|
+
* @default 10
|
|
2381
|
+
*/
|
|
2382
|
+
limit?: number;
|
|
2383
|
+
/** DID of the account making the request (not included for public/unauthenticated queries). */
|
|
2384
|
+
viewer?: At.Did;
|
|
2385
|
+
}
|
|
2386
|
+
type Input = undefined;
|
|
2387
|
+
interface Output {
|
|
2388
|
+
trends: AppBskyUnspeccedDefs.SkeletonTrend[];
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2215
2392
|
/** Backend Actors (profile) search, returns only skeleton. */
|
|
2216
2393
|
namespace AppBskyUnspeccedSearchActorsSkeleton {
|
|
2217
2394
|
interface Params {
|
|
@@ -2228,7 +2405,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2228
2405
|
/** If true, acts as fast/simple 'typeahead' query. */
|
|
2229
2406
|
typeahead?: boolean;
|
|
2230
2407
|
/** DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking. */
|
|
2231
|
-
viewer?: At.
|
|
2408
|
+
viewer?: At.Did;
|
|
2232
2409
|
}
|
|
2233
2410
|
type Input = undefined;
|
|
2234
2411
|
interface Output {
|
|
@@ -2248,7 +2425,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2248
2425
|
/** Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. */
|
|
2249
2426
|
q: string;
|
|
2250
2427
|
/** Filter to posts by the given account. Handles are resolved to DID before query-time. */
|
|
2251
|
-
author?:
|
|
2428
|
+
author?: At.Identifier;
|
|
2252
2429
|
/** Optional pagination mechanism; may not necessarily allow scrolling through entire result set. */
|
|
2253
2430
|
cursor?: string;
|
|
2254
2431
|
/** Filter to posts with URLs (facet links or embeds) linking to the given domain (hostname). Server may apply hostname normalization. */
|
|
@@ -2262,7 +2439,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2262
2439
|
*/
|
|
2263
2440
|
limit?: number;
|
|
2264
2441
|
/** Filter to posts which mention the given account. Handles are resolved to DID before query-time. Only matches rich-text facet mentions. */
|
|
2265
|
-
mentions?:
|
|
2442
|
+
mentions?: At.Identifier;
|
|
2266
2443
|
/** Filter results for posts after the indicated datetime (inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
|
|
2267
2444
|
since?: string;
|
|
2268
2445
|
/**
|
|
@@ -2279,9 +2456,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
2279
2456
|
/** Filter results for posts before the indicated datetime (not inclusive). Expected to use 'sortAt' timestamp, which may not match 'createdAt'. Can be a datetime, or just an ISO date (YYY-MM-DD). */
|
|
2280
2457
|
until?: string;
|
|
2281
2458
|
/** Filter to posts with links (facet links or embeds) pointing to this URL. Server may apply URL normalization or fuzzy matching. */
|
|
2282
|
-
url?:
|
|
2459
|
+
url?: At.GenericUri;
|
|
2283
2460
|
/** DID of the account making the request (not included for public/unauthenticated queries). Used for 'from:me' queries. */
|
|
2284
|
-
viewer?: At.
|
|
2461
|
+
viewer?: At.Did;
|
|
2285
2462
|
}
|
|
2286
2463
|
type Input = undefined;
|
|
2287
2464
|
interface Output {
|
|
@@ -2309,7 +2486,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2309
2486
|
*/
|
|
2310
2487
|
limit?: number;
|
|
2311
2488
|
/** DID of the account making the request (not included for public/unauthenticated queries). */
|
|
2312
|
-
viewer?: At.
|
|
2489
|
+
viewer?: At.Did;
|
|
2313
2490
|
}
|
|
2314
2491
|
type Input = undefined;
|
|
2315
2492
|
interface Output {
|
|
@@ -2326,7 +2503,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2326
2503
|
namespace AppBskyVideoDefs {
|
|
2327
2504
|
interface JobStatus {
|
|
2328
2505
|
[Brand.Type]?: 'app.bsky.video.defs#jobStatus';
|
|
2329
|
-
did: At.
|
|
2506
|
+
did: At.Did;
|
|
2330
2507
|
jobId: string;
|
|
2331
2508
|
/** The state of the video processing job. All values not listed as a known value indicate that the job is in process. */
|
|
2332
2509
|
state: 'JOB_STATE_COMPLETED' | 'JOB_STATE_FAILED' | (string & {});
|
|
@@ -2369,7 +2546,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2369
2546
|
/** Upload a video to be processed then stored on the PDS. */
|
|
2370
2547
|
namespace AppBskyVideoUploadVideo {
|
|
2371
2548
|
interface Params {}
|
|
2372
|
-
type Input = Blob |
|
|
2549
|
+
type Input = Blob | BufferSource | ReadableStream;
|
|
2373
2550
|
interface Output {
|
|
2374
2551
|
jobStatus: AppBskyVideoDefs.JobStatus;
|
|
2375
2552
|
}
|
|
@@ -2386,10 +2563,10 @@ declare module '@atcute/client/lexicons' {
|
|
|
2386
2563
|
namespace ChatBskyActorDefs {
|
|
2387
2564
|
interface ProfileViewBasic {
|
|
2388
2565
|
[Brand.Type]?: 'chat.bsky.actor.defs#profileViewBasic';
|
|
2389
|
-
did: At.
|
|
2566
|
+
did: At.Did;
|
|
2390
2567
|
handle: At.Handle;
|
|
2391
2568
|
associated?: AppBskyActorDefs.ProfileAssociated;
|
|
2392
|
-
avatar?:
|
|
2569
|
+
avatar?: At.GenericUri;
|
|
2393
2570
|
/** Set to true when the actor cannot actively participate in converations */
|
|
2394
2571
|
chatDisabled?: boolean;
|
|
2395
2572
|
/**
|
|
@@ -2425,6 +2602,29 @@ declare module '@atcute/client/lexicons' {
|
|
|
2425
2602
|
}
|
|
2426
2603
|
}
|
|
2427
2604
|
|
|
2605
|
+
/** 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. */
|
|
2606
|
+
namespace ChatBskyConvoAddReaction {
|
|
2607
|
+
interface Params {}
|
|
2608
|
+
interface Input {
|
|
2609
|
+
convoId: string;
|
|
2610
|
+
messageId: string;
|
|
2611
|
+
/**
|
|
2612
|
+
* Minimum string length: 1 \
|
|
2613
|
+
* Maximum string length: 64 \
|
|
2614
|
+
* Maximum grapheme length: 1
|
|
2615
|
+
*/
|
|
2616
|
+
value: string;
|
|
2617
|
+
}
|
|
2618
|
+
interface Output {
|
|
2619
|
+
message: ChatBskyConvoDefs.MessageView;
|
|
2620
|
+
}
|
|
2621
|
+
interface Errors {
|
|
2622
|
+
ReactionMessageDeleted: {};
|
|
2623
|
+
ReactionLimitReached: {};
|
|
2624
|
+
ReactionInvalidValue: {};
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2428
2628
|
namespace ChatBskyConvoDefs {
|
|
2429
2629
|
interface ConvoView {
|
|
2430
2630
|
[Brand.Type]?: 'chat.bsky.convo.defs#convoView';
|
|
@@ -2434,6 +2634,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2434
2634
|
rev: string;
|
|
2435
2635
|
unreadCount: number;
|
|
2436
2636
|
lastMessage?: Brand.Union<DeletedMessageView | MessageView>;
|
|
2637
|
+
lastReaction?: Brand.Union<MessageAndReactionView>;
|
|
2437
2638
|
status?: 'accepted' | 'request' | (string & {});
|
|
2438
2639
|
}
|
|
2439
2640
|
interface DeletedMessageView {
|
|
@@ -2448,6 +2649,13 @@ declare module '@atcute/client/lexicons' {
|
|
|
2448
2649
|
convoId: string;
|
|
2449
2650
|
rev: string;
|
|
2450
2651
|
}
|
|
2652
|
+
interface LogAddReaction {
|
|
2653
|
+
[Brand.Type]?: 'chat.bsky.convo.defs#logAddReaction';
|
|
2654
|
+
convoId: string;
|
|
2655
|
+
message: Brand.Union<DeletedMessageView | MessageView>;
|
|
2656
|
+
reaction: ReactionView;
|
|
2657
|
+
rev: string;
|
|
2658
|
+
}
|
|
2451
2659
|
interface LogBeginConvo {
|
|
2452
2660
|
[Brand.Type]?: 'chat.bsky.convo.defs#logBeginConvo';
|
|
2453
2661
|
convoId: string;
|
|
@@ -2481,11 +2689,23 @@ declare module '@atcute/client/lexicons' {
|
|
|
2481
2689
|
message: Brand.Union<DeletedMessageView | MessageView>;
|
|
2482
2690
|
rev: string;
|
|
2483
2691
|
}
|
|
2692
|
+
interface LogRemoveReaction {
|
|
2693
|
+
[Brand.Type]?: 'chat.bsky.convo.defs#logRemoveReaction';
|
|
2694
|
+
convoId: string;
|
|
2695
|
+
message: Brand.Union<DeletedMessageView | MessageView>;
|
|
2696
|
+
reaction: ReactionView;
|
|
2697
|
+
rev: string;
|
|
2698
|
+
}
|
|
2484
2699
|
interface LogUnmuteConvo {
|
|
2485
2700
|
[Brand.Type]?: 'chat.bsky.convo.defs#logUnmuteConvo';
|
|
2486
2701
|
convoId: string;
|
|
2487
2702
|
rev: string;
|
|
2488
2703
|
}
|
|
2704
|
+
interface MessageAndReactionView {
|
|
2705
|
+
[Brand.Type]?: 'chat.bsky.convo.defs#messageAndReactionView';
|
|
2706
|
+
message: MessageView;
|
|
2707
|
+
reaction: ReactionView;
|
|
2708
|
+
}
|
|
2489
2709
|
interface MessageInput {
|
|
2490
2710
|
[Brand.Type]?: 'chat.bsky.convo.defs#messageInput';
|
|
2491
2711
|
/**
|
|
@@ -2500,7 +2720,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2500
2720
|
interface MessageRef {
|
|
2501
2721
|
[Brand.Type]?: 'chat.bsky.convo.defs#messageRef';
|
|
2502
2722
|
convoId: string;
|
|
2503
|
-
did: At.
|
|
2723
|
+
did: At.Did;
|
|
2504
2724
|
messageId: string;
|
|
2505
2725
|
}
|
|
2506
2726
|
interface MessageView {
|
|
@@ -2517,10 +2737,22 @@ declare module '@atcute/client/lexicons' {
|
|
|
2517
2737
|
embed?: Brand.Union<AppBskyEmbedRecord.View>;
|
|
2518
2738
|
/** Annotations of text (mentions, URLs, hashtags, etc) */
|
|
2519
2739
|
facets?: AppBskyRichtextFacet.Main[];
|
|
2740
|
+
/** Reactions to this message, in ascending order of creation time. */
|
|
2741
|
+
reactions?: ReactionView[];
|
|
2520
2742
|
}
|
|
2521
2743
|
interface MessageViewSender {
|
|
2522
2744
|
[Brand.Type]?: 'chat.bsky.convo.defs#messageViewSender';
|
|
2523
|
-
did: At.
|
|
2745
|
+
did: At.Did;
|
|
2746
|
+
}
|
|
2747
|
+
interface ReactionView {
|
|
2748
|
+
[Brand.Type]?: 'chat.bsky.convo.defs#reactionView';
|
|
2749
|
+
createdAt: string;
|
|
2750
|
+
sender: ReactionViewSender;
|
|
2751
|
+
value: string;
|
|
2752
|
+
}
|
|
2753
|
+
interface ReactionViewSender {
|
|
2754
|
+
[Brand.Type]?: 'chat.bsky.convo.defs#reactionViewSender';
|
|
2755
|
+
did: At.Did;
|
|
2524
2756
|
}
|
|
2525
2757
|
}
|
|
2526
2758
|
|
|
@@ -2550,7 +2782,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2550
2782
|
* Minimum array length: 1 \
|
|
2551
2783
|
* Maximum array length: 10
|
|
2552
2784
|
*/
|
|
2553
|
-
members: At.
|
|
2785
|
+
members: At.Did[];
|
|
2554
2786
|
}
|
|
2555
2787
|
type Input = undefined;
|
|
2556
2788
|
interface Output {
|
|
@@ -2565,7 +2797,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2565
2797
|
* Minimum array length: 1 \
|
|
2566
2798
|
* Maximum array length: 10
|
|
2567
2799
|
*/
|
|
2568
|
-
members: At.
|
|
2800
|
+
members: At.Did[];
|
|
2569
2801
|
}
|
|
2570
2802
|
type Input = undefined;
|
|
2571
2803
|
interface Output {
|
|
@@ -2581,10 +2813,15 @@ declare module '@atcute/client/lexicons' {
|
|
|
2581
2813
|
interface Output {
|
|
2582
2814
|
logs: Brand.Union<
|
|
2583
2815
|
| ChatBskyConvoDefs.LogAcceptConvo
|
|
2816
|
+
| ChatBskyConvoDefs.LogAddReaction
|
|
2584
2817
|
| ChatBskyConvoDefs.LogBeginConvo
|
|
2585
2818
|
| ChatBskyConvoDefs.LogCreateMessage
|
|
2586
2819
|
| ChatBskyConvoDefs.LogDeleteMessage
|
|
2587
2820
|
| ChatBskyConvoDefs.LogLeaveConvo
|
|
2821
|
+
| ChatBskyConvoDefs.LogMuteConvo
|
|
2822
|
+
| ChatBskyConvoDefs.LogReadMessage
|
|
2823
|
+
| ChatBskyConvoDefs.LogRemoveReaction
|
|
2824
|
+
| ChatBskyConvoDefs.LogUnmuteConvo
|
|
2588
2825
|
>[];
|
|
2589
2826
|
cursor?: string;
|
|
2590
2827
|
}
|
|
@@ -2648,6 +2885,28 @@ declare module '@atcute/client/lexicons' {
|
|
|
2648
2885
|
}
|
|
2649
2886
|
}
|
|
2650
2887
|
|
|
2888
|
+
/** 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. */
|
|
2889
|
+
namespace ChatBskyConvoRemoveReaction {
|
|
2890
|
+
interface Params {}
|
|
2891
|
+
interface Input {
|
|
2892
|
+
convoId: string;
|
|
2893
|
+
messageId: string;
|
|
2894
|
+
/**
|
|
2895
|
+
* Minimum string length: 1 \
|
|
2896
|
+
* Maximum string length: 64 \
|
|
2897
|
+
* Maximum grapheme length: 1
|
|
2898
|
+
*/
|
|
2899
|
+
value: string;
|
|
2900
|
+
}
|
|
2901
|
+
interface Output {
|
|
2902
|
+
message: ChatBskyConvoDefs.MessageView;
|
|
2903
|
+
}
|
|
2904
|
+
interface Errors {
|
|
2905
|
+
ReactionMessageDeleted: {};
|
|
2906
|
+
ReactionInvalidValue: {};
|
|
2907
|
+
}
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2651
2910
|
namespace ChatBskyConvoSendMessage {
|
|
2652
2911
|
interface Params {}
|
|
2653
2912
|
interface Input {
|
|
@@ -2707,7 +2966,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2707
2966
|
|
|
2708
2967
|
namespace ChatBskyModerationGetActorMetadata {
|
|
2709
2968
|
interface Params {
|
|
2710
|
-
actor: At.
|
|
2969
|
+
actor: At.Did;
|
|
2711
2970
|
}
|
|
2712
2971
|
type Input = undefined;
|
|
2713
2972
|
interface Output {
|
|
@@ -2743,7 +3002,7 @@ declare module '@atcute/client/lexicons' {
|
|
|
2743
3002
|
namespace ChatBskyModerationUpdateActorAccess {
|
|
2744
3003
|
interface Params {}
|
|
2745
3004
|
interface Input {
|
|
2746
|
-
actor: At.
|
|
3005
|
+
actor: At.Did;
|
|
2747
3006
|
allowAccess: boolean;
|
|
2748
3007
|
ref?: string;
|
|
2749
3008
|
}
|
|
@@ -2764,244 +3023,413 @@ declare module '@atcute/client/lexicons' {
|
|
|
2764
3023
|
'app.bsky.graph.listblock': AppBskyGraphListblock.Record;
|
|
2765
3024
|
'app.bsky.graph.listitem': AppBskyGraphListitem.Record;
|
|
2766
3025
|
'app.bsky.graph.starterpack': AppBskyGraphStarterpack.Record;
|
|
3026
|
+
'app.bsky.graph.verification': AppBskyGraphVerification.Record;
|
|
2767
3027
|
'app.bsky.labeler.service': AppBskyLabelerService.Record;
|
|
2768
3028
|
'chat.bsky.actor.declaration': ChatBskyActorDeclaration.Record;
|
|
2769
3029
|
}
|
|
2770
3030
|
|
|
2771
3031
|
interface Queries {
|
|
2772
3032
|
'app.bsky.actor.getPreferences': {
|
|
3033
|
+
/** @deprecated */
|
|
2773
3034
|
output: AppBskyActorGetPreferences.Output;
|
|
3035
|
+
response: { json: AppBskyActorGetPreferences.Output };
|
|
2774
3036
|
};
|
|
2775
3037
|
'app.bsky.actor.getProfile': {
|
|
2776
3038
|
params: AppBskyActorGetProfile.Params;
|
|
3039
|
+
/** @deprecated */
|
|
2777
3040
|
output: AppBskyActorGetProfile.Output;
|
|
3041
|
+
response: { json: AppBskyActorGetProfile.Output };
|
|
2778
3042
|
};
|
|
2779
3043
|
'app.bsky.actor.getProfiles': {
|
|
2780
3044
|
params: AppBskyActorGetProfiles.Params;
|
|
3045
|
+
/** @deprecated */
|
|
2781
3046
|
output: AppBskyActorGetProfiles.Output;
|
|
3047
|
+
response: { json: AppBskyActorGetProfiles.Output };
|
|
2782
3048
|
};
|
|
2783
3049
|
'app.bsky.actor.getSuggestions': {
|
|
2784
3050
|
params: AppBskyActorGetSuggestions.Params;
|
|
3051
|
+
/** @deprecated */
|
|
2785
3052
|
output: AppBskyActorGetSuggestions.Output;
|
|
3053
|
+
response: { json: AppBskyActorGetSuggestions.Output };
|
|
2786
3054
|
};
|
|
2787
3055
|
'app.bsky.actor.searchActors': {
|
|
2788
3056
|
params: AppBskyActorSearchActors.Params;
|
|
3057
|
+
/** @deprecated */
|
|
2789
3058
|
output: AppBskyActorSearchActors.Output;
|
|
3059
|
+
response: { json: AppBskyActorSearchActors.Output };
|
|
2790
3060
|
};
|
|
2791
3061
|
'app.bsky.actor.searchActorsTypeahead': {
|
|
2792
3062
|
params: AppBskyActorSearchActorsTypeahead.Params;
|
|
3063
|
+
/** @deprecated */
|
|
2793
3064
|
output: AppBskyActorSearchActorsTypeahead.Output;
|
|
3065
|
+
response: { json: AppBskyActorSearchActorsTypeahead.Output };
|
|
2794
3066
|
};
|
|
2795
3067
|
'app.bsky.feed.describeFeedGenerator': {
|
|
3068
|
+
/** @deprecated */
|
|
2796
3069
|
output: AppBskyFeedDescribeFeedGenerator.Output;
|
|
3070
|
+
response: { json: AppBskyFeedDescribeFeedGenerator.Output };
|
|
2797
3071
|
};
|
|
2798
3072
|
'app.bsky.feed.getActorFeeds': {
|
|
2799
3073
|
params: AppBskyFeedGetActorFeeds.Params;
|
|
3074
|
+
/** @deprecated */
|
|
2800
3075
|
output: AppBskyFeedGetActorFeeds.Output;
|
|
3076
|
+
response: { json: AppBskyFeedGetActorFeeds.Output };
|
|
2801
3077
|
};
|
|
2802
3078
|
'app.bsky.feed.getActorLikes': {
|
|
2803
3079
|
params: AppBskyFeedGetActorLikes.Params;
|
|
3080
|
+
/** @deprecated */
|
|
2804
3081
|
output: AppBskyFeedGetActorLikes.Output;
|
|
3082
|
+
response: { json: AppBskyFeedGetActorLikes.Output };
|
|
2805
3083
|
};
|
|
2806
3084
|
'app.bsky.feed.getAuthorFeed': {
|
|
2807
3085
|
params: AppBskyFeedGetAuthorFeed.Params;
|
|
3086
|
+
/** @deprecated */
|
|
2808
3087
|
output: AppBskyFeedGetAuthorFeed.Output;
|
|
3088
|
+
response: { json: AppBskyFeedGetAuthorFeed.Output };
|
|
2809
3089
|
};
|
|
2810
3090
|
'app.bsky.feed.getFeed': {
|
|
2811
3091
|
params: AppBskyFeedGetFeed.Params;
|
|
3092
|
+
/** @deprecated */
|
|
2812
3093
|
output: AppBskyFeedGetFeed.Output;
|
|
3094
|
+
response: { json: AppBskyFeedGetFeed.Output };
|
|
2813
3095
|
};
|
|
2814
3096
|
'app.bsky.feed.getFeedGenerator': {
|
|
2815
3097
|
params: AppBskyFeedGetFeedGenerator.Params;
|
|
3098
|
+
/** @deprecated */
|
|
2816
3099
|
output: AppBskyFeedGetFeedGenerator.Output;
|
|
3100
|
+
response: { json: AppBskyFeedGetFeedGenerator.Output };
|
|
2817
3101
|
};
|
|
2818
3102
|
'app.bsky.feed.getFeedGenerators': {
|
|
2819
3103
|
params: AppBskyFeedGetFeedGenerators.Params;
|
|
3104
|
+
/** @deprecated */
|
|
2820
3105
|
output: AppBskyFeedGetFeedGenerators.Output;
|
|
3106
|
+
response: { json: AppBskyFeedGetFeedGenerators.Output };
|
|
2821
3107
|
};
|
|
2822
3108
|
'app.bsky.feed.getFeedSkeleton': {
|
|
2823
3109
|
params: AppBskyFeedGetFeedSkeleton.Params;
|
|
3110
|
+
/** @deprecated */
|
|
2824
3111
|
output: AppBskyFeedGetFeedSkeleton.Output;
|
|
3112
|
+
response: { json: AppBskyFeedGetFeedSkeleton.Output };
|
|
2825
3113
|
};
|
|
2826
3114
|
'app.bsky.feed.getLikes': {
|
|
2827
3115
|
params: AppBskyFeedGetLikes.Params;
|
|
3116
|
+
/** @deprecated */
|
|
2828
3117
|
output: AppBskyFeedGetLikes.Output;
|
|
3118
|
+
response: { json: AppBskyFeedGetLikes.Output };
|
|
2829
3119
|
};
|
|
2830
3120
|
'app.bsky.feed.getListFeed': {
|
|
2831
3121
|
params: AppBskyFeedGetListFeed.Params;
|
|
3122
|
+
/** @deprecated */
|
|
2832
3123
|
output: AppBskyFeedGetListFeed.Output;
|
|
3124
|
+
response: { json: AppBskyFeedGetListFeed.Output };
|
|
2833
3125
|
};
|
|
2834
3126
|
'app.bsky.feed.getPosts': {
|
|
2835
3127
|
params: AppBskyFeedGetPosts.Params;
|
|
3128
|
+
/** @deprecated */
|
|
2836
3129
|
output: AppBskyFeedGetPosts.Output;
|
|
3130
|
+
response: { json: AppBskyFeedGetPosts.Output };
|
|
2837
3131
|
};
|
|
2838
3132
|
'app.bsky.feed.getPostThread': {
|
|
2839
3133
|
params: AppBskyFeedGetPostThread.Params;
|
|
3134
|
+
/** @deprecated */
|
|
2840
3135
|
output: AppBskyFeedGetPostThread.Output;
|
|
3136
|
+
response: { json: AppBskyFeedGetPostThread.Output };
|
|
2841
3137
|
};
|
|
2842
3138
|
'app.bsky.feed.getQuotes': {
|
|
2843
3139
|
params: AppBskyFeedGetQuotes.Params;
|
|
3140
|
+
/** @deprecated */
|
|
2844
3141
|
output: AppBskyFeedGetQuotes.Output;
|
|
3142
|
+
response: { json: AppBskyFeedGetQuotes.Output };
|
|
2845
3143
|
};
|
|
2846
3144
|
'app.bsky.feed.getRepostedBy': {
|
|
2847
3145
|
params: AppBskyFeedGetRepostedBy.Params;
|
|
3146
|
+
/** @deprecated */
|
|
2848
3147
|
output: AppBskyFeedGetRepostedBy.Output;
|
|
3148
|
+
response: { json: AppBskyFeedGetRepostedBy.Output };
|
|
2849
3149
|
};
|
|
2850
3150
|
'app.bsky.feed.getSuggestedFeeds': {
|
|
2851
3151
|
params: AppBskyFeedGetSuggestedFeeds.Params;
|
|
3152
|
+
/** @deprecated */
|
|
2852
3153
|
output: AppBskyFeedGetSuggestedFeeds.Output;
|
|
3154
|
+
response: { json: AppBskyFeedGetSuggestedFeeds.Output };
|
|
2853
3155
|
};
|
|
2854
3156
|
'app.bsky.feed.getTimeline': {
|
|
2855
3157
|
params: AppBskyFeedGetTimeline.Params;
|
|
3158
|
+
/** @deprecated */
|
|
2856
3159
|
output: AppBskyFeedGetTimeline.Output;
|
|
3160
|
+
response: { json: AppBskyFeedGetTimeline.Output };
|
|
2857
3161
|
};
|
|
2858
3162
|
'app.bsky.feed.searchPosts': {
|
|
2859
3163
|
params: AppBskyFeedSearchPosts.Params;
|
|
3164
|
+
/** @deprecated */
|
|
2860
3165
|
output: AppBskyFeedSearchPosts.Output;
|
|
3166
|
+
response: { json: AppBskyFeedSearchPosts.Output };
|
|
2861
3167
|
};
|
|
2862
3168
|
'app.bsky.graph.getActorStarterPacks': {
|
|
2863
3169
|
params: AppBskyGraphGetActorStarterPacks.Params;
|
|
3170
|
+
/** @deprecated */
|
|
2864
3171
|
output: AppBskyGraphGetActorStarterPacks.Output;
|
|
3172
|
+
response: { json: AppBskyGraphGetActorStarterPacks.Output };
|
|
2865
3173
|
};
|
|
2866
3174
|
'app.bsky.graph.getBlocks': {
|
|
2867
3175
|
params: AppBskyGraphGetBlocks.Params;
|
|
3176
|
+
/** @deprecated */
|
|
2868
3177
|
output: AppBskyGraphGetBlocks.Output;
|
|
3178
|
+
response: { json: AppBskyGraphGetBlocks.Output };
|
|
2869
3179
|
};
|
|
2870
3180
|
'app.bsky.graph.getFollowers': {
|
|
2871
3181
|
params: AppBskyGraphGetFollowers.Params;
|
|
3182
|
+
/** @deprecated */
|
|
2872
3183
|
output: AppBskyGraphGetFollowers.Output;
|
|
3184
|
+
response: { json: AppBskyGraphGetFollowers.Output };
|
|
2873
3185
|
};
|
|
2874
3186
|
'app.bsky.graph.getFollows': {
|
|
2875
3187
|
params: AppBskyGraphGetFollows.Params;
|
|
3188
|
+
/** @deprecated */
|
|
2876
3189
|
output: AppBskyGraphGetFollows.Output;
|
|
3190
|
+
response: { json: AppBskyGraphGetFollows.Output };
|
|
2877
3191
|
};
|
|
2878
3192
|
'app.bsky.graph.getKnownFollowers': {
|
|
2879
3193
|
params: AppBskyGraphGetKnownFollowers.Params;
|
|
3194
|
+
/** @deprecated */
|
|
2880
3195
|
output: AppBskyGraphGetKnownFollowers.Output;
|
|
3196
|
+
response: { json: AppBskyGraphGetKnownFollowers.Output };
|
|
2881
3197
|
};
|
|
2882
3198
|
'app.bsky.graph.getList': {
|
|
2883
3199
|
params: AppBskyGraphGetList.Params;
|
|
3200
|
+
/** @deprecated */
|
|
2884
3201
|
output: AppBskyGraphGetList.Output;
|
|
3202
|
+
response: { json: AppBskyGraphGetList.Output };
|
|
2885
3203
|
};
|
|
2886
3204
|
'app.bsky.graph.getListBlocks': {
|
|
2887
3205
|
params: AppBskyGraphGetListBlocks.Params;
|
|
3206
|
+
/** @deprecated */
|
|
2888
3207
|
output: AppBskyGraphGetListBlocks.Output;
|
|
3208
|
+
response: { json: AppBskyGraphGetListBlocks.Output };
|
|
2889
3209
|
};
|
|
2890
3210
|
'app.bsky.graph.getListMutes': {
|
|
2891
3211
|
params: AppBskyGraphGetListMutes.Params;
|
|
3212
|
+
/** @deprecated */
|
|
2892
3213
|
output: AppBskyGraphGetListMutes.Output;
|
|
3214
|
+
response: { json: AppBskyGraphGetListMutes.Output };
|
|
2893
3215
|
};
|
|
2894
3216
|
'app.bsky.graph.getLists': {
|
|
2895
3217
|
params: AppBskyGraphGetLists.Params;
|
|
3218
|
+
/** @deprecated */
|
|
2896
3219
|
output: AppBskyGraphGetLists.Output;
|
|
3220
|
+
response: { json: AppBskyGraphGetLists.Output };
|
|
2897
3221
|
};
|
|
2898
3222
|
'app.bsky.graph.getMutes': {
|
|
2899
3223
|
params: AppBskyGraphGetMutes.Params;
|
|
3224
|
+
/** @deprecated */
|
|
2900
3225
|
output: AppBskyGraphGetMutes.Output;
|
|
3226
|
+
response: { json: AppBskyGraphGetMutes.Output };
|
|
2901
3227
|
};
|
|
2902
3228
|
'app.bsky.graph.getRelationships': {
|
|
2903
3229
|
params: AppBskyGraphGetRelationships.Params;
|
|
3230
|
+
/** @deprecated */
|
|
2904
3231
|
output: AppBskyGraphGetRelationships.Output;
|
|
3232
|
+
response: { json: AppBskyGraphGetRelationships.Output };
|
|
2905
3233
|
};
|
|
2906
3234
|
'app.bsky.graph.getStarterPack': {
|
|
2907
3235
|
params: AppBskyGraphGetStarterPack.Params;
|
|
3236
|
+
/** @deprecated */
|
|
2908
3237
|
output: AppBskyGraphGetStarterPack.Output;
|
|
3238
|
+
response: { json: AppBskyGraphGetStarterPack.Output };
|
|
2909
3239
|
};
|
|
2910
3240
|
'app.bsky.graph.getStarterPacks': {
|
|
2911
3241
|
params: AppBskyGraphGetStarterPacks.Params;
|
|
3242
|
+
/** @deprecated */
|
|
2912
3243
|
output: AppBskyGraphGetStarterPacks.Output;
|
|
3244
|
+
response: { json: AppBskyGraphGetStarterPacks.Output };
|
|
2913
3245
|
};
|
|
2914
3246
|
'app.bsky.graph.getSuggestedFollowsByActor': {
|
|
2915
3247
|
params: AppBskyGraphGetSuggestedFollowsByActor.Params;
|
|
3248
|
+
/** @deprecated */
|
|
2916
3249
|
output: AppBskyGraphGetSuggestedFollowsByActor.Output;
|
|
3250
|
+
response: { json: AppBskyGraphGetSuggestedFollowsByActor.Output };
|
|
2917
3251
|
};
|
|
2918
3252
|
'app.bsky.graph.searchStarterPacks': {
|
|
2919
3253
|
params: AppBskyGraphSearchStarterPacks.Params;
|
|
3254
|
+
/** @deprecated */
|
|
2920
3255
|
output: AppBskyGraphSearchStarterPacks.Output;
|
|
3256
|
+
response: { json: AppBskyGraphSearchStarterPacks.Output };
|
|
2921
3257
|
};
|
|
2922
3258
|
'app.bsky.labeler.getServices': {
|
|
2923
3259
|
params: AppBskyLabelerGetServices.Params;
|
|
3260
|
+
/** @deprecated */
|
|
2924
3261
|
output: AppBskyLabelerGetServices.Output;
|
|
3262
|
+
response: { json: AppBskyLabelerGetServices.Output };
|
|
2925
3263
|
};
|
|
2926
3264
|
'app.bsky.notification.getUnreadCount': {
|
|
2927
3265
|
params: AppBskyNotificationGetUnreadCount.Params;
|
|
3266
|
+
/** @deprecated */
|
|
2928
3267
|
output: AppBskyNotificationGetUnreadCount.Output;
|
|
3268
|
+
response: { json: AppBskyNotificationGetUnreadCount.Output };
|
|
2929
3269
|
};
|
|
2930
3270
|
'app.bsky.notification.listNotifications': {
|
|
2931
3271
|
params: AppBskyNotificationListNotifications.Params;
|
|
3272
|
+
/** @deprecated */
|
|
2932
3273
|
output: AppBskyNotificationListNotifications.Output;
|
|
3274
|
+
response: { json: AppBskyNotificationListNotifications.Output };
|
|
2933
3275
|
};
|
|
2934
3276
|
'app.bsky.unspecced.getConfig': {
|
|
3277
|
+
/** @deprecated */
|
|
2935
3278
|
output: AppBskyUnspeccedGetConfig.Output;
|
|
3279
|
+
response: { json: AppBskyUnspeccedGetConfig.Output };
|
|
2936
3280
|
};
|
|
2937
3281
|
'app.bsky.unspecced.getPopularFeedGenerators': {
|
|
2938
3282
|
params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
|
|
3283
|
+
/** @deprecated */
|
|
2939
3284
|
output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
|
|
3285
|
+
response: { json: AppBskyUnspeccedGetPopularFeedGenerators.Output };
|
|
3286
|
+
};
|
|
3287
|
+
'app.bsky.unspecced.getSuggestedFeeds': {
|
|
3288
|
+
params: AppBskyUnspeccedGetSuggestedFeeds.Params;
|
|
3289
|
+
/** @deprecated */
|
|
3290
|
+
output: AppBskyUnspeccedGetSuggestedFeeds.Output;
|
|
3291
|
+
response: { json: AppBskyUnspeccedGetSuggestedFeeds.Output };
|
|
3292
|
+
};
|
|
3293
|
+
'app.bsky.unspecced.getSuggestedFeedsSkeleton': {
|
|
3294
|
+
params: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Params;
|
|
3295
|
+
/** @deprecated */
|
|
3296
|
+
output: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Output;
|
|
3297
|
+
response: { json: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Output };
|
|
3298
|
+
};
|
|
3299
|
+
'app.bsky.unspecced.getSuggestedStarterPacks': {
|
|
3300
|
+
params: AppBskyUnspeccedGetSuggestedStarterPacks.Params;
|
|
3301
|
+
/** @deprecated */
|
|
3302
|
+
output: AppBskyUnspeccedGetSuggestedStarterPacks.Output;
|
|
3303
|
+
response: { json: AppBskyUnspeccedGetSuggestedStarterPacks.Output };
|
|
3304
|
+
};
|
|
3305
|
+
'app.bsky.unspecced.getSuggestedStarterPacksSkeleton': {
|
|
3306
|
+
params: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Params;
|
|
3307
|
+
/** @deprecated */
|
|
3308
|
+
output: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Output;
|
|
3309
|
+
response: { json: AppBskyUnspeccedGetSuggestedStarterPacksSkeleton.Output };
|
|
3310
|
+
};
|
|
3311
|
+
'app.bsky.unspecced.getSuggestedUsers': {
|
|
3312
|
+
params: AppBskyUnspeccedGetSuggestedUsers.Params;
|
|
3313
|
+
/** @deprecated */
|
|
3314
|
+
output: AppBskyUnspeccedGetSuggestedUsers.Output;
|
|
3315
|
+
response: { json: AppBskyUnspeccedGetSuggestedUsers.Output };
|
|
3316
|
+
};
|
|
3317
|
+
'app.bsky.unspecced.getSuggestedUsersSkeleton': {
|
|
3318
|
+
params: AppBskyUnspeccedGetSuggestedUsersSkeleton.Params;
|
|
3319
|
+
/** @deprecated */
|
|
3320
|
+
output: AppBskyUnspeccedGetSuggestedUsersSkeleton.Output;
|
|
3321
|
+
response: { json: AppBskyUnspeccedGetSuggestedUsersSkeleton.Output };
|
|
2940
3322
|
};
|
|
2941
3323
|
'app.bsky.unspecced.getSuggestionsSkeleton': {
|
|
2942
3324
|
params: AppBskyUnspeccedGetSuggestionsSkeleton.Params;
|
|
3325
|
+
/** @deprecated */
|
|
2943
3326
|
output: AppBskyUnspeccedGetSuggestionsSkeleton.Output;
|
|
3327
|
+
response: { json: AppBskyUnspeccedGetSuggestionsSkeleton.Output };
|
|
2944
3328
|
};
|
|
2945
3329
|
'app.bsky.unspecced.getTaggedSuggestions': {
|
|
3330
|
+
/** @deprecated */
|
|
2946
3331
|
output: AppBskyUnspeccedGetTaggedSuggestions.Output;
|
|
3332
|
+
response: { json: AppBskyUnspeccedGetTaggedSuggestions.Output };
|
|
2947
3333
|
};
|
|
2948
3334
|
'app.bsky.unspecced.getTrendingTopics': {
|
|
2949
3335
|
params: AppBskyUnspeccedGetTrendingTopics.Params;
|
|
3336
|
+
/** @deprecated */
|
|
2950
3337
|
output: AppBskyUnspeccedGetTrendingTopics.Output;
|
|
3338
|
+
response: { json: AppBskyUnspeccedGetTrendingTopics.Output };
|
|
3339
|
+
};
|
|
3340
|
+
'app.bsky.unspecced.getTrends': {
|
|
3341
|
+
params: AppBskyUnspeccedGetTrends.Params;
|
|
3342
|
+
/** @deprecated */
|
|
3343
|
+
output: AppBskyUnspeccedGetTrends.Output;
|
|
3344
|
+
response: { json: AppBskyUnspeccedGetTrends.Output };
|
|
3345
|
+
};
|
|
3346
|
+
'app.bsky.unspecced.getTrendsSkeleton': {
|
|
3347
|
+
params: AppBskyUnspeccedGetTrendsSkeleton.Params;
|
|
3348
|
+
/** @deprecated */
|
|
3349
|
+
output: AppBskyUnspeccedGetTrendsSkeleton.Output;
|
|
3350
|
+
response: { json: AppBskyUnspeccedGetTrendsSkeleton.Output };
|
|
2951
3351
|
};
|
|
2952
3352
|
'app.bsky.unspecced.searchActorsSkeleton': {
|
|
2953
3353
|
params: AppBskyUnspeccedSearchActorsSkeleton.Params;
|
|
3354
|
+
/** @deprecated */
|
|
2954
3355
|
output: AppBskyUnspeccedSearchActorsSkeleton.Output;
|
|
3356
|
+
response: { json: AppBskyUnspeccedSearchActorsSkeleton.Output };
|
|
2955
3357
|
};
|
|
2956
3358
|
'app.bsky.unspecced.searchPostsSkeleton': {
|
|
2957
3359
|
params: AppBskyUnspeccedSearchPostsSkeleton.Params;
|
|
3360
|
+
/** @deprecated */
|
|
2958
3361
|
output: AppBskyUnspeccedSearchPostsSkeleton.Output;
|
|
3362
|
+
response: { json: AppBskyUnspeccedSearchPostsSkeleton.Output };
|
|
2959
3363
|
};
|
|
2960
3364
|
'app.bsky.unspecced.searchStarterPacksSkeleton': {
|
|
2961
3365
|
params: AppBskyUnspeccedSearchStarterPacksSkeleton.Params;
|
|
3366
|
+
/** @deprecated */
|
|
2962
3367
|
output: AppBskyUnspeccedSearchStarterPacksSkeleton.Output;
|
|
3368
|
+
response: { json: AppBskyUnspeccedSearchStarterPacksSkeleton.Output };
|
|
2963
3369
|
};
|
|
2964
3370
|
'app.bsky.video.getJobStatus': {
|
|
2965
3371
|
params: AppBskyVideoGetJobStatus.Params;
|
|
3372
|
+
/** @deprecated */
|
|
2966
3373
|
output: AppBskyVideoGetJobStatus.Output;
|
|
3374
|
+
response: { json: AppBskyVideoGetJobStatus.Output };
|
|
2967
3375
|
};
|
|
2968
3376
|
'app.bsky.video.getUploadLimits': {
|
|
3377
|
+
/** @deprecated */
|
|
2969
3378
|
output: AppBskyVideoGetUploadLimits.Output;
|
|
3379
|
+
response: { json: AppBskyVideoGetUploadLimits.Output };
|
|
2970
3380
|
};
|
|
2971
3381
|
'chat.bsky.actor.exportAccountData': {
|
|
3382
|
+
/** @deprecated */
|
|
2972
3383
|
output: ChatBskyActorExportAccountData.Output;
|
|
3384
|
+
response: {};
|
|
2973
3385
|
};
|
|
2974
3386
|
'chat.bsky.convo.getConvo': {
|
|
2975
3387
|
params: ChatBskyConvoGetConvo.Params;
|
|
3388
|
+
/** @deprecated */
|
|
2976
3389
|
output: ChatBskyConvoGetConvo.Output;
|
|
3390
|
+
response: { json: ChatBskyConvoGetConvo.Output };
|
|
2977
3391
|
};
|
|
2978
3392
|
'chat.bsky.convo.getConvoAvailability': {
|
|
2979
3393
|
params: ChatBskyConvoGetConvoAvailability.Params;
|
|
3394
|
+
/** @deprecated */
|
|
2980
3395
|
output: ChatBskyConvoGetConvoAvailability.Output;
|
|
3396
|
+
response: { json: ChatBskyConvoGetConvoAvailability.Output };
|
|
2981
3397
|
};
|
|
2982
3398
|
'chat.bsky.convo.getConvoForMembers': {
|
|
2983
3399
|
params: ChatBskyConvoGetConvoForMembers.Params;
|
|
3400
|
+
/** @deprecated */
|
|
2984
3401
|
output: ChatBskyConvoGetConvoForMembers.Output;
|
|
3402
|
+
response: { json: ChatBskyConvoGetConvoForMembers.Output };
|
|
2985
3403
|
};
|
|
2986
3404
|
'chat.bsky.convo.getLog': {
|
|
2987
3405
|
params: ChatBskyConvoGetLog.Params;
|
|
3406
|
+
/** @deprecated */
|
|
2988
3407
|
output: ChatBskyConvoGetLog.Output;
|
|
3408
|
+
response: { json: ChatBskyConvoGetLog.Output };
|
|
2989
3409
|
};
|
|
2990
3410
|
'chat.bsky.convo.getMessages': {
|
|
2991
3411
|
params: ChatBskyConvoGetMessages.Params;
|
|
3412
|
+
/** @deprecated */
|
|
2992
3413
|
output: ChatBskyConvoGetMessages.Output;
|
|
3414
|
+
response: { json: ChatBskyConvoGetMessages.Output };
|
|
2993
3415
|
};
|
|
2994
3416
|
'chat.bsky.convo.listConvos': {
|
|
2995
3417
|
params: ChatBskyConvoListConvos.Params;
|
|
3418
|
+
/** @deprecated */
|
|
2996
3419
|
output: ChatBskyConvoListConvos.Output;
|
|
3420
|
+
response: { json: ChatBskyConvoListConvos.Output };
|
|
2997
3421
|
};
|
|
2998
3422
|
'chat.bsky.moderation.getActorMetadata': {
|
|
2999
3423
|
params: ChatBskyModerationGetActorMetadata.Params;
|
|
3424
|
+
/** @deprecated */
|
|
3000
3425
|
output: ChatBskyModerationGetActorMetadata.Output;
|
|
3426
|
+
response: { json: ChatBskyModerationGetActorMetadata.Output };
|
|
3001
3427
|
};
|
|
3002
3428
|
'chat.bsky.moderation.getMessageContext': {
|
|
3003
3429
|
params: ChatBskyModerationGetMessageContext.Params;
|
|
3430
|
+
/** @deprecated */
|
|
3004
3431
|
output: ChatBskyModerationGetMessageContext.Output;
|
|
3432
|
+
response: { json: ChatBskyModerationGetMessageContext.Output };
|
|
3005
3433
|
};
|
|
3006
3434
|
}
|
|
3007
3435
|
|
|
@@ -3011,7 +3439,9 @@ declare module '@atcute/client/lexicons' {
|
|
|
3011
3439
|
};
|
|
3012
3440
|
'app.bsky.feed.sendInteractions': {
|
|
3013
3441
|
input: AppBskyFeedSendInteractions.Input;
|
|
3442
|
+
/** @deprecated */
|
|
3014
3443
|
output: AppBskyFeedSendInteractions.Output;
|
|
3444
|
+
response: { json: AppBskyFeedSendInteractions.Output };
|
|
3015
3445
|
};
|
|
3016
3446
|
'app.bsky.graph.muteActor': {
|
|
3017
3447
|
input: AppBskyGraphMuteActor.Input;
|
|
@@ -3042,46 +3472,80 @@ declare module '@atcute/client/lexicons' {
|
|
|
3042
3472
|
};
|
|
3043
3473
|
'app.bsky.video.uploadVideo': {
|
|
3044
3474
|
input: AppBskyVideoUploadVideo.Input;
|
|
3475
|
+
/** @deprecated */
|
|
3045
3476
|
output: AppBskyVideoUploadVideo.Output;
|
|
3477
|
+
response: { json: AppBskyVideoUploadVideo.Output };
|
|
3046
3478
|
};
|
|
3047
3479
|
'chat.bsky.actor.deleteAccount': {
|
|
3480
|
+
/** @deprecated */
|
|
3048
3481
|
output: ChatBskyActorDeleteAccount.Output;
|
|
3482
|
+
response: { json: ChatBskyActorDeleteAccount.Output };
|
|
3049
3483
|
};
|
|
3050
3484
|
'chat.bsky.convo.acceptConvo': {
|
|
3051
3485
|
input: ChatBskyConvoAcceptConvo.Input;
|
|
3486
|
+
/** @deprecated */
|
|
3052
3487
|
output: ChatBskyConvoAcceptConvo.Output;
|
|
3488
|
+
response: { json: ChatBskyConvoAcceptConvo.Output };
|
|
3489
|
+
};
|
|
3490
|
+
'chat.bsky.convo.addReaction': {
|
|
3491
|
+
input: ChatBskyConvoAddReaction.Input;
|
|
3492
|
+
/** @deprecated */
|
|
3493
|
+
output: ChatBskyConvoAddReaction.Output;
|
|
3494
|
+
response: { json: ChatBskyConvoAddReaction.Output };
|
|
3053
3495
|
};
|
|
3054
3496
|
'chat.bsky.convo.deleteMessageForSelf': {
|
|
3055
3497
|
input: ChatBskyConvoDeleteMessageForSelf.Input;
|
|
3498
|
+
/** @deprecated */
|
|
3056
3499
|
output: ChatBskyConvoDeleteMessageForSelf.Output;
|
|
3500
|
+
response: { json: ChatBskyConvoDeleteMessageForSelf.Output };
|
|
3057
3501
|
};
|
|
3058
3502
|
'chat.bsky.convo.leaveConvo': {
|
|
3059
3503
|
input: ChatBskyConvoLeaveConvo.Input;
|
|
3504
|
+
/** @deprecated */
|
|
3060
3505
|
output: ChatBskyConvoLeaveConvo.Output;
|
|
3506
|
+
response: { json: ChatBskyConvoLeaveConvo.Output };
|
|
3061
3507
|
};
|
|
3062
3508
|
'chat.bsky.convo.muteConvo': {
|
|
3063
3509
|
input: ChatBskyConvoMuteConvo.Input;
|
|
3510
|
+
/** @deprecated */
|
|
3064
3511
|
output: ChatBskyConvoMuteConvo.Output;
|
|
3512
|
+
response: { json: ChatBskyConvoMuteConvo.Output };
|
|
3513
|
+
};
|
|
3514
|
+
'chat.bsky.convo.removeReaction': {
|
|
3515
|
+
input: ChatBskyConvoRemoveReaction.Input;
|
|
3516
|
+
/** @deprecated */
|
|
3517
|
+
output: ChatBskyConvoRemoveReaction.Output;
|
|
3518
|
+
response: { json: ChatBskyConvoRemoveReaction.Output };
|
|
3065
3519
|
};
|
|
3066
3520
|
'chat.bsky.convo.sendMessage': {
|
|
3067
3521
|
input: ChatBskyConvoSendMessage.Input;
|
|
3522
|
+
/** @deprecated */
|
|
3068
3523
|
output: ChatBskyConvoSendMessage.Output;
|
|
3524
|
+
response: { json: ChatBskyConvoSendMessage.Output };
|
|
3069
3525
|
};
|
|
3070
3526
|
'chat.bsky.convo.sendMessageBatch': {
|
|
3071
3527
|
input: ChatBskyConvoSendMessageBatch.Input;
|
|
3528
|
+
/** @deprecated */
|
|
3072
3529
|
output: ChatBskyConvoSendMessageBatch.Output;
|
|
3530
|
+
response: { json: ChatBskyConvoSendMessageBatch.Output };
|
|
3073
3531
|
};
|
|
3074
3532
|
'chat.bsky.convo.unmuteConvo': {
|
|
3075
3533
|
input: ChatBskyConvoUnmuteConvo.Input;
|
|
3534
|
+
/** @deprecated */
|
|
3076
3535
|
output: ChatBskyConvoUnmuteConvo.Output;
|
|
3536
|
+
response: { json: ChatBskyConvoUnmuteConvo.Output };
|
|
3077
3537
|
};
|
|
3078
3538
|
'chat.bsky.convo.updateAllRead': {
|
|
3079
3539
|
input: ChatBskyConvoUpdateAllRead.Input;
|
|
3540
|
+
/** @deprecated */
|
|
3080
3541
|
output: ChatBskyConvoUpdateAllRead.Output;
|
|
3542
|
+
response: { json: ChatBskyConvoUpdateAllRead.Output };
|
|
3081
3543
|
};
|
|
3082
3544
|
'chat.bsky.convo.updateRead': {
|
|
3083
3545
|
input: ChatBskyConvoUpdateRead.Input;
|
|
3546
|
+
/** @deprecated */
|
|
3084
3547
|
output: ChatBskyConvoUpdateRead.Output;
|
|
3548
|
+
response: { json: ChatBskyConvoUpdateRead.Output };
|
|
3085
3549
|
};
|
|
3086
3550
|
'chat.bsky.moderation.updateActorAccess': {
|
|
3087
3551
|
input: ChatBskyModerationUpdateActorAccess.Input;
|