@atproto/api 0.20.17 → 0.20.18
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/CHANGELOG.md +8 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +9 -0
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +568 -134
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +287 -67
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/feed/searchPostsV2.d.ts +88 -0
- package/dist/client/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
- package/dist/client/types/app/bsky/feed/searchPostsV2.js +21 -0
- package/dist/client/types/app/bsky/feed/searchPostsV2.js.map +1 -0
- package/dist/client/types/chat/bsky/actor/declaration.d.ts +1 -1
- package/dist/client/types/chat/bsky/actor/declaration.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/actor/declaration.js.map +1 -1
- package/dist/client/types/chat/bsky/actor/defs.d.ts +2 -3
- package/dist/client/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/actor/defs.js.map +1 -1
- package/dist/client/types/chat/bsky/convo/defs.d.ts +32 -35
- package/dist/client/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/client/types/chat/bsky/moderation/defs.d.ts +3 -3
- package/dist/client/types/chat/bsky/moderation/defs.d.ts.map +1 -1
- package/dist/client/types/chat/bsky/moderation/defs.js.map +1 -1
- package/package.json +3 -3
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -4866,6 +4866,228 @@ export declare const schemaDict: {
|
|
|
4866
4866
|
};
|
|
4867
4867
|
};
|
|
4868
4868
|
};
|
|
4869
|
+
readonly AppBskyFeedSearchPostsV2: {
|
|
4870
|
+
readonly lexicon: 1;
|
|
4871
|
+
readonly id: 'app.bsky.feed.searchPostsV2';
|
|
4872
|
+
readonly defs: {
|
|
4873
|
+
readonly main: {
|
|
4874
|
+
readonly type: 'query';
|
|
4875
|
+
readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
|
|
4876
|
+
readonly parameters: {
|
|
4877
|
+
readonly type: 'params';
|
|
4878
|
+
readonly required: ["sort"];
|
|
4879
|
+
readonly properties: {
|
|
4880
|
+
readonly cursor: {
|
|
4881
|
+
readonly type: 'string';
|
|
4882
|
+
readonly description: 'Optional pagination cursor.';
|
|
4883
|
+
};
|
|
4884
|
+
readonly limit: {
|
|
4885
|
+
readonly type: 'integer';
|
|
4886
|
+
readonly minimum: 1;
|
|
4887
|
+
readonly maximum: 100;
|
|
4888
|
+
readonly default: 25;
|
|
4889
|
+
readonly description: 'Maximum number of results to return.';
|
|
4890
|
+
};
|
|
4891
|
+
readonly query: {
|
|
4892
|
+
readonly type: 'string';
|
|
4893
|
+
readonly description: 'Search query string. A query or at least one filter is required.';
|
|
4894
|
+
};
|
|
4895
|
+
readonly sort: {
|
|
4896
|
+
readonly type: 'string';
|
|
4897
|
+
readonly knownValues: ["recent", "top"];
|
|
4898
|
+
readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
|
|
4899
|
+
};
|
|
4900
|
+
readonly authors: {
|
|
4901
|
+
readonly type: 'array';
|
|
4902
|
+
readonly items: {
|
|
4903
|
+
readonly type: 'string';
|
|
4904
|
+
readonly format: 'at-identifier';
|
|
4905
|
+
};
|
|
4906
|
+
readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
4907
|
+
};
|
|
4908
|
+
readonly mentions: {
|
|
4909
|
+
readonly type: 'array';
|
|
4910
|
+
readonly items: {
|
|
4911
|
+
readonly type: 'string';
|
|
4912
|
+
readonly format: 'at-identifier';
|
|
4913
|
+
};
|
|
4914
|
+
readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
4915
|
+
};
|
|
4916
|
+
readonly domains: {
|
|
4917
|
+
readonly type: 'array';
|
|
4918
|
+
readonly items: {
|
|
4919
|
+
readonly type: 'string';
|
|
4920
|
+
};
|
|
4921
|
+
readonly description: 'Include posts that link to any of these domains.';
|
|
4922
|
+
};
|
|
4923
|
+
readonly urls: {
|
|
4924
|
+
readonly type: 'array';
|
|
4925
|
+
readonly items: {
|
|
4926
|
+
readonly type: 'string';
|
|
4927
|
+
readonly format: 'uri';
|
|
4928
|
+
};
|
|
4929
|
+
readonly description: 'Include posts that link to any of these URLs.';
|
|
4930
|
+
};
|
|
4931
|
+
readonly embeddedAtUris: {
|
|
4932
|
+
readonly type: 'array';
|
|
4933
|
+
readonly items: {
|
|
4934
|
+
readonly type: 'string';
|
|
4935
|
+
readonly format: 'at-uri';
|
|
4936
|
+
};
|
|
4937
|
+
readonly description: 'Include posts that embed any of these AT URIs.';
|
|
4938
|
+
};
|
|
4939
|
+
readonly hashtags: {
|
|
4940
|
+
readonly type: 'array';
|
|
4941
|
+
readonly items: {
|
|
4942
|
+
readonly type: 'string';
|
|
4943
|
+
readonly maxLength: 640;
|
|
4944
|
+
readonly maxGraphemes: 64;
|
|
4945
|
+
};
|
|
4946
|
+
readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
4947
|
+
};
|
|
4948
|
+
readonly excludeAuthors: {
|
|
4949
|
+
readonly type: 'array';
|
|
4950
|
+
readonly items: {
|
|
4951
|
+
readonly type: 'string';
|
|
4952
|
+
readonly format: 'at-identifier';
|
|
4953
|
+
};
|
|
4954
|
+
readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
4955
|
+
};
|
|
4956
|
+
readonly excludeMentions: {
|
|
4957
|
+
readonly type: 'array';
|
|
4958
|
+
readonly items: {
|
|
4959
|
+
readonly type: 'string';
|
|
4960
|
+
readonly format: 'at-identifier';
|
|
4961
|
+
};
|
|
4962
|
+
readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
4963
|
+
};
|
|
4964
|
+
readonly excludeDomains: {
|
|
4965
|
+
readonly type: 'array';
|
|
4966
|
+
readonly items: {
|
|
4967
|
+
readonly type: 'string';
|
|
4968
|
+
};
|
|
4969
|
+
readonly description: 'Exclude posts that link to any of these domains.';
|
|
4970
|
+
};
|
|
4971
|
+
readonly excludeUrls: {
|
|
4972
|
+
readonly type: 'array';
|
|
4973
|
+
readonly items: {
|
|
4974
|
+
readonly type: 'string';
|
|
4975
|
+
readonly format: 'uri';
|
|
4976
|
+
};
|
|
4977
|
+
readonly description: 'Exclude posts that link to any of these URLs.';
|
|
4978
|
+
};
|
|
4979
|
+
readonly excludeEmbeddedAtUris: {
|
|
4980
|
+
readonly type: 'array';
|
|
4981
|
+
readonly items: {
|
|
4982
|
+
readonly type: 'string';
|
|
4983
|
+
readonly format: 'at-uri';
|
|
4984
|
+
};
|
|
4985
|
+
readonly description: 'Exclude posts that embed any of these AT URIs.';
|
|
4986
|
+
};
|
|
4987
|
+
readonly excludeHashtags: {
|
|
4988
|
+
readonly type: 'array';
|
|
4989
|
+
readonly items: {
|
|
4990
|
+
readonly type: 'string';
|
|
4991
|
+
readonly maxLength: 640;
|
|
4992
|
+
readonly maxGraphemes: 64;
|
|
4993
|
+
};
|
|
4994
|
+
readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
4995
|
+
};
|
|
4996
|
+
readonly since: {
|
|
4997
|
+
readonly type: 'string';
|
|
4998
|
+
readonly format: 'datetime';
|
|
4999
|
+
readonly description: 'Include posts indexed at or after this timestamp.';
|
|
5000
|
+
};
|
|
5001
|
+
readonly until: {
|
|
5002
|
+
readonly type: 'string';
|
|
5003
|
+
readonly format: 'datetime';
|
|
5004
|
+
readonly description: 'Include posts indexed before this timestamp. Defaults to the current time.';
|
|
5005
|
+
};
|
|
5006
|
+
readonly allTime: {
|
|
5007
|
+
readonly type: 'boolean';
|
|
5008
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
5009
|
+
};
|
|
5010
|
+
readonly language: {
|
|
5011
|
+
readonly type: 'string';
|
|
5012
|
+
readonly format: 'language';
|
|
5013
|
+
readonly description: 'Include posts whose language matches this language code.';
|
|
5014
|
+
};
|
|
5015
|
+
readonly hasMedia: {
|
|
5016
|
+
readonly type: 'boolean';
|
|
5017
|
+
readonly description: 'Include only posts with media.';
|
|
5018
|
+
};
|
|
5019
|
+
readonly hasVideo: {
|
|
5020
|
+
readonly type: 'boolean';
|
|
5021
|
+
readonly description: 'Include only posts with video.';
|
|
5022
|
+
};
|
|
5023
|
+
readonly replyParentUri: {
|
|
5024
|
+
readonly type: 'string';
|
|
5025
|
+
readonly format: 'at-uri';
|
|
5026
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
5027
|
+
};
|
|
5028
|
+
readonly threadRootUri: {
|
|
5029
|
+
readonly type: 'string';
|
|
5030
|
+
readonly format: 'at-uri';
|
|
5031
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
5032
|
+
};
|
|
5033
|
+
readonly excludeReplies: {
|
|
5034
|
+
readonly type: 'boolean';
|
|
5035
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
5036
|
+
};
|
|
5037
|
+
readonly repliesOnly: {
|
|
5038
|
+
readonly type: 'boolean';
|
|
5039
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
5040
|
+
};
|
|
5041
|
+
readonly following: {
|
|
5042
|
+
readonly type: 'boolean';
|
|
5043
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
5044
|
+
};
|
|
5045
|
+
readonly queryLanguage: {
|
|
5046
|
+
readonly type: 'string';
|
|
5047
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5048
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
5049
|
+
};
|
|
5050
|
+
};
|
|
5051
|
+
};
|
|
5052
|
+
readonly output: {
|
|
5053
|
+
readonly encoding: 'application/json';
|
|
5054
|
+
readonly schema: {
|
|
5055
|
+
readonly type: 'object';
|
|
5056
|
+
readonly required: ["posts"];
|
|
5057
|
+
readonly properties: {
|
|
5058
|
+
readonly cursor: {
|
|
5059
|
+
readonly type: 'string';
|
|
5060
|
+
readonly description: 'Cursor for the next page of results.';
|
|
5061
|
+
};
|
|
5062
|
+
readonly hitsTotal: {
|
|
5063
|
+
readonly type: 'integer';
|
|
5064
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
5065
|
+
};
|
|
5066
|
+
readonly posts: {
|
|
5067
|
+
readonly type: 'array';
|
|
5068
|
+
readonly items: {
|
|
5069
|
+
readonly type: 'ref';
|
|
5070
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
5071
|
+
};
|
|
5072
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
5073
|
+
};
|
|
5074
|
+
readonly detectedQueryLanguages: {
|
|
5075
|
+
readonly type: 'array';
|
|
5076
|
+
readonly items: {
|
|
5077
|
+
readonly type: 'string';
|
|
5078
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5079
|
+
};
|
|
5080
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
5081
|
+
};
|
|
5082
|
+
};
|
|
5083
|
+
};
|
|
5084
|
+
};
|
|
5085
|
+
readonly errors: [{
|
|
5086
|
+
readonly name: 'BadQueryString';
|
|
5087
|
+
}];
|
|
5088
|
+
};
|
|
5089
|
+
};
|
|
5090
|
+
};
|
|
4869
5091
|
readonly AppBskyFeedSendInteractions: {
|
|
4870
5092
|
readonly lexicon: 1;
|
|
4871
5093
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -9335,7 +9557,7 @@ export declare const schemaDict: {
|
|
|
9335
9557
|
readonly knownValues: ["all", "none", "following"];
|
|
9336
9558
|
};
|
|
9337
9559
|
readonly allowGroupInvites: {
|
|
9338
|
-
readonly description: '
|
|
9560
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
9339
9561
|
readonly type: 'string';
|
|
9340
9562
|
readonly knownValues: ["all", "none", "following"];
|
|
9341
9563
|
};
|
|
@@ -9408,12 +9630,11 @@ export declare const schemaDict: {
|
|
|
9408
9630
|
};
|
|
9409
9631
|
};
|
|
9410
9632
|
readonly directConvoMember: {
|
|
9411
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9412
9633
|
readonly type: 'object';
|
|
9413
9634
|
readonly properties: {};
|
|
9414
9635
|
};
|
|
9415
9636
|
readonly groupConvoMember: {
|
|
9416
|
-
readonly description: '
|
|
9637
|
+
readonly description: 'A current group convo member.';
|
|
9417
9638
|
readonly type: 'object';
|
|
9418
9639
|
readonly required: ["role"];
|
|
9419
9640
|
readonly properties: {
|
|
@@ -9430,7 +9651,7 @@ export declare const schemaDict: {
|
|
|
9430
9651
|
};
|
|
9431
9652
|
};
|
|
9432
9653
|
readonly pastGroupConvoMember: {
|
|
9433
|
-
readonly description: '
|
|
9654
|
+
readonly description: 'A past group convo member.';
|
|
9434
9655
|
readonly type: 'object';
|
|
9435
9656
|
readonly required: [];
|
|
9436
9657
|
readonly properties: {};
|
|
@@ -9737,7 +9958,6 @@ export declare const schemaDict: {
|
|
|
9737
9958
|
};
|
|
9738
9959
|
};
|
|
9739
9960
|
readonly systemMessageView: {
|
|
9740
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9741
9961
|
readonly type: 'object';
|
|
9742
9962
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
9743
9963
|
readonly properties: {
|
|
@@ -9758,7 +9978,7 @@ export declare const schemaDict: {
|
|
|
9758
9978
|
};
|
|
9759
9979
|
};
|
|
9760
9980
|
readonly systemMessageDataAddMember: {
|
|
9761
|
-
readonly description: '
|
|
9981
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
9762
9982
|
readonly type: 'object';
|
|
9763
9983
|
readonly required: ["member", "role", "addedBy"];
|
|
9764
9984
|
readonly properties: {
|
|
@@ -9779,7 +9999,7 @@ export declare const schemaDict: {
|
|
|
9779
9999
|
};
|
|
9780
10000
|
};
|
|
9781
10001
|
readonly systemMessageDataRemoveMember: {
|
|
9782
|
-
readonly description: '
|
|
10002
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
9783
10003
|
readonly type: 'object';
|
|
9784
10004
|
readonly required: ["member", "removedBy"];
|
|
9785
10005
|
readonly properties: {
|
|
@@ -9795,7 +10015,7 @@ export declare const schemaDict: {
|
|
|
9795
10015
|
};
|
|
9796
10016
|
};
|
|
9797
10017
|
readonly systemMessageDataMemberJoin: {
|
|
9798
|
-
readonly description: '
|
|
10018
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
9799
10019
|
readonly type: 'object';
|
|
9800
10020
|
readonly required: ["member", "role"];
|
|
9801
10021
|
readonly properties: {
|
|
@@ -9817,7 +10037,7 @@ export declare const schemaDict: {
|
|
|
9817
10037
|
};
|
|
9818
10038
|
};
|
|
9819
10039
|
readonly systemMessageDataMemberLeave: {
|
|
9820
|
-
readonly description: '
|
|
10040
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
9821
10041
|
readonly type: 'object';
|
|
9822
10042
|
readonly required: ["member"];
|
|
9823
10043
|
readonly properties: {
|
|
@@ -9829,7 +10049,7 @@ export declare const schemaDict: {
|
|
|
9829
10049
|
};
|
|
9830
10050
|
};
|
|
9831
10051
|
readonly systemMessageDataLockConvo: {
|
|
9832
|
-
readonly description: '
|
|
10052
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
9833
10053
|
readonly type: 'object';
|
|
9834
10054
|
readonly required: ["lockedBy"];
|
|
9835
10055
|
readonly properties: {
|
|
@@ -9841,7 +10061,7 @@ export declare const schemaDict: {
|
|
|
9841
10061
|
};
|
|
9842
10062
|
};
|
|
9843
10063
|
readonly systemMessageDataUnlockConvo: {
|
|
9844
|
-
readonly description: '
|
|
10064
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
9845
10065
|
readonly type: 'object';
|
|
9846
10066
|
readonly required: ["unlockedBy"];
|
|
9847
10067
|
readonly properties: {
|
|
@@ -9853,7 +10073,7 @@ export declare const schemaDict: {
|
|
|
9853
10073
|
};
|
|
9854
10074
|
};
|
|
9855
10075
|
readonly systemMessageDataLockConvoPermanently: {
|
|
9856
|
-
readonly description: '
|
|
10076
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
9857
10077
|
readonly type: 'object';
|
|
9858
10078
|
readonly required: ["lockedBy"];
|
|
9859
10079
|
readonly properties: {
|
|
@@ -9865,7 +10085,7 @@ export declare const schemaDict: {
|
|
|
9865
10085
|
};
|
|
9866
10086
|
};
|
|
9867
10087
|
readonly systemMessageDataEditGroup: {
|
|
9868
|
-
readonly description: '
|
|
10088
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
9869
10089
|
readonly type: 'object';
|
|
9870
10090
|
readonly properties: {
|
|
9871
10091
|
readonly oldName: {
|
|
@@ -9879,22 +10099,22 @@ export declare const schemaDict: {
|
|
|
9879
10099
|
};
|
|
9880
10100
|
};
|
|
9881
10101
|
readonly systemMessageDataCreateJoinLink: {
|
|
9882
|
-
readonly description: '
|
|
10102
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
9883
10103
|
readonly type: 'object';
|
|
9884
10104
|
readonly properties: {};
|
|
9885
10105
|
};
|
|
9886
10106
|
readonly systemMessageDataEditJoinLink: {
|
|
9887
|
-
readonly description: '
|
|
10107
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
9888
10108
|
readonly type: 'object';
|
|
9889
10109
|
readonly properties: {};
|
|
9890
10110
|
};
|
|
9891
10111
|
readonly systemMessageDataEnableJoinLink: {
|
|
9892
|
-
readonly description: '
|
|
10112
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
9893
10113
|
readonly type: 'object';
|
|
9894
10114
|
readonly properties: {};
|
|
9895
10115
|
};
|
|
9896
10116
|
readonly systemMessageDataDisableJoinLink: {
|
|
9897
|
-
readonly description: '
|
|
10117
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
9898
10118
|
readonly type: 'object';
|
|
9899
10119
|
readonly properties: {};
|
|
9900
10120
|
};
|
|
@@ -10014,12 +10234,10 @@ export declare const schemaDict: {
|
|
|
10014
10234
|
};
|
|
10015
10235
|
};
|
|
10016
10236
|
readonly directConvo: {
|
|
10017
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10018
10237
|
readonly type: 'object';
|
|
10019
10238
|
readonly properties: {};
|
|
10020
10239
|
};
|
|
10021
10240
|
readonly groupConvo: {
|
|
10022
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10023
10241
|
readonly type: 'object';
|
|
10024
10242
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
10025
10243
|
readonly properties: {
|
|
@@ -10247,7 +10465,7 @@ export declare const schemaDict: {
|
|
|
10247
10465
|
};
|
|
10248
10466
|
};
|
|
10249
10467
|
readonly logReadConvo: {
|
|
10250
|
-
readonly description: '
|
|
10468
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
10251
10469
|
readonly type: 'object';
|
|
10252
10470
|
readonly required: ["rev", "convoId", "message"];
|
|
10253
10471
|
readonly properties: {
|
|
@@ -10264,7 +10482,7 @@ export declare const schemaDict: {
|
|
|
10264
10482
|
};
|
|
10265
10483
|
};
|
|
10266
10484
|
readonly logAddMember: {
|
|
10267
|
-
readonly description: '
|
|
10485
|
+
readonly description: 'Event indicating a member was added to a group convo. The member who was added gets a logBeginConvo (to create the convo) but also a logAddMember (to show the system message as the first message the user sees).';
|
|
10268
10486
|
readonly type: 'object';
|
|
10269
10487
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10270
10488
|
readonly properties: {
|
|
@@ -10290,7 +10508,7 @@ export declare const schemaDict: {
|
|
|
10290
10508
|
};
|
|
10291
10509
|
};
|
|
10292
10510
|
readonly logRemoveMember: {
|
|
10293
|
-
readonly description: "
|
|
10511
|
+
readonly description: "Event indicating a member was removed from a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logRemoveMember (because they already left, so can't see the system message).";
|
|
10294
10512
|
readonly type: 'object';
|
|
10295
10513
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10296
10514
|
readonly properties: {
|
|
@@ -10316,7 +10534,7 @@ export declare const schemaDict: {
|
|
|
10316
10534
|
};
|
|
10317
10535
|
};
|
|
10318
10536
|
readonly logMemberJoin: {
|
|
10319
|
-
readonly description: '
|
|
10537
|
+
readonly description: 'Event indicating a member joined a group convo via join link. The member who was added gets a logBeginConvo (to create the convo) but also a logMemberJoin (to show the system message as the first message the user sees).';
|
|
10320
10538
|
readonly type: 'object';
|
|
10321
10539
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10322
10540
|
readonly properties: {
|
|
@@ -10342,7 +10560,7 @@ export declare const schemaDict: {
|
|
|
10342
10560
|
};
|
|
10343
10561
|
};
|
|
10344
10562
|
readonly logMemberLeave: {
|
|
10345
|
-
readonly description: "
|
|
10563
|
+
readonly description: "Event indicating a member voluntarily left a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logMemberLeave (because they already left, so can't see the system message).";
|
|
10346
10564
|
readonly type: 'object';
|
|
10347
10565
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10348
10566
|
readonly properties: {
|
|
@@ -10368,7 +10586,7 @@ export declare const schemaDict: {
|
|
|
10368
10586
|
};
|
|
10369
10587
|
};
|
|
10370
10588
|
readonly logLockConvo: {
|
|
10371
|
-
readonly description: '
|
|
10589
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
10372
10590
|
readonly type: 'object';
|
|
10373
10591
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10374
10592
|
readonly properties: {
|
|
@@ -10394,7 +10612,7 @@ export declare const schemaDict: {
|
|
|
10394
10612
|
};
|
|
10395
10613
|
};
|
|
10396
10614
|
readonly logUnlockConvo: {
|
|
10397
|
-
readonly description: '
|
|
10615
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
10398
10616
|
readonly type: 'object';
|
|
10399
10617
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10400
10618
|
readonly properties: {
|
|
@@ -10420,7 +10638,7 @@ export declare const schemaDict: {
|
|
|
10420
10638
|
};
|
|
10421
10639
|
};
|
|
10422
10640
|
readonly logLockConvoPermanently: {
|
|
10423
|
-
readonly description: '
|
|
10641
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
10424
10642
|
readonly type: 'object';
|
|
10425
10643
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10426
10644
|
readonly properties: {
|
|
@@ -10446,7 +10664,7 @@ export declare const schemaDict: {
|
|
|
10446
10664
|
};
|
|
10447
10665
|
};
|
|
10448
10666
|
readonly logEditGroup: {
|
|
10449
|
-
readonly description: '
|
|
10667
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
10450
10668
|
readonly type: 'object';
|
|
10451
10669
|
readonly required: ["rev", "convoId", "message"];
|
|
10452
10670
|
readonly properties: {
|
|
@@ -10464,7 +10682,7 @@ export declare const schemaDict: {
|
|
|
10464
10682
|
};
|
|
10465
10683
|
};
|
|
10466
10684
|
readonly logCreateJoinLink: {
|
|
10467
|
-
readonly description: '
|
|
10685
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
10468
10686
|
readonly type: 'object';
|
|
10469
10687
|
readonly required: ["rev", "convoId", "message"];
|
|
10470
10688
|
readonly properties: {
|
|
@@ -10482,7 +10700,7 @@ export declare const schemaDict: {
|
|
|
10482
10700
|
};
|
|
10483
10701
|
};
|
|
10484
10702
|
readonly logEditJoinLink: {
|
|
10485
|
-
readonly description: '
|
|
10703
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
10486
10704
|
readonly type: 'object';
|
|
10487
10705
|
readonly required: ["rev", "convoId", "message"];
|
|
10488
10706
|
readonly properties: {
|
|
@@ -10500,7 +10718,7 @@ export declare const schemaDict: {
|
|
|
10500
10718
|
};
|
|
10501
10719
|
};
|
|
10502
10720
|
readonly logEnableJoinLink: {
|
|
10503
|
-
readonly description: '
|
|
10721
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
10504
10722
|
readonly type: 'object';
|
|
10505
10723
|
readonly required: ["rev", "convoId", "message"];
|
|
10506
10724
|
readonly properties: {
|
|
@@ -10518,7 +10736,7 @@ export declare const schemaDict: {
|
|
|
10518
10736
|
};
|
|
10519
10737
|
};
|
|
10520
10738
|
readonly logDisableJoinLink: {
|
|
10521
|
-
readonly description: '
|
|
10739
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
10522
10740
|
readonly type: 'object';
|
|
10523
10741
|
readonly required: ["rev", "convoId", "message"];
|
|
10524
10742
|
readonly properties: {
|
|
@@ -10536,7 +10754,7 @@ export declare const schemaDict: {
|
|
|
10536
10754
|
};
|
|
10537
10755
|
};
|
|
10538
10756
|
readonly logIncomingJoinRequest: {
|
|
10539
|
-
readonly description: '
|
|
10757
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
10540
10758
|
readonly type: 'object';
|
|
10541
10759
|
readonly required: ["rev", "convoId", "member"];
|
|
10542
10760
|
readonly properties: {
|
|
@@ -10554,7 +10772,7 @@ export declare const schemaDict: {
|
|
|
10554
10772
|
};
|
|
10555
10773
|
};
|
|
10556
10774
|
readonly logApproveJoinRequest: {
|
|
10557
|
-
readonly description: '
|
|
10775
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
10558
10776
|
readonly type: 'object';
|
|
10559
10777
|
readonly required: ["rev", "convoId", "member"];
|
|
10560
10778
|
readonly properties: {
|
|
@@ -10572,7 +10790,7 @@ export declare const schemaDict: {
|
|
|
10572
10790
|
};
|
|
10573
10791
|
};
|
|
10574
10792
|
readonly logRejectJoinRequest: {
|
|
10575
|
-
readonly description: '
|
|
10793
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
10576
10794
|
readonly type: 'object';
|
|
10577
10795
|
readonly required: ["rev", "convoId", "member"];
|
|
10578
10796
|
readonly properties: {
|
|
@@ -10590,7 +10808,7 @@ export declare const schemaDict: {
|
|
|
10590
10808
|
};
|
|
10591
10809
|
};
|
|
10592
10810
|
readonly logOutgoingJoinRequest: {
|
|
10593
|
-
readonly description: '
|
|
10811
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
10594
10812
|
readonly type: 'object';
|
|
10595
10813
|
readonly required: ["rev", "convoId"];
|
|
10596
10814
|
readonly properties: {
|
|
@@ -10603,7 +10821,7 @@ export declare const schemaDict: {
|
|
|
10603
10821
|
};
|
|
10604
10822
|
};
|
|
10605
10823
|
readonly logWithdrawIncomingJoinRequest: {
|
|
10606
|
-
readonly description: '
|
|
10824
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
10607
10825
|
readonly type: 'object';
|
|
10608
10826
|
readonly required: ["rev", "convoId", "member"];
|
|
10609
10827
|
readonly properties: {
|
|
@@ -10621,7 +10839,7 @@ export declare const schemaDict: {
|
|
|
10621
10839
|
};
|
|
10622
10840
|
};
|
|
10623
10841
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
10624
|
-
readonly description: '
|
|
10842
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
10625
10843
|
readonly type: 'object';
|
|
10626
10844
|
readonly required: ["rev", "convoId"];
|
|
10627
10845
|
readonly properties: {
|
|
@@ -10634,7 +10852,7 @@ export declare const schemaDict: {
|
|
|
10634
10852
|
};
|
|
10635
10853
|
};
|
|
10636
10854
|
readonly logReadJoinRequests: {
|
|
10637
|
-
readonly description: '
|
|
10855
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
10638
10856
|
readonly type: 'object';
|
|
10639
10857
|
readonly required: ["rev", "convoId"];
|
|
10640
10858
|
readonly properties: {
|
|
@@ -10964,7 +11182,7 @@ export declare const schemaDict: {
|
|
|
10964
11182
|
readonly defs: {
|
|
10965
11183
|
readonly main: {
|
|
10966
11184
|
readonly type: 'query';
|
|
10967
|
-
readonly description: "
|
|
11185
|
+
readonly description: "Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
|
|
10968
11186
|
readonly parameters: {
|
|
10969
11187
|
readonly type: 'params';
|
|
10970
11188
|
readonly properties: {
|
|
@@ -11044,7 +11262,7 @@ export declare const schemaDict: {
|
|
|
11044
11262
|
readonly defs: {
|
|
11045
11263
|
readonly main: {
|
|
11046
11264
|
readonly type: 'query';
|
|
11047
|
-
readonly description: '
|
|
11265
|
+
readonly description: 'Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
|
|
11048
11266
|
readonly parameters: {
|
|
11049
11267
|
readonly type: 'params';
|
|
11050
11268
|
readonly properties: {
|
|
@@ -11149,7 +11367,7 @@ export declare const schemaDict: {
|
|
|
11149
11367
|
readonly defs: {
|
|
11150
11368
|
readonly main: {
|
|
11151
11369
|
readonly type: 'procedure';
|
|
11152
|
-
readonly description: '
|
|
11370
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
11153
11371
|
readonly errors: [{
|
|
11154
11372
|
readonly name: 'ConvoLocked';
|
|
11155
11373
|
}, {
|
|
@@ -11389,7 +11607,7 @@ export declare const schemaDict: {
|
|
|
11389
11607
|
readonly defs: {
|
|
11390
11608
|
readonly main: {
|
|
11391
11609
|
readonly type: 'procedure';
|
|
11392
|
-
readonly description: '
|
|
11610
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
11393
11611
|
readonly errors: [{
|
|
11394
11612
|
readonly name: 'InvalidConvo';
|
|
11395
11613
|
}, {
|
|
@@ -11542,7 +11760,7 @@ export declare const schemaDict: {
|
|
|
11542
11760
|
readonly ChatBskyEmbedJoinLink: {
|
|
11543
11761
|
readonly lexicon: 1;
|
|
11544
11762
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
11545
|
-
readonly description: '
|
|
11763
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
11546
11764
|
readonly defs: {
|
|
11547
11765
|
readonly main: {
|
|
11548
11766
|
readonly type: 'object';
|
|
@@ -11572,7 +11790,7 @@ export declare const schemaDict: {
|
|
|
11572
11790
|
readonly defs: {
|
|
11573
11791
|
readonly main: {
|
|
11574
11792
|
readonly type: 'procedure';
|
|
11575
|
-
readonly description: "
|
|
11793
|
+
readonly description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
|
|
11576
11794
|
readonly errors: [{
|
|
11577
11795
|
readonly name: 'AccountSuspended';
|
|
11578
11796
|
}, {
|
|
@@ -11643,7 +11861,7 @@ export declare const schemaDict: {
|
|
|
11643
11861
|
readonly defs: {
|
|
11644
11862
|
readonly main: {
|
|
11645
11863
|
readonly type: 'procedure';
|
|
11646
|
-
readonly description: '
|
|
11864
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
11647
11865
|
readonly errors: [{
|
|
11648
11866
|
readonly name: 'InvalidConvo';
|
|
11649
11867
|
}, {
|
|
@@ -11689,7 +11907,7 @@ export declare const schemaDict: {
|
|
|
11689
11907
|
readonly defs: {
|
|
11690
11908
|
readonly main: {
|
|
11691
11909
|
readonly type: 'procedure';
|
|
11692
|
-
readonly description: "
|
|
11910
|
+
readonly description: "Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
|
|
11693
11911
|
readonly errors: [{
|
|
11694
11912
|
readonly name: 'AccountSuspended';
|
|
11695
11913
|
}, {
|
|
@@ -11750,7 +11968,7 @@ export declare const schemaDict: {
|
|
|
11750
11968
|
readonly defs: {
|
|
11751
11969
|
readonly main: {
|
|
11752
11970
|
readonly type: 'procedure';
|
|
11753
|
-
readonly description: '
|
|
11971
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
11754
11972
|
readonly errors: [{
|
|
11755
11973
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
11756
11974
|
}, {
|
|
@@ -11797,7 +12015,6 @@ export declare const schemaDict: {
|
|
|
11797
12015
|
readonly ChatBskyGroupDefs: {
|
|
11798
12016
|
readonly lexicon: 1;
|
|
11799
12017
|
readonly id: 'chat.bsky.group.defs';
|
|
11800
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
11801
12018
|
readonly defs: {
|
|
11802
12019
|
readonly linkEnabledStatus: {
|
|
11803
12020
|
readonly type: 'string';
|
|
@@ -11956,7 +12173,7 @@ export declare const schemaDict: {
|
|
|
11956
12173
|
readonly defs: {
|
|
11957
12174
|
readonly main: {
|
|
11958
12175
|
readonly type: 'procedure';
|
|
11959
|
-
readonly description: '
|
|
12176
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
11960
12177
|
readonly errors: [{
|
|
11961
12178
|
readonly name: 'InvalidConvo';
|
|
11962
12179
|
}, {
|
|
@@ -11998,7 +12215,7 @@ export declare const schemaDict: {
|
|
|
11998
12215
|
readonly defs: {
|
|
11999
12216
|
readonly main: {
|
|
12000
12217
|
readonly type: 'procedure';
|
|
12001
|
-
readonly description: '
|
|
12218
|
+
readonly description: 'Edits group settings.';
|
|
12002
12219
|
readonly errors: [{
|
|
12003
12220
|
readonly name: 'ConvoLocked';
|
|
12004
12221
|
}, {
|
|
@@ -12046,7 +12263,7 @@ export declare const schemaDict: {
|
|
|
12046
12263
|
readonly defs: {
|
|
12047
12264
|
readonly main: {
|
|
12048
12265
|
readonly type: 'procedure';
|
|
12049
|
-
readonly description: '
|
|
12266
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
12050
12267
|
readonly errors: [{
|
|
12051
12268
|
readonly name: 'InvalidConvo';
|
|
12052
12269
|
}, {
|
|
@@ -12095,7 +12312,7 @@ export declare const schemaDict: {
|
|
|
12095
12312
|
readonly defs: {
|
|
12096
12313
|
readonly main: {
|
|
12097
12314
|
readonly type: 'procedure';
|
|
12098
|
-
readonly description: '
|
|
12315
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
12099
12316
|
readonly errors: [{
|
|
12100
12317
|
readonly name: 'InvalidConvo';
|
|
12101
12318
|
}, {
|
|
@@ -12139,7 +12356,7 @@ export declare const schemaDict: {
|
|
|
12139
12356
|
readonly defs: {
|
|
12140
12357
|
readonly main: {
|
|
12141
12358
|
readonly type: 'query';
|
|
12142
|
-
readonly description: "
|
|
12359
|
+
readonly description: "Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
|
|
12143
12360
|
readonly parameters: {
|
|
12144
12361
|
readonly type: 'params';
|
|
12145
12362
|
readonly required: ["codes"];
|
|
@@ -12179,7 +12396,7 @@ export declare const schemaDict: {
|
|
|
12179
12396
|
readonly defs: {
|
|
12180
12397
|
readonly main: {
|
|
12181
12398
|
readonly type: 'query';
|
|
12182
|
-
readonly description: "
|
|
12399
|
+
readonly description: "Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
|
|
12183
12400
|
readonly errors: [{
|
|
12184
12401
|
readonly name: 'InvalidConvo';
|
|
12185
12402
|
}, {
|
|
@@ -12231,7 +12448,7 @@ export declare const schemaDict: {
|
|
|
12231
12448
|
readonly defs: {
|
|
12232
12449
|
readonly main: {
|
|
12233
12450
|
readonly type: 'query';
|
|
12234
|
-
readonly description: '
|
|
12451
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
12235
12452
|
readonly parameters: {
|
|
12236
12453
|
readonly type: 'params';
|
|
12237
12454
|
readonly required: ["subject"];
|
|
@@ -12279,7 +12496,7 @@ export declare const schemaDict: {
|
|
|
12279
12496
|
readonly defs: {
|
|
12280
12497
|
readonly main: {
|
|
12281
12498
|
readonly type: 'procedure';
|
|
12282
|
-
readonly description: '
|
|
12499
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
12283
12500
|
readonly errors: [{
|
|
12284
12501
|
readonly name: 'InvalidConvo';
|
|
12285
12502
|
}, {
|
|
@@ -12318,7 +12535,7 @@ export declare const schemaDict: {
|
|
|
12318
12535
|
readonly defs: {
|
|
12319
12536
|
readonly main: {
|
|
12320
12537
|
readonly type: 'procedure';
|
|
12321
|
-
readonly description: "
|
|
12538
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
12322
12539
|
readonly errors: [{
|
|
12323
12540
|
readonly name: 'InvalidConvo';
|
|
12324
12541
|
}, {
|
|
@@ -12366,7 +12583,7 @@ export declare const schemaDict: {
|
|
|
12366
12583
|
readonly defs: {
|
|
12367
12584
|
readonly main: {
|
|
12368
12585
|
readonly type: 'procedure';
|
|
12369
|
-
readonly description: '
|
|
12586
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
12370
12587
|
readonly errors: [{
|
|
12371
12588
|
readonly name: 'ConvoLocked';
|
|
12372
12589
|
}, {
|
|
@@ -12419,7 +12636,7 @@ export declare const schemaDict: {
|
|
|
12419
12636
|
readonly defs: {
|
|
12420
12637
|
readonly main: {
|
|
12421
12638
|
readonly type: 'procedure';
|
|
12422
|
-
readonly description: '
|
|
12639
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
12423
12640
|
readonly errors: [{
|
|
12424
12641
|
readonly name: 'InvalidConvo';
|
|
12425
12642
|
}, {
|
|
@@ -12454,7 +12671,7 @@ export declare const schemaDict: {
|
|
|
12454
12671
|
readonly defs: {
|
|
12455
12672
|
readonly main: {
|
|
12456
12673
|
readonly type: 'procedure';
|
|
12457
|
-
readonly description: '
|
|
12674
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
12458
12675
|
readonly errors: [{
|
|
12459
12676
|
readonly name: 'InvalidJoinRequest';
|
|
12460
12677
|
}];
|
|
@@ -12486,7 +12703,7 @@ export declare const schemaDict: {
|
|
|
12486
12703
|
readonly id: 'chat.bsky.moderation.defs';
|
|
12487
12704
|
readonly defs: {
|
|
12488
12705
|
readonly convoView: {
|
|
12489
|
-
readonly description: '
|
|
12706
|
+
readonly description: 'A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
|
|
12490
12707
|
readonly type: 'object';
|
|
12491
12708
|
readonly required: ["id", "rev"];
|
|
12492
12709
|
readonly properties: {
|
|
@@ -12504,12 +12721,12 @@ export declare const schemaDict: {
|
|
|
12504
12721
|
};
|
|
12505
12722
|
};
|
|
12506
12723
|
readonly directConvo: {
|
|
12507
|
-
readonly description: '
|
|
12724
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
12508
12725
|
readonly type: 'object';
|
|
12509
12726
|
readonly properties: {};
|
|
12510
12727
|
};
|
|
12511
12728
|
readonly groupConvo: {
|
|
12512
|
-
readonly description: '
|
|
12729
|
+
readonly description: 'Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
|
|
12513
12730
|
readonly type: 'object';
|
|
12514
12731
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
12515
12732
|
readonly properties: {
|
|
@@ -12612,7 +12829,7 @@ export declare const schemaDict: {
|
|
|
12612
12829
|
readonly defs: {
|
|
12613
12830
|
readonly main: {
|
|
12614
12831
|
readonly type: 'query';
|
|
12615
|
-
readonly description: '
|
|
12832
|
+
readonly description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
|
|
12616
12833
|
readonly errors: [{
|
|
12617
12834
|
readonly name: 'InvalidConvo';
|
|
12618
12835
|
}];
|
|
@@ -12647,7 +12864,7 @@ export declare const schemaDict: {
|
|
|
12647
12864
|
readonly defs: {
|
|
12648
12865
|
readonly main: {
|
|
12649
12866
|
readonly type: 'query';
|
|
12650
|
-
readonly description: '
|
|
12867
|
+
readonly description: 'Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
|
|
12651
12868
|
readonly errors: [{
|
|
12652
12869
|
readonly name: 'InvalidConvo';
|
|
12653
12870
|
}];
|
|
@@ -12697,7 +12914,7 @@ export declare const schemaDict: {
|
|
|
12697
12914
|
readonly defs: {
|
|
12698
12915
|
readonly main: {
|
|
12699
12916
|
readonly type: 'query';
|
|
12700
|
-
readonly description: '
|
|
12917
|
+
readonly description: 'Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
|
|
12701
12918
|
readonly parameters: {
|
|
12702
12919
|
readonly type: 'params';
|
|
12703
12920
|
readonly required: ["convoIds"];
|
|
@@ -28921,6 +29138,227 @@ export declare const schemas: ({
|
|
|
28921
29138
|
}];
|
|
28922
29139
|
};
|
|
28923
29140
|
};
|
|
29141
|
+
} | {
|
|
29142
|
+
readonly lexicon: 1;
|
|
29143
|
+
readonly id: 'app.bsky.feed.searchPostsV2';
|
|
29144
|
+
readonly defs: {
|
|
29145
|
+
readonly main: {
|
|
29146
|
+
readonly type: 'query';
|
|
29147
|
+
readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
|
|
29148
|
+
readonly parameters: {
|
|
29149
|
+
readonly type: 'params';
|
|
29150
|
+
readonly required: ["sort"];
|
|
29151
|
+
readonly properties: {
|
|
29152
|
+
readonly cursor: {
|
|
29153
|
+
readonly type: 'string';
|
|
29154
|
+
readonly description: 'Optional pagination cursor.';
|
|
29155
|
+
};
|
|
29156
|
+
readonly limit: {
|
|
29157
|
+
readonly type: 'integer';
|
|
29158
|
+
readonly minimum: 1;
|
|
29159
|
+
readonly maximum: 100;
|
|
29160
|
+
readonly default: 25;
|
|
29161
|
+
readonly description: 'Maximum number of results to return.';
|
|
29162
|
+
};
|
|
29163
|
+
readonly query: {
|
|
29164
|
+
readonly type: 'string';
|
|
29165
|
+
readonly description: 'Search query string. A query or at least one filter is required.';
|
|
29166
|
+
};
|
|
29167
|
+
readonly sort: {
|
|
29168
|
+
readonly type: 'string';
|
|
29169
|
+
readonly knownValues: ["recent", "top"];
|
|
29170
|
+
readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
|
|
29171
|
+
};
|
|
29172
|
+
readonly authors: {
|
|
29173
|
+
readonly type: 'array';
|
|
29174
|
+
readonly items: {
|
|
29175
|
+
readonly type: 'string';
|
|
29176
|
+
readonly format: 'at-identifier';
|
|
29177
|
+
};
|
|
29178
|
+
readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29179
|
+
};
|
|
29180
|
+
readonly mentions: {
|
|
29181
|
+
readonly type: 'array';
|
|
29182
|
+
readonly items: {
|
|
29183
|
+
readonly type: 'string';
|
|
29184
|
+
readonly format: 'at-identifier';
|
|
29185
|
+
};
|
|
29186
|
+
readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29187
|
+
};
|
|
29188
|
+
readonly domains: {
|
|
29189
|
+
readonly type: 'array';
|
|
29190
|
+
readonly items: {
|
|
29191
|
+
readonly type: 'string';
|
|
29192
|
+
};
|
|
29193
|
+
readonly description: 'Include posts that link to any of these domains.';
|
|
29194
|
+
};
|
|
29195
|
+
readonly urls: {
|
|
29196
|
+
readonly type: 'array';
|
|
29197
|
+
readonly items: {
|
|
29198
|
+
readonly type: 'string';
|
|
29199
|
+
readonly format: 'uri';
|
|
29200
|
+
};
|
|
29201
|
+
readonly description: 'Include posts that link to any of these URLs.';
|
|
29202
|
+
};
|
|
29203
|
+
readonly embeddedAtUris: {
|
|
29204
|
+
readonly type: 'array';
|
|
29205
|
+
readonly items: {
|
|
29206
|
+
readonly type: 'string';
|
|
29207
|
+
readonly format: 'at-uri';
|
|
29208
|
+
};
|
|
29209
|
+
readonly description: 'Include posts that embed any of these AT URIs.';
|
|
29210
|
+
};
|
|
29211
|
+
readonly hashtags: {
|
|
29212
|
+
readonly type: 'array';
|
|
29213
|
+
readonly items: {
|
|
29214
|
+
readonly type: 'string';
|
|
29215
|
+
readonly maxLength: 640;
|
|
29216
|
+
readonly maxGraphemes: 64;
|
|
29217
|
+
};
|
|
29218
|
+
readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29219
|
+
};
|
|
29220
|
+
readonly excludeAuthors: {
|
|
29221
|
+
readonly type: 'array';
|
|
29222
|
+
readonly items: {
|
|
29223
|
+
readonly type: 'string';
|
|
29224
|
+
readonly format: 'at-identifier';
|
|
29225
|
+
};
|
|
29226
|
+
readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29227
|
+
};
|
|
29228
|
+
readonly excludeMentions: {
|
|
29229
|
+
readonly type: 'array';
|
|
29230
|
+
readonly items: {
|
|
29231
|
+
readonly type: 'string';
|
|
29232
|
+
readonly format: 'at-identifier';
|
|
29233
|
+
};
|
|
29234
|
+
readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29235
|
+
};
|
|
29236
|
+
readonly excludeDomains: {
|
|
29237
|
+
readonly type: 'array';
|
|
29238
|
+
readonly items: {
|
|
29239
|
+
readonly type: 'string';
|
|
29240
|
+
};
|
|
29241
|
+
readonly description: 'Exclude posts that link to any of these domains.';
|
|
29242
|
+
};
|
|
29243
|
+
readonly excludeUrls: {
|
|
29244
|
+
readonly type: 'array';
|
|
29245
|
+
readonly items: {
|
|
29246
|
+
readonly type: 'string';
|
|
29247
|
+
readonly format: 'uri';
|
|
29248
|
+
};
|
|
29249
|
+
readonly description: 'Exclude posts that link to any of these URLs.';
|
|
29250
|
+
};
|
|
29251
|
+
readonly excludeEmbeddedAtUris: {
|
|
29252
|
+
readonly type: 'array';
|
|
29253
|
+
readonly items: {
|
|
29254
|
+
readonly type: 'string';
|
|
29255
|
+
readonly format: 'at-uri';
|
|
29256
|
+
};
|
|
29257
|
+
readonly description: 'Exclude posts that embed any of these AT URIs.';
|
|
29258
|
+
};
|
|
29259
|
+
readonly excludeHashtags: {
|
|
29260
|
+
readonly type: 'array';
|
|
29261
|
+
readonly items: {
|
|
29262
|
+
readonly type: 'string';
|
|
29263
|
+
readonly maxLength: 640;
|
|
29264
|
+
readonly maxGraphemes: 64;
|
|
29265
|
+
};
|
|
29266
|
+
readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29267
|
+
};
|
|
29268
|
+
readonly since: {
|
|
29269
|
+
readonly type: 'string';
|
|
29270
|
+
readonly format: 'datetime';
|
|
29271
|
+
readonly description: 'Include posts indexed at or after this timestamp.';
|
|
29272
|
+
};
|
|
29273
|
+
readonly until: {
|
|
29274
|
+
readonly type: 'string';
|
|
29275
|
+
readonly format: 'datetime';
|
|
29276
|
+
readonly description: 'Include posts indexed before this timestamp. Defaults to the current time.';
|
|
29277
|
+
};
|
|
29278
|
+
readonly allTime: {
|
|
29279
|
+
readonly type: 'boolean';
|
|
29280
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
29281
|
+
};
|
|
29282
|
+
readonly language: {
|
|
29283
|
+
readonly type: 'string';
|
|
29284
|
+
readonly format: 'language';
|
|
29285
|
+
readonly description: 'Include posts whose language matches this language code.';
|
|
29286
|
+
};
|
|
29287
|
+
readonly hasMedia: {
|
|
29288
|
+
readonly type: 'boolean';
|
|
29289
|
+
readonly description: 'Include only posts with media.';
|
|
29290
|
+
};
|
|
29291
|
+
readonly hasVideo: {
|
|
29292
|
+
readonly type: 'boolean';
|
|
29293
|
+
readonly description: 'Include only posts with video.';
|
|
29294
|
+
};
|
|
29295
|
+
readonly replyParentUri: {
|
|
29296
|
+
readonly type: 'string';
|
|
29297
|
+
readonly format: 'at-uri';
|
|
29298
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
29299
|
+
};
|
|
29300
|
+
readonly threadRootUri: {
|
|
29301
|
+
readonly type: 'string';
|
|
29302
|
+
readonly format: 'at-uri';
|
|
29303
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
29304
|
+
};
|
|
29305
|
+
readonly excludeReplies: {
|
|
29306
|
+
readonly type: 'boolean';
|
|
29307
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
29308
|
+
};
|
|
29309
|
+
readonly repliesOnly: {
|
|
29310
|
+
readonly type: 'boolean';
|
|
29311
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
29312
|
+
};
|
|
29313
|
+
readonly following: {
|
|
29314
|
+
readonly type: 'boolean';
|
|
29315
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
29316
|
+
};
|
|
29317
|
+
readonly queryLanguage: {
|
|
29318
|
+
readonly type: 'string';
|
|
29319
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29320
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
29321
|
+
};
|
|
29322
|
+
};
|
|
29323
|
+
};
|
|
29324
|
+
readonly output: {
|
|
29325
|
+
readonly encoding: 'application/json';
|
|
29326
|
+
readonly schema: {
|
|
29327
|
+
readonly type: 'object';
|
|
29328
|
+
readonly required: ["posts"];
|
|
29329
|
+
readonly properties: {
|
|
29330
|
+
readonly cursor: {
|
|
29331
|
+
readonly type: 'string';
|
|
29332
|
+
readonly description: 'Cursor for the next page of results.';
|
|
29333
|
+
};
|
|
29334
|
+
readonly hitsTotal: {
|
|
29335
|
+
readonly type: 'integer';
|
|
29336
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
29337
|
+
};
|
|
29338
|
+
readonly posts: {
|
|
29339
|
+
readonly type: 'array';
|
|
29340
|
+
readonly items: {
|
|
29341
|
+
readonly type: 'ref';
|
|
29342
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
29343
|
+
};
|
|
29344
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
29345
|
+
};
|
|
29346
|
+
readonly detectedQueryLanguages: {
|
|
29347
|
+
readonly type: 'array';
|
|
29348
|
+
readonly items: {
|
|
29349
|
+
readonly type: 'string';
|
|
29350
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29351
|
+
};
|
|
29352
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
29353
|
+
};
|
|
29354
|
+
};
|
|
29355
|
+
};
|
|
29356
|
+
};
|
|
29357
|
+
readonly errors: [{
|
|
29358
|
+
readonly name: 'BadQueryString';
|
|
29359
|
+
}];
|
|
29360
|
+
};
|
|
29361
|
+
};
|
|
28924
29362
|
} | {
|
|
28925
29363
|
readonly lexicon: 1;
|
|
28926
29364
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -33306,7 +33744,7 @@ export declare const schemas: ({
|
|
|
33306
33744
|
readonly knownValues: ["all", "none", "following"];
|
|
33307
33745
|
};
|
|
33308
33746
|
readonly allowGroupInvites: {
|
|
33309
|
-
readonly description: '
|
|
33747
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
33310
33748
|
readonly type: 'string';
|
|
33311
33749
|
readonly knownValues: ["all", "none", "following"];
|
|
33312
33750
|
};
|
|
@@ -33378,12 +33816,11 @@ export declare const schemas: ({
|
|
|
33378
33816
|
};
|
|
33379
33817
|
};
|
|
33380
33818
|
readonly directConvoMember: {
|
|
33381
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33382
33819
|
readonly type: 'object';
|
|
33383
33820
|
readonly properties: {};
|
|
33384
33821
|
};
|
|
33385
33822
|
readonly groupConvoMember: {
|
|
33386
|
-
readonly description: '
|
|
33823
|
+
readonly description: 'A current group convo member.';
|
|
33387
33824
|
readonly type: 'object';
|
|
33388
33825
|
readonly required: ["role"];
|
|
33389
33826
|
readonly properties: {
|
|
@@ -33400,7 +33837,7 @@ export declare const schemas: ({
|
|
|
33400
33837
|
};
|
|
33401
33838
|
};
|
|
33402
33839
|
readonly pastGroupConvoMember: {
|
|
33403
|
-
readonly description: '
|
|
33840
|
+
readonly description: 'A past group convo member.';
|
|
33404
33841
|
readonly type: 'object';
|
|
33405
33842
|
readonly required: [];
|
|
33406
33843
|
readonly properties: {};
|
|
@@ -33701,7 +34138,6 @@ export declare const schemas: ({
|
|
|
33701
34138
|
};
|
|
33702
34139
|
};
|
|
33703
34140
|
readonly systemMessageView: {
|
|
33704
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33705
34141
|
readonly type: 'object';
|
|
33706
34142
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
33707
34143
|
readonly properties: {
|
|
@@ -33722,7 +34158,7 @@ export declare const schemas: ({
|
|
|
33722
34158
|
};
|
|
33723
34159
|
};
|
|
33724
34160
|
readonly systemMessageDataAddMember: {
|
|
33725
|
-
readonly description: '
|
|
34161
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
33726
34162
|
readonly type: 'object';
|
|
33727
34163
|
readonly required: ["member", "role", "addedBy"];
|
|
33728
34164
|
readonly properties: {
|
|
@@ -33743,7 +34179,7 @@ export declare const schemas: ({
|
|
|
33743
34179
|
};
|
|
33744
34180
|
};
|
|
33745
34181
|
readonly systemMessageDataRemoveMember: {
|
|
33746
|
-
readonly description: '
|
|
34182
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
33747
34183
|
readonly type: 'object';
|
|
33748
34184
|
readonly required: ["member", "removedBy"];
|
|
33749
34185
|
readonly properties: {
|
|
@@ -33759,7 +34195,7 @@ export declare const schemas: ({
|
|
|
33759
34195
|
};
|
|
33760
34196
|
};
|
|
33761
34197
|
readonly systemMessageDataMemberJoin: {
|
|
33762
|
-
readonly description: '
|
|
34198
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
33763
34199
|
readonly type: 'object';
|
|
33764
34200
|
readonly required: ["member", "role"];
|
|
33765
34201
|
readonly properties: {
|
|
@@ -33781,7 +34217,7 @@ export declare const schemas: ({
|
|
|
33781
34217
|
};
|
|
33782
34218
|
};
|
|
33783
34219
|
readonly systemMessageDataMemberLeave: {
|
|
33784
|
-
readonly description: '
|
|
34220
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
33785
34221
|
readonly type: 'object';
|
|
33786
34222
|
readonly required: ["member"];
|
|
33787
34223
|
readonly properties: {
|
|
@@ -33793,7 +34229,7 @@ export declare const schemas: ({
|
|
|
33793
34229
|
};
|
|
33794
34230
|
};
|
|
33795
34231
|
readonly systemMessageDataLockConvo: {
|
|
33796
|
-
readonly description: '
|
|
34232
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
33797
34233
|
readonly type: 'object';
|
|
33798
34234
|
readonly required: ["lockedBy"];
|
|
33799
34235
|
readonly properties: {
|
|
@@ -33805,7 +34241,7 @@ export declare const schemas: ({
|
|
|
33805
34241
|
};
|
|
33806
34242
|
};
|
|
33807
34243
|
readonly systemMessageDataUnlockConvo: {
|
|
33808
|
-
readonly description: '
|
|
34244
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
33809
34245
|
readonly type: 'object';
|
|
33810
34246
|
readonly required: ["unlockedBy"];
|
|
33811
34247
|
readonly properties: {
|
|
@@ -33817,7 +34253,7 @@ export declare const schemas: ({
|
|
|
33817
34253
|
};
|
|
33818
34254
|
};
|
|
33819
34255
|
readonly systemMessageDataLockConvoPermanently: {
|
|
33820
|
-
readonly description: '
|
|
34256
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
33821
34257
|
readonly type: 'object';
|
|
33822
34258
|
readonly required: ["lockedBy"];
|
|
33823
34259
|
readonly properties: {
|
|
@@ -33829,7 +34265,7 @@ export declare const schemas: ({
|
|
|
33829
34265
|
};
|
|
33830
34266
|
};
|
|
33831
34267
|
readonly systemMessageDataEditGroup: {
|
|
33832
|
-
readonly description: '
|
|
34268
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
33833
34269
|
readonly type: 'object';
|
|
33834
34270
|
readonly properties: {
|
|
33835
34271
|
readonly oldName: {
|
|
@@ -33843,22 +34279,22 @@ export declare const schemas: ({
|
|
|
33843
34279
|
};
|
|
33844
34280
|
};
|
|
33845
34281
|
readonly systemMessageDataCreateJoinLink: {
|
|
33846
|
-
readonly description: '
|
|
34282
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
33847
34283
|
readonly type: 'object';
|
|
33848
34284
|
readonly properties: {};
|
|
33849
34285
|
};
|
|
33850
34286
|
readonly systemMessageDataEditJoinLink: {
|
|
33851
|
-
readonly description: '
|
|
34287
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
33852
34288
|
readonly type: 'object';
|
|
33853
34289
|
readonly properties: {};
|
|
33854
34290
|
};
|
|
33855
34291
|
readonly systemMessageDataEnableJoinLink: {
|
|
33856
|
-
readonly description: '
|
|
34292
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
33857
34293
|
readonly type: 'object';
|
|
33858
34294
|
readonly properties: {};
|
|
33859
34295
|
};
|
|
33860
34296
|
readonly systemMessageDataDisableJoinLink: {
|
|
33861
|
-
readonly description: '
|
|
34297
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
33862
34298
|
readonly type: 'object';
|
|
33863
34299
|
readonly properties: {};
|
|
33864
34300
|
};
|
|
@@ -33978,12 +34414,10 @@ export declare const schemas: ({
|
|
|
33978
34414
|
};
|
|
33979
34415
|
};
|
|
33980
34416
|
readonly directConvo: {
|
|
33981
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33982
34417
|
readonly type: 'object';
|
|
33983
34418
|
readonly properties: {};
|
|
33984
34419
|
};
|
|
33985
34420
|
readonly groupConvo: {
|
|
33986
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33987
34421
|
readonly type: 'object';
|
|
33988
34422
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
33989
34423
|
readonly properties: {
|
|
@@ -34211,7 +34645,7 @@ export declare const schemas: ({
|
|
|
34211
34645
|
};
|
|
34212
34646
|
};
|
|
34213
34647
|
readonly logReadConvo: {
|
|
34214
|
-
readonly description: '
|
|
34648
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
34215
34649
|
readonly type: 'object';
|
|
34216
34650
|
readonly required: ["rev", "convoId", "message"];
|
|
34217
34651
|
readonly properties: {
|
|
@@ -34228,7 +34662,7 @@ export declare const schemas: ({
|
|
|
34228
34662
|
};
|
|
34229
34663
|
};
|
|
34230
34664
|
readonly logAddMember: {
|
|
34231
|
-
readonly description: '
|
|
34665
|
+
readonly description: 'Event indicating a member was added to a group convo. The member who was added gets a logBeginConvo (to create the convo) but also a logAddMember (to show the system message as the first message the user sees).';
|
|
34232
34666
|
readonly type: 'object';
|
|
34233
34667
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34234
34668
|
readonly properties: {
|
|
@@ -34254,7 +34688,7 @@ export declare const schemas: ({
|
|
|
34254
34688
|
};
|
|
34255
34689
|
};
|
|
34256
34690
|
readonly logRemoveMember: {
|
|
34257
|
-
readonly description: "
|
|
34691
|
+
readonly description: "Event indicating a member was removed from a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logRemoveMember (because they already left, so can't see the system message).";
|
|
34258
34692
|
readonly type: 'object';
|
|
34259
34693
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34260
34694
|
readonly properties: {
|
|
@@ -34280,7 +34714,7 @@ export declare const schemas: ({
|
|
|
34280
34714
|
};
|
|
34281
34715
|
};
|
|
34282
34716
|
readonly logMemberJoin: {
|
|
34283
|
-
readonly description: '
|
|
34717
|
+
readonly description: 'Event indicating a member joined a group convo via join link. The member who was added gets a logBeginConvo (to create the convo) but also a logMemberJoin (to show the system message as the first message the user sees).';
|
|
34284
34718
|
readonly type: 'object';
|
|
34285
34719
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34286
34720
|
readonly properties: {
|
|
@@ -34306,7 +34740,7 @@ export declare const schemas: ({
|
|
|
34306
34740
|
};
|
|
34307
34741
|
};
|
|
34308
34742
|
readonly logMemberLeave: {
|
|
34309
|
-
readonly description: "
|
|
34743
|
+
readonly description: "Event indicating a member voluntarily left a group convo. The member who was removed gets a logLeaveConvo (to leave the convo) but not a logMemberLeave (because they already left, so can't see the system message).";
|
|
34310
34744
|
readonly type: 'object';
|
|
34311
34745
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34312
34746
|
readonly properties: {
|
|
@@ -34332,7 +34766,7 @@ export declare const schemas: ({
|
|
|
34332
34766
|
};
|
|
34333
34767
|
};
|
|
34334
34768
|
readonly logLockConvo: {
|
|
34335
|
-
readonly description: '
|
|
34769
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
34336
34770
|
readonly type: 'object';
|
|
34337
34771
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34338
34772
|
readonly properties: {
|
|
@@ -34358,7 +34792,7 @@ export declare const schemas: ({
|
|
|
34358
34792
|
};
|
|
34359
34793
|
};
|
|
34360
34794
|
readonly logUnlockConvo: {
|
|
34361
|
-
readonly description: '
|
|
34795
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
34362
34796
|
readonly type: 'object';
|
|
34363
34797
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34364
34798
|
readonly properties: {
|
|
@@ -34384,7 +34818,7 @@ export declare const schemas: ({
|
|
|
34384
34818
|
};
|
|
34385
34819
|
};
|
|
34386
34820
|
readonly logLockConvoPermanently: {
|
|
34387
|
-
readonly description: '
|
|
34821
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
34388
34822
|
readonly type: 'object';
|
|
34389
34823
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34390
34824
|
readonly properties: {
|
|
@@ -34410,7 +34844,7 @@ export declare const schemas: ({
|
|
|
34410
34844
|
};
|
|
34411
34845
|
};
|
|
34412
34846
|
readonly logEditGroup: {
|
|
34413
|
-
readonly description: '
|
|
34847
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
34414
34848
|
readonly type: 'object';
|
|
34415
34849
|
readonly required: ["rev", "convoId", "message"];
|
|
34416
34850
|
readonly properties: {
|
|
@@ -34428,7 +34862,7 @@ export declare const schemas: ({
|
|
|
34428
34862
|
};
|
|
34429
34863
|
};
|
|
34430
34864
|
readonly logCreateJoinLink: {
|
|
34431
|
-
readonly description: '
|
|
34865
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
34432
34866
|
readonly type: 'object';
|
|
34433
34867
|
readonly required: ["rev", "convoId", "message"];
|
|
34434
34868
|
readonly properties: {
|
|
@@ -34446,7 +34880,7 @@ export declare const schemas: ({
|
|
|
34446
34880
|
};
|
|
34447
34881
|
};
|
|
34448
34882
|
readonly logEditJoinLink: {
|
|
34449
|
-
readonly description: '
|
|
34883
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
34450
34884
|
readonly type: 'object';
|
|
34451
34885
|
readonly required: ["rev", "convoId", "message"];
|
|
34452
34886
|
readonly properties: {
|
|
@@ -34464,7 +34898,7 @@ export declare const schemas: ({
|
|
|
34464
34898
|
};
|
|
34465
34899
|
};
|
|
34466
34900
|
readonly logEnableJoinLink: {
|
|
34467
|
-
readonly description: '
|
|
34901
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
34468
34902
|
readonly type: 'object';
|
|
34469
34903
|
readonly required: ["rev", "convoId", "message"];
|
|
34470
34904
|
readonly properties: {
|
|
@@ -34482,7 +34916,7 @@ export declare const schemas: ({
|
|
|
34482
34916
|
};
|
|
34483
34917
|
};
|
|
34484
34918
|
readonly logDisableJoinLink: {
|
|
34485
|
-
readonly description: '
|
|
34919
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
34486
34920
|
readonly type: 'object';
|
|
34487
34921
|
readonly required: ["rev", "convoId", "message"];
|
|
34488
34922
|
readonly properties: {
|
|
@@ -34500,7 +34934,7 @@ export declare const schemas: ({
|
|
|
34500
34934
|
};
|
|
34501
34935
|
};
|
|
34502
34936
|
readonly logIncomingJoinRequest: {
|
|
34503
|
-
readonly description: '
|
|
34937
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
34504
34938
|
readonly type: 'object';
|
|
34505
34939
|
readonly required: ["rev", "convoId", "member"];
|
|
34506
34940
|
readonly properties: {
|
|
@@ -34518,7 +34952,7 @@ export declare const schemas: ({
|
|
|
34518
34952
|
};
|
|
34519
34953
|
};
|
|
34520
34954
|
readonly logApproveJoinRequest: {
|
|
34521
|
-
readonly description: '
|
|
34955
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
34522
34956
|
readonly type: 'object';
|
|
34523
34957
|
readonly required: ["rev", "convoId", "member"];
|
|
34524
34958
|
readonly properties: {
|
|
@@ -34536,7 +34970,7 @@ export declare const schemas: ({
|
|
|
34536
34970
|
};
|
|
34537
34971
|
};
|
|
34538
34972
|
readonly logRejectJoinRequest: {
|
|
34539
|
-
readonly description: '
|
|
34973
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
34540
34974
|
readonly type: 'object';
|
|
34541
34975
|
readonly required: ["rev", "convoId", "member"];
|
|
34542
34976
|
readonly properties: {
|
|
@@ -34554,7 +34988,7 @@ export declare const schemas: ({
|
|
|
34554
34988
|
};
|
|
34555
34989
|
};
|
|
34556
34990
|
readonly logOutgoingJoinRequest: {
|
|
34557
|
-
readonly description: '
|
|
34991
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
34558
34992
|
readonly type: 'object';
|
|
34559
34993
|
readonly required: ["rev", "convoId"];
|
|
34560
34994
|
readonly properties: {
|
|
@@ -34567,7 +35001,7 @@ export declare const schemas: ({
|
|
|
34567
35001
|
};
|
|
34568
35002
|
};
|
|
34569
35003
|
readonly logWithdrawIncomingJoinRequest: {
|
|
34570
|
-
readonly description: '
|
|
35004
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
34571
35005
|
readonly type: 'object';
|
|
34572
35006
|
readonly required: ["rev", "convoId", "member"];
|
|
34573
35007
|
readonly properties: {
|
|
@@ -34585,7 +35019,7 @@ export declare const schemas: ({
|
|
|
34585
35019
|
};
|
|
34586
35020
|
};
|
|
34587
35021
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
34588
|
-
readonly description: '
|
|
35022
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
34589
35023
|
readonly type: 'object';
|
|
34590
35024
|
readonly required: ["rev", "convoId"];
|
|
34591
35025
|
readonly properties: {
|
|
@@ -34598,7 +35032,7 @@ export declare const schemas: ({
|
|
|
34598
35032
|
};
|
|
34599
35033
|
};
|
|
34600
35034
|
readonly logReadJoinRequests: {
|
|
34601
|
-
readonly description: '
|
|
35035
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
34602
35036
|
readonly type: 'object';
|
|
34603
35037
|
readonly required: ["rev", "convoId"];
|
|
34604
35038
|
readonly properties: {
|
|
@@ -34920,7 +35354,7 @@ export declare const schemas: ({
|
|
|
34920
35354
|
readonly defs: {
|
|
34921
35355
|
readonly main: {
|
|
34922
35356
|
readonly type: 'query';
|
|
34923
|
-
readonly description: "
|
|
35357
|
+
readonly description: "Returns unread conversation counts for conversations that are unlocked, not muted, split by convo status. Direct convos are excluded when a block relationship exists between the actor and the other member, or when the other member's account is deleted or deactivated. Group convos are considered unread if they have unread join request counts.";
|
|
34924
35358
|
readonly parameters: {
|
|
34925
35359
|
readonly type: 'params';
|
|
34926
35360
|
readonly properties: {
|
|
@@ -34998,7 +35432,7 @@ export declare const schemas: ({
|
|
|
34998
35432
|
readonly defs: {
|
|
34999
35433
|
readonly main: {
|
|
35000
35434
|
readonly type: 'query';
|
|
35001
|
-
readonly description: '
|
|
35435
|
+
readonly description: 'Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView.';
|
|
35002
35436
|
readonly parameters: {
|
|
35003
35437
|
readonly type: 'params';
|
|
35004
35438
|
readonly properties: {
|
|
@@ -35101,7 +35535,7 @@ export declare const schemas: ({
|
|
|
35101
35535
|
readonly defs: {
|
|
35102
35536
|
readonly main: {
|
|
35103
35537
|
readonly type: 'procedure';
|
|
35104
|
-
readonly description: '
|
|
35538
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
35105
35539
|
readonly errors: [{
|
|
35106
35540
|
readonly name: 'ConvoLocked';
|
|
35107
35541
|
}, {
|
|
@@ -35336,7 +35770,7 @@ export declare const schemas: ({
|
|
|
35336
35770
|
readonly defs: {
|
|
35337
35771
|
readonly main: {
|
|
35338
35772
|
readonly type: 'procedure';
|
|
35339
|
-
readonly description: '
|
|
35773
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
35340
35774
|
readonly errors: [{
|
|
35341
35775
|
readonly name: 'InvalidConvo';
|
|
35342
35776
|
}, {
|
|
@@ -35485,7 +35919,7 @@ export declare const schemas: ({
|
|
|
35485
35919
|
} | {
|
|
35486
35920
|
readonly lexicon: 1;
|
|
35487
35921
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
35488
|
-
readonly description: '
|
|
35922
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
35489
35923
|
readonly defs: {
|
|
35490
35924
|
readonly main: {
|
|
35491
35925
|
readonly type: 'object';
|
|
@@ -35514,7 +35948,7 @@ export declare const schemas: ({
|
|
|
35514
35948
|
readonly defs: {
|
|
35515
35949
|
readonly main: {
|
|
35516
35950
|
readonly type: 'procedure';
|
|
35517
|
-
readonly description: "
|
|
35951
|
+
readonly description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
|
|
35518
35952
|
readonly errors: [{
|
|
35519
35953
|
readonly name: 'AccountSuspended';
|
|
35520
35954
|
}, {
|
|
@@ -35584,7 +36018,7 @@ export declare const schemas: ({
|
|
|
35584
36018
|
readonly defs: {
|
|
35585
36019
|
readonly main: {
|
|
35586
36020
|
readonly type: 'procedure';
|
|
35587
|
-
readonly description: '
|
|
36021
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
35588
36022
|
readonly errors: [{
|
|
35589
36023
|
readonly name: 'InvalidConvo';
|
|
35590
36024
|
}, {
|
|
@@ -35629,7 +36063,7 @@ export declare const schemas: ({
|
|
|
35629
36063
|
readonly defs: {
|
|
35630
36064
|
readonly main: {
|
|
35631
36065
|
readonly type: 'procedure';
|
|
35632
|
-
readonly description: "
|
|
36066
|
+
readonly description: "Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'.";
|
|
35633
36067
|
readonly errors: [{
|
|
35634
36068
|
readonly name: 'AccountSuspended';
|
|
35635
36069
|
}, {
|
|
@@ -35689,7 +36123,7 @@ export declare const schemas: ({
|
|
|
35689
36123
|
readonly defs: {
|
|
35690
36124
|
readonly main: {
|
|
35691
36125
|
readonly type: 'procedure';
|
|
35692
|
-
readonly description: '
|
|
36126
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
35693
36127
|
readonly errors: [{
|
|
35694
36128
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
35695
36129
|
}, {
|
|
@@ -35735,7 +36169,6 @@ export declare const schemas: ({
|
|
|
35735
36169
|
} | {
|
|
35736
36170
|
readonly lexicon: 1;
|
|
35737
36171
|
readonly id: 'chat.bsky.group.defs';
|
|
35738
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
35739
36172
|
readonly defs: {
|
|
35740
36173
|
readonly linkEnabledStatus: {
|
|
35741
36174
|
readonly type: 'string';
|
|
@@ -35893,7 +36326,7 @@ export declare const schemas: ({
|
|
|
35893
36326
|
readonly defs: {
|
|
35894
36327
|
readonly main: {
|
|
35895
36328
|
readonly type: 'procedure';
|
|
35896
|
-
readonly description: '
|
|
36329
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
35897
36330
|
readonly errors: [{
|
|
35898
36331
|
readonly name: 'InvalidConvo';
|
|
35899
36332
|
}, {
|
|
@@ -35934,7 +36367,7 @@ export declare const schemas: ({
|
|
|
35934
36367
|
readonly defs: {
|
|
35935
36368
|
readonly main: {
|
|
35936
36369
|
readonly type: 'procedure';
|
|
35937
|
-
readonly description: '
|
|
36370
|
+
readonly description: 'Edits group settings.';
|
|
35938
36371
|
readonly errors: [{
|
|
35939
36372
|
readonly name: 'ConvoLocked';
|
|
35940
36373
|
}, {
|
|
@@ -35981,7 +36414,7 @@ export declare const schemas: ({
|
|
|
35981
36414
|
readonly defs: {
|
|
35982
36415
|
readonly main: {
|
|
35983
36416
|
readonly type: 'procedure';
|
|
35984
|
-
readonly description: '
|
|
36417
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
35985
36418
|
readonly errors: [{
|
|
35986
36419
|
readonly name: 'InvalidConvo';
|
|
35987
36420
|
}, {
|
|
@@ -36029,7 +36462,7 @@ export declare const schemas: ({
|
|
|
36029
36462
|
readonly defs: {
|
|
36030
36463
|
readonly main: {
|
|
36031
36464
|
readonly type: 'procedure';
|
|
36032
|
-
readonly description: '
|
|
36465
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
36033
36466
|
readonly errors: [{
|
|
36034
36467
|
readonly name: 'InvalidConvo';
|
|
36035
36468
|
}, {
|
|
@@ -36072,7 +36505,7 @@ export declare const schemas: ({
|
|
|
36072
36505
|
readonly defs: {
|
|
36073
36506
|
readonly main: {
|
|
36074
36507
|
readonly type: 'query';
|
|
36075
|
-
readonly description: "
|
|
36508
|
+
readonly description: "Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.";
|
|
36076
36509
|
readonly parameters: {
|
|
36077
36510
|
readonly type: 'params';
|
|
36078
36511
|
readonly required: ["codes"];
|
|
@@ -36111,7 +36544,7 @@ export declare const schemas: ({
|
|
|
36111
36544
|
readonly defs: {
|
|
36112
36545
|
readonly main: {
|
|
36113
36546
|
readonly type: 'query';
|
|
36114
|
-
readonly description: "
|
|
36547
|
+
readonly description: "Lists a page of request to join a group (via join link) the user owns. Shows the data from the owner's point of view.";
|
|
36115
36548
|
readonly errors: [{
|
|
36116
36549
|
readonly name: 'InvalidConvo';
|
|
36117
36550
|
}, {
|
|
@@ -36162,7 +36595,7 @@ export declare const schemas: ({
|
|
|
36162
36595
|
readonly defs: {
|
|
36163
36596
|
readonly main: {
|
|
36164
36597
|
readonly type: 'query';
|
|
36165
|
-
readonly description: '
|
|
36598
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
36166
36599
|
readonly parameters: {
|
|
36167
36600
|
readonly type: 'params';
|
|
36168
36601
|
readonly required: ["subject"];
|
|
@@ -36209,7 +36642,7 @@ export declare const schemas: ({
|
|
|
36209
36642
|
readonly defs: {
|
|
36210
36643
|
readonly main: {
|
|
36211
36644
|
readonly type: 'procedure';
|
|
36212
|
-
readonly description: '
|
|
36645
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
36213
36646
|
readonly errors: [{
|
|
36214
36647
|
readonly name: 'InvalidConvo';
|
|
36215
36648
|
}, {
|
|
@@ -36247,7 +36680,7 @@ export declare const schemas: ({
|
|
|
36247
36680
|
readonly defs: {
|
|
36248
36681
|
readonly main: {
|
|
36249
36682
|
readonly type: 'procedure';
|
|
36250
|
-
readonly description: "
|
|
36683
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
36251
36684
|
readonly errors: [{
|
|
36252
36685
|
readonly name: 'InvalidConvo';
|
|
36253
36686
|
}, {
|
|
@@ -36294,7 +36727,7 @@ export declare const schemas: ({
|
|
|
36294
36727
|
readonly defs: {
|
|
36295
36728
|
readonly main: {
|
|
36296
36729
|
readonly type: 'procedure';
|
|
36297
|
-
readonly description: '
|
|
36730
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
36298
36731
|
readonly errors: [{
|
|
36299
36732
|
readonly name: 'ConvoLocked';
|
|
36300
36733
|
}, {
|
|
@@ -36346,7 +36779,7 @@ export declare const schemas: ({
|
|
|
36346
36779
|
readonly defs: {
|
|
36347
36780
|
readonly main: {
|
|
36348
36781
|
readonly type: 'procedure';
|
|
36349
|
-
readonly description: '
|
|
36782
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
36350
36783
|
readonly errors: [{
|
|
36351
36784
|
readonly name: 'InvalidConvo';
|
|
36352
36785
|
}, {
|
|
@@ -36380,7 +36813,7 @@ export declare const schemas: ({
|
|
|
36380
36813
|
readonly defs: {
|
|
36381
36814
|
readonly main: {
|
|
36382
36815
|
readonly type: 'procedure';
|
|
36383
|
-
readonly description: '
|
|
36816
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
36384
36817
|
readonly errors: [{
|
|
36385
36818
|
readonly name: 'InvalidJoinRequest';
|
|
36386
36819
|
}];
|
|
@@ -36411,7 +36844,7 @@ export declare const schemas: ({
|
|
|
36411
36844
|
readonly id: 'chat.bsky.moderation.defs';
|
|
36412
36845
|
readonly defs: {
|
|
36413
36846
|
readonly convoView: {
|
|
36414
|
-
readonly description: '
|
|
36847
|
+
readonly description: 'A view of a conversation for moderation purposes. Unlike chat.bsky.convo.defs#convoView, it does not include viewer-specific data (such as muted, unreadCount, status, lastMessage, lastReaction), since the requester is a moderator and not a member of the conversation. The member list is not included; use chat.bsky.moderation.getConvoMembers to list members.';
|
|
36415
36848
|
readonly type: 'object';
|
|
36416
36849
|
readonly required: ["id", "rev"];
|
|
36417
36850
|
readonly properties: {
|
|
@@ -36429,12 +36862,12 @@ export declare const schemas: ({
|
|
|
36429
36862
|
};
|
|
36430
36863
|
};
|
|
36431
36864
|
readonly directConvo: {
|
|
36432
|
-
readonly description: '
|
|
36865
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
36433
36866
|
readonly type: 'object';
|
|
36434
36867
|
readonly properties: {};
|
|
36435
36868
|
};
|
|
36436
36869
|
readonly groupConvo: {
|
|
36437
|
-
readonly description: '
|
|
36870
|
+
readonly description: 'Data specific to a group conversation, for moderation purposes. Unlike chat.bsky.convo.defs#groupConvo, it does not include viewer-specific data (such as unreadJoinRequestCount), since the requester is a moderator and not a member of the conversation.';
|
|
36438
36871
|
readonly type: 'object';
|
|
36439
36872
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
36440
36873
|
readonly properties: {
|
|
@@ -36535,7 +36968,7 @@ export declare const schemas: ({
|
|
|
36535
36968
|
readonly defs: {
|
|
36536
36969
|
readonly main: {
|
|
36537
36970
|
readonly type: 'query';
|
|
36538
|
-
readonly description: '
|
|
36971
|
+
readonly description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
|
|
36539
36972
|
readonly errors: [{
|
|
36540
36973
|
readonly name: 'InvalidConvo';
|
|
36541
36974
|
}];
|
|
@@ -36569,7 +37002,7 @@ export declare const schemas: ({
|
|
|
36569
37002
|
readonly defs: {
|
|
36570
37003
|
readonly main: {
|
|
36571
37004
|
readonly type: 'query';
|
|
36572
|
-
readonly description: '
|
|
37005
|
+
readonly description: 'Returns a paginated list of members from a conversation, for moderation purposes. Does not require the requester to be a member of the conversation.';
|
|
36573
37006
|
readonly errors: [{
|
|
36574
37007
|
readonly name: 'InvalidConvo';
|
|
36575
37008
|
}];
|
|
@@ -36618,7 +37051,7 @@ export declare const schemas: ({
|
|
|
36618
37051
|
readonly defs: {
|
|
36619
37052
|
readonly main: {
|
|
36620
37053
|
readonly type: 'query';
|
|
36621
|
-
readonly description: '
|
|
37054
|
+
readonly description: 'Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.';
|
|
36622
37055
|
readonly parameters: {
|
|
36623
37056
|
readonly type: 'params';
|
|
36624
37057
|
readonly required: ["convoIds"];
|
|
@@ -47934,6 +48367,7 @@ export declare const ids: {
|
|
|
47934
48367
|
readonly AppBskyFeedPostgate: 'app.bsky.feed.postgate';
|
|
47935
48368
|
readonly AppBskyFeedRepost: 'app.bsky.feed.repost';
|
|
47936
48369
|
readonly AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts';
|
|
48370
|
+
readonly AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2';
|
|
47937
48371
|
readonly AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions';
|
|
47938
48372
|
readonly AppBskyFeedThreadgate: 'app.bsky.feed.threadgate';
|
|
47939
48373
|
readonly AppBskyGraphBlock: 'app.bsky.graph.block';
|