@atproto/ozone 0.2.6 → 0.2.7
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 +19 -0
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +602 -140
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +304 -69
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts +87 -0
- package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js +5 -0
- package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js.map +1 -0
- package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts +1 -1
- package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/declaration.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +2 -3
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +39 -36
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts +2 -2
- package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts +3 -3
- package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/moderation/defs.js.map +1 -1
- package/package.json +13 -13
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -4866,6 +4866,237 @@ 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: [];
|
|
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 description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
4999
|
+
};
|
|
5000
|
+
readonly until: {
|
|
5001
|
+
readonly type: 'string';
|
|
5002
|
+
readonly description: 'Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
5003
|
+
};
|
|
5004
|
+
readonly allTime: {
|
|
5005
|
+
readonly type: 'boolean';
|
|
5006
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
5007
|
+
};
|
|
5008
|
+
readonly languages: {
|
|
5009
|
+
readonly type: 'array';
|
|
5010
|
+
readonly items: {
|
|
5011
|
+
readonly type: 'string';
|
|
5012
|
+
readonly format: 'language';
|
|
5013
|
+
};
|
|
5014
|
+
readonly description: 'Include posts whose language matches any of these language codes.';
|
|
5015
|
+
};
|
|
5016
|
+
readonly excludeLanguages: {
|
|
5017
|
+
readonly type: 'array';
|
|
5018
|
+
readonly items: {
|
|
5019
|
+
readonly type: 'string';
|
|
5020
|
+
readonly format: 'language';
|
|
5021
|
+
};
|
|
5022
|
+
readonly description: 'Exclude posts whose language matches any of these language codes.';
|
|
5023
|
+
};
|
|
5024
|
+
readonly hasMedia: {
|
|
5025
|
+
readonly type: 'boolean';
|
|
5026
|
+
readonly description: 'Include only posts with media.';
|
|
5027
|
+
};
|
|
5028
|
+
readonly hasVideo: {
|
|
5029
|
+
readonly type: 'boolean';
|
|
5030
|
+
readonly description: 'Include only posts with video.';
|
|
5031
|
+
};
|
|
5032
|
+
readonly replyParentUri: {
|
|
5033
|
+
readonly type: 'string';
|
|
5034
|
+
readonly format: 'at-uri';
|
|
5035
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
5036
|
+
};
|
|
5037
|
+
readonly threadRootUri: {
|
|
5038
|
+
readonly type: 'string';
|
|
5039
|
+
readonly format: 'at-uri';
|
|
5040
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
5041
|
+
};
|
|
5042
|
+
readonly excludeReplies: {
|
|
5043
|
+
readonly type: 'boolean';
|
|
5044
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
5045
|
+
};
|
|
5046
|
+
readonly repliesOnly: {
|
|
5047
|
+
readonly type: 'boolean';
|
|
5048
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
5049
|
+
};
|
|
5050
|
+
readonly following: {
|
|
5051
|
+
readonly type: 'boolean';
|
|
5052
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
5053
|
+
};
|
|
5054
|
+
readonly queryLanguage: {
|
|
5055
|
+
readonly type: 'string';
|
|
5056
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5057
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
5058
|
+
};
|
|
5059
|
+
};
|
|
5060
|
+
};
|
|
5061
|
+
readonly output: {
|
|
5062
|
+
readonly encoding: 'application/json';
|
|
5063
|
+
readonly schema: {
|
|
5064
|
+
readonly type: 'object';
|
|
5065
|
+
readonly required: ["posts"];
|
|
5066
|
+
readonly properties: {
|
|
5067
|
+
readonly cursor: {
|
|
5068
|
+
readonly type: 'string';
|
|
5069
|
+
readonly description: 'Cursor for the next page of results.';
|
|
5070
|
+
};
|
|
5071
|
+
readonly hitsTotal: {
|
|
5072
|
+
readonly type: 'integer';
|
|
5073
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
5074
|
+
};
|
|
5075
|
+
readonly posts: {
|
|
5076
|
+
readonly type: 'array';
|
|
5077
|
+
readonly items: {
|
|
5078
|
+
readonly type: 'ref';
|
|
5079
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
5080
|
+
};
|
|
5081
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
5082
|
+
};
|
|
5083
|
+
readonly detectedQueryLanguages: {
|
|
5084
|
+
readonly type: 'array';
|
|
5085
|
+
readonly items: {
|
|
5086
|
+
readonly type: 'string';
|
|
5087
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5088
|
+
};
|
|
5089
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
5090
|
+
};
|
|
5091
|
+
};
|
|
5092
|
+
};
|
|
5093
|
+
};
|
|
5094
|
+
readonly errors: [{
|
|
5095
|
+
readonly name: 'BadQueryString';
|
|
5096
|
+
}];
|
|
5097
|
+
};
|
|
5098
|
+
};
|
|
5099
|
+
};
|
|
4869
5100
|
readonly AppBskyFeedSendInteractions: {
|
|
4870
5101
|
readonly lexicon: 1;
|
|
4871
5102
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -9335,7 +9566,7 @@ export declare const schemaDict: {
|
|
|
9335
9566
|
readonly knownValues: ["all", "none", "following"];
|
|
9336
9567
|
};
|
|
9337
9568
|
readonly allowGroupInvites: {
|
|
9338
|
-
readonly description: '
|
|
9569
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
9339
9570
|
readonly type: 'string';
|
|
9340
9571
|
readonly knownValues: ["all", "none", "following"];
|
|
9341
9572
|
};
|
|
@@ -9408,12 +9639,11 @@ export declare const schemaDict: {
|
|
|
9408
9639
|
};
|
|
9409
9640
|
};
|
|
9410
9641
|
readonly directConvoMember: {
|
|
9411
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9412
9642
|
readonly type: 'object';
|
|
9413
9643
|
readonly properties: {};
|
|
9414
9644
|
};
|
|
9415
9645
|
readonly groupConvoMember: {
|
|
9416
|
-
readonly description: '
|
|
9646
|
+
readonly description: 'A current group convo member.';
|
|
9417
9647
|
readonly type: 'object';
|
|
9418
9648
|
readonly required: ["role"];
|
|
9419
9649
|
readonly properties: {
|
|
@@ -9430,7 +9660,7 @@ export declare const schemaDict: {
|
|
|
9430
9660
|
};
|
|
9431
9661
|
};
|
|
9432
9662
|
readonly pastGroupConvoMember: {
|
|
9433
|
-
readonly description: '
|
|
9663
|
+
readonly description: 'A past group convo member.';
|
|
9434
9664
|
readonly type: 'object';
|
|
9435
9665
|
readonly required: [];
|
|
9436
9666
|
readonly properties: {};
|
|
@@ -9714,7 +9944,7 @@ export declare const schemaDict: {
|
|
|
9714
9944
|
readonly replyTo: {
|
|
9715
9945
|
readonly description: "If set, the message this message is replying to. The full view of the referenced message is embedded so the client can render it inline. Only a single level is embedded: the embedded message will not itself have a populated 'replyTo' field even if it was also a reply.";
|
|
9716
9946
|
readonly type: 'union';
|
|
9717
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
9947
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView"];
|
|
9718
9948
|
};
|
|
9719
9949
|
readonly sender: {
|
|
9720
9950
|
readonly type: 'ref';
|
|
@@ -9737,7 +9967,6 @@ export declare const schemaDict: {
|
|
|
9737
9967
|
};
|
|
9738
9968
|
};
|
|
9739
9969
|
readonly systemMessageView: {
|
|
9740
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9741
9970
|
readonly type: 'object';
|
|
9742
9971
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
9743
9972
|
readonly properties: {
|
|
@@ -9758,7 +9987,7 @@ export declare const schemaDict: {
|
|
|
9758
9987
|
};
|
|
9759
9988
|
};
|
|
9760
9989
|
readonly systemMessageDataAddMember: {
|
|
9761
|
-
readonly description: '
|
|
9990
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
9762
9991
|
readonly type: 'object';
|
|
9763
9992
|
readonly required: ["member", "role", "addedBy"];
|
|
9764
9993
|
readonly properties: {
|
|
@@ -9779,7 +10008,7 @@ export declare const schemaDict: {
|
|
|
9779
10008
|
};
|
|
9780
10009
|
};
|
|
9781
10010
|
readonly systemMessageDataRemoveMember: {
|
|
9782
|
-
readonly description: '
|
|
10011
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
9783
10012
|
readonly type: 'object';
|
|
9784
10013
|
readonly required: ["member", "removedBy"];
|
|
9785
10014
|
readonly properties: {
|
|
@@ -9795,7 +10024,7 @@ export declare const schemaDict: {
|
|
|
9795
10024
|
};
|
|
9796
10025
|
};
|
|
9797
10026
|
readonly systemMessageDataMemberJoin: {
|
|
9798
|
-
readonly description: '
|
|
10027
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
9799
10028
|
readonly type: 'object';
|
|
9800
10029
|
readonly required: ["member", "role"];
|
|
9801
10030
|
readonly properties: {
|
|
@@ -9817,7 +10046,7 @@ export declare const schemaDict: {
|
|
|
9817
10046
|
};
|
|
9818
10047
|
};
|
|
9819
10048
|
readonly systemMessageDataMemberLeave: {
|
|
9820
|
-
readonly description: '
|
|
10049
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
9821
10050
|
readonly type: 'object';
|
|
9822
10051
|
readonly required: ["member"];
|
|
9823
10052
|
readonly properties: {
|
|
@@ -9829,7 +10058,7 @@ export declare const schemaDict: {
|
|
|
9829
10058
|
};
|
|
9830
10059
|
};
|
|
9831
10060
|
readonly systemMessageDataLockConvo: {
|
|
9832
|
-
readonly description: '
|
|
10061
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
9833
10062
|
readonly type: 'object';
|
|
9834
10063
|
readonly required: ["lockedBy"];
|
|
9835
10064
|
readonly properties: {
|
|
@@ -9841,7 +10070,7 @@ export declare const schemaDict: {
|
|
|
9841
10070
|
};
|
|
9842
10071
|
};
|
|
9843
10072
|
readonly systemMessageDataUnlockConvo: {
|
|
9844
|
-
readonly description: '
|
|
10073
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
9845
10074
|
readonly type: 'object';
|
|
9846
10075
|
readonly required: ["unlockedBy"];
|
|
9847
10076
|
readonly properties: {
|
|
@@ -9853,7 +10082,7 @@ export declare const schemaDict: {
|
|
|
9853
10082
|
};
|
|
9854
10083
|
};
|
|
9855
10084
|
readonly systemMessageDataLockConvoPermanently: {
|
|
9856
|
-
readonly description: '
|
|
10085
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
9857
10086
|
readonly type: 'object';
|
|
9858
10087
|
readonly required: ["lockedBy"];
|
|
9859
10088
|
readonly properties: {
|
|
@@ -9865,7 +10094,7 @@ export declare const schemaDict: {
|
|
|
9865
10094
|
};
|
|
9866
10095
|
};
|
|
9867
10096
|
readonly systemMessageDataEditGroup: {
|
|
9868
|
-
readonly description: '
|
|
10097
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
9869
10098
|
readonly type: 'object';
|
|
9870
10099
|
readonly properties: {
|
|
9871
10100
|
readonly oldName: {
|
|
@@ -9879,22 +10108,22 @@ export declare const schemaDict: {
|
|
|
9879
10108
|
};
|
|
9880
10109
|
};
|
|
9881
10110
|
readonly systemMessageDataCreateJoinLink: {
|
|
9882
|
-
readonly description: '
|
|
10111
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
9883
10112
|
readonly type: 'object';
|
|
9884
10113
|
readonly properties: {};
|
|
9885
10114
|
};
|
|
9886
10115
|
readonly systemMessageDataEditJoinLink: {
|
|
9887
|
-
readonly description: '
|
|
10116
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
9888
10117
|
readonly type: 'object';
|
|
9889
10118
|
readonly properties: {};
|
|
9890
10119
|
};
|
|
9891
10120
|
readonly systemMessageDataEnableJoinLink: {
|
|
9892
|
-
readonly description: '
|
|
10121
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
9893
10122
|
readonly type: 'object';
|
|
9894
10123
|
readonly properties: {};
|
|
9895
10124
|
};
|
|
9896
10125
|
readonly systemMessageDataDisableJoinLink: {
|
|
9897
|
-
readonly description: '
|
|
10126
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
9898
10127
|
readonly type: 'object';
|
|
9899
10128
|
readonly properties: {};
|
|
9900
10129
|
};
|
|
@@ -9918,6 +10147,11 @@ export declare const schemaDict: {
|
|
|
9918
10147
|
};
|
|
9919
10148
|
};
|
|
9920
10149
|
};
|
|
10150
|
+
readonly messageBeforeUserJoinedGroupView: {
|
|
10151
|
+
readonly description: "Placeholder embedded in place of a reply's parent message when that parent was sent before the viewer joined the group convo. The viewer has no access to that history, so no message data is carried.";
|
|
10152
|
+
readonly type: 'object';
|
|
10153
|
+
readonly properties: {};
|
|
10154
|
+
};
|
|
9921
10155
|
readonly messageViewSender: {
|
|
9922
10156
|
readonly type: 'object';
|
|
9923
10157
|
readonly required: ["did"];
|
|
@@ -10014,12 +10248,10 @@ export declare const schemaDict: {
|
|
|
10014
10248
|
};
|
|
10015
10249
|
};
|
|
10016
10250
|
readonly directConvo: {
|
|
10017
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10018
10251
|
readonly type: 'object';
|
|
10019
10252
|
readonly properties: {};
|
|
10020
10253
|
};
|
|
10021
10254
|
readonly groupConvo: {
|
|
10022
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10023
10255
|
readonly type: 'object';
|
|
10024
10256
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
10025
10257
|
readonly properties: {
|
|
@@ -10247,7 +10479,7 @@ export declare const schemaDict: {
|
|
|
10247
10479
|
};
|
|
10248
10480
|
};
|
|
10249
10481
|
readonly logReadConvo: {
|
|
10250
|
-
readonly description: '
|
|
10482
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
10251
10483
|
readonly type: 'object';
|
|
10252
10484
|
readonly required: ["rev", "convoId", "message"];
|
|
10253
10485
|
readonly properties: {
|
|
@@ -10264,7 +10496,7 @@ export declare const schemaDict: {
|
|
|
10264
10496
|
};
|
|
10265
10497
|
};
|
|
10266
10498
|
readonly logAddMember: {
|
|
10267
|
-
readonly description: '
|
|
10499
|
+
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
10500
|
readonly type: 'object';
|
|
10269
10501
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10270
10502
|
readonly properties: {
|
|
@@ -10290,7 +10522,7 @@ export declare const schemaDict: {
|
|
|
10290
10522
|
};
|
|
10291
10523
|
};
|
|
10292
10524
|
readonly logRemoveMember: {
|
|
10293
|
-
readonly description: "
|
|
10525
|
+
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
10526
|
readonly type: 'object';
|
|
10295
10527
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10296
10528
|
readonly properties: {
|
|
@@ -10316,7 +10548,7 @@ export declare const schemaDict: {
|
|
|
10316
10548
|
};
|
|
10317
10549
|
};
|
|
10318
10550
|
readonly logMemberJoin: {
|
|
10319
|
-
readonly description: '
|
|
10551
|
+
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
10552
|
readonly type: 'object';
|
|
10321
10553
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10322
10554
|
readonly properties: {
|
|
@@ -10342,7 +10574,7 @@ export declare const schemaDict: {
|
|
|
10342
10574
|
};
|
|
10343
10575
|
};
|
|
10344
10576
|
readonly logMemberLeave: {
|
|
10345
|
-
readonly description: "
|
|
10577
|
+
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
10578
|
readonly type: 'object';
|
|
10347
10579
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10348
10580
|
readonly properties: {
|
|
@@ -10368,7 +10600,7 @@ export declare const schemaDict: {
|
|
|
10368
10600
|
};
|
|
10369
10601
|
};
|
|
10370
10602
|
readonly logLockConvo: {
|
|
10371
|
-
readonly description: '
|
|
10603
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
10372
10604
|
readonly type: 'object';
|
|
10373
10605
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10374
10606
|
readonly properties: {
|
|
@@ -10394,7 +10626,7 @@ export declare const schemaDict: {
|
|
|
10394
10626
|
};
|
|
10395
10627
|
};
|
|
10396
10628
|
readonly logUnlockConvo: {
|
|
10397
|
-
readonly description: '
|
|
10629
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
10398
10630
|
readonly type: 'object';
|
|
10399
10631
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10400
10632
|
readonly properties: {
|
|
@@ -10420,7 +10652,7 @@ export declare const schemaDict: {
|
|
|
10420
10652
|
};
|
|
10421
10653
|
};
|
|
10422
10654
|
readonly logLockConvoPermanently: {
|
|
10423
|
-
readonly description: '
|
|
10655
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
10424
10656
|
readonly type: 'object';
|
|
10425
10657
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10426
10658
|
readonly properties: {
|
|
@@ -10446,7 +10678,7 @@ export declare const schemaDict: {
|
|
|
10446
10678
|
};
|
|
10447
10679
|
};
|
|
10448
10680
|
readonly logEditGroup: {
|
|
10449
|
-
readonly description: '
|
|
10681
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
10450
10682
|
readonly type: 'object';
|
|
10451
10683
|
readonly required: ["rev", "convoId", "message"];
|
|
10452
10684
|
readonly properties: {
|
|
@@ -10464,7 +10696,7 @@ export declare const schemaDict: {
|
|
|
10464
10696
|
};
|
|
10465
10697
|
};
|
|
10466
10698
|
readonly logCreateJoinLink: {
|
|
10467
|
-
readonly description: '
|
|
10699
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
10468
10700
|
readonly type: 'object';
|
|
10469
10701
|
readonly required: ["rev", "convoId", "message"];
|
|
10470
10702
|
readonly properties: {
|
|
@@ -10482,7 +10714,7 @@ export declare const schemaDict: {
|
|
|
10482
10714
|
};
|
|
10483
10715
|
};
|
|
10484
10716
|
readonly logEditJoinLink: {
|
|
10485
|
-
readonly description: '
|
|
10717
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
10486
10718
|
readonly type: 'object';
|
|
10487
10719
|
readonly required: ["rev", "convoId", "message"];
|
|
10488
10720
|
readonly properties: {
|
|
@@ -10500,7 +10732,7 @@ export declare const schemaDict: {
|
|
|
10500
10732
|
};
|
|
10501
10733
|
};
|
|
10502
10734
|
readonly logEnableJoinLink: {
|
|
10503
|
-
readonly description: '
|
|
10735
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
10504
10736
|
readonly type: 'object';
|
|
10505
10737
|
readonly required: ["rev", "convoId", "message"];
|
|
10506
10738
|
readonly properties: {
|
|
@@ -10518,7 +10750,7 @@ export declare const schemaDict: {
|
|
|
10518
10750
|
};
|
|
10519
10751
|
};
|
|
10520
10752
|
readonly logDisableJoinLink: {
|
|
10521
|
-
readonly description: '
|
|
10753
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
10522
10754
|
readonly type: 'object';
|
|
10523
10755
|
readonly required: ["rev", "convoId", "message"];
|
|
10524
10756
|
readonly properties: {
|
|
@@ -10536,7 +10768,7 @@ export declare const schemaDict: {
|
|
|
10536
10768
|
};
|
|
10537
10769
|
};
|
|
10538
10770
|
readonly logIncomingJoinRequest: {
|
|
10539
|
-
readonly description: '
|
|
10771
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
10540
10772
|
readonly type: 'object';
|
|
10541
10773
|
readonly required: ["rev", "convoId", "member"];
|
|
10542
10774
|
readonly properties: {
|
|
@@ -10554,7 +10786,7 @@ export declare const schemaDict: {
|
|
|
10554
10786
|
};
|
|
10555
10787
|
};
|
|
10556
10788
|
readonly logApproveJoinRequest: {
|
|
10557
|
-
readonly description: '
|
|
10789
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
10558
10790
|
readonly type: 'object';
|
|
10559
10791
|
readonly required: ["rev", "convoId", "member"];
|
|
10560
10792
|
readonly properties: {
|
|
@@ -10572,7 +10804,7 @@ export declare const schemaDict: {
|
|
|
10572
10804
|
};
|
|
10573
10805
|
};
|
|
10574
10806
|
readonly logRejectJoinRequest: {
|
|
10575
|
-
readonly description: '
|
|
10807
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
10576
10808
|
readonly type: 'object';
|
|
10577
10809
|
readonly required: ["rev", "convoId", "member"];
|
|
10578
10810
|
readonly properties: {
|
|
@@ -10590,7 +10822,7 @@ export declare const schemaDict: {
|
|
|
10590
10822
|
};
|
|
10591
10823
|
};
|
|
10592
10824
|
readonly logOutgoingJoinRequest: {
|
|
10593
|
-
readonly description: '
|
|
10825
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
10594
10826
|
readonly type: 'object';
|
|
10595
10827
|
readonly required: ["rev", "convoId"];
|
|
10596
10828
|
readonly properties: {
|
|
@@ -10603,7 +10835,7 @@ export declare const schemaDict: {
|
|
|
10603
10835
|
};
|
|
10604
10836
|
};
|
|
10605
10837
|
readonly logWithdrawIncomingJoinRequest: {
|
|
10606
|
-
readonly description: '
|
|
10838
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
10607
10839
|
readonly type: 'object';
|
|
10608
10840
|
readonly required: ["rev", "convoId", "member"];
|
|
10609
10841
|
readonly properties: {
|
|
@@ -10621,7 +10853,7 @@ export declare const schemaDict: {
|
|
|
10621
10853
|
};
|
|
10622
10854
|
};
|
|
10623
10855
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
10624
|
-
readonly description: '
|
|
10856
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
10625
10857
|
readonly type: 'object';
|
|
10626
10858
|
readonly required: ["rev", "convoId"];
|
|
10627
10859
|
readonly properties: {
|
|
@@ -10634,7 +10866,7 @@ export declare const schemaDict: {
|
|
|
10634
10866
|
};
|
|
10635
10867
|
};
|
|
10636
10868
|
readonly logReadJoinRequests: {
|
|
10637
|
-
readonly description: '
|
|
10869
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
10638
10870
|
readonly type: 'object';
|
|
10639
10871
|
readonly required: ["rev", "convoId"];
|
|
10640
10872
|
readonly properties: {
|
|
@@ -10964,7 +11196,7 @@ export declare const schemaDict: {
|
|
|
10964
11196
|
readonly defs: {
|
|
10965
11197
|
readonly main: {
|
|
10966
11198
|
readonly type: 'query';
|
|
10967
|
-
readonly description: "
|
|
11199
|
+
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
11200
|
readonly parameters: {
|
|
10969
11201
|
readonly type: 'params';
|
|
10970
11202
|
readonly properties: {
|
|
@@ -10983,11 +11215,11 @@ export declare const schemaDict: {
|
|
|
10983
11215
|
readonly properties: {
|
|
10984
11216
|
readonly unreadAcceptedConvos: {
|
|
10985
11217
|
readonly type: 'integer';
|
|
10986
|
-
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at
|
|
11218
|
+
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at 100, where 100 means more than 99.';
|
|
10987
11219
|
};
|
|
10988
11220
|
readonly unreadRequestConvos: {
|
|
10989
11221
|
readonly type: 'integer';
|
|
10990
|
-
readonly description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at
|
|
11222
|
+
readonly description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at 100, where 100 means more than 99.';
|
|
10991
11223
|
};
|
|
10992
11224
|
};
|
|
10993
11225
|
};
|
|
@@ -11044,7 +11276,7 @@ export declare const schemaDict: {
|
|
|
11044
11276
|
readonly defs: {
|
|
11045
11277
|
readonly main: {
|
|
11046
11278
|
readonly type: 'query';
|
|
11047
|
-
readonly description: '
|
|
11279
|
+
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
11280
|
readonly parameters: {
|
|
11049
11281
|
readonly type: 'params';
|
|
11050
11282
|
readonly properties: {
|
|
@@ -11149,7 +11381,7 @@ export declare const schemaDict: {
|
|
|
11149
11381
|
readonly defs: {
|
|
11150
11382
|
readonly main: {
|
|
11151
11383
|
readonly type: 'procedure';
|
|
11152
|
-
readonly description: '
|
|
11384
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
11153
11385
|
readonly errors: [{
|
|
11154
11386
|
readonly name: 'ConvoLocked';
|
|
11155
11387
|
}, {
|
|
@@ -11389,7 +11621,7 @@ export declare const schemaDict: {
|
|
|
11389
11621
|
readonly defs: {
|
|
11390
11622
|
readonly main: {
|
|
11391
11623
|
readonly type: 'procedure';
|
|
11392
|
-
readonly description: '
|
|
11624
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
11393
11625
|
readonly errors: [{
|
|
11394
11626
|
readonly name: 'InvalidConvo';
|
|
11395
11627
|
}, {
|
|
@@ -11542,7 +11774,7 @@ export declare const schemaDict: {
|
|
|
11542
11774
|
readonly ChatBskyEmbedJoinLink: {
|
|
11543
11775
|
readonly lexicon: 1;
|
|
11544
11776
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
11545
|
-
readonly description: '
|
|
11777
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
11546
11778
|
readonly defs: {
|
|
11547
11779
|
readonly main: {
|
|
11548
11780
|
readonly type: 'object';
|
|
@@ -11572,7 +11804,7 @@ export declare const schemaDict: {
|
|
|
11572
11804
|
readonly defs: {
|
|
11573
11805
|
readonly main: {
|
|
11574
11806
|
readonly type: 'procedure';
|
|
11575
|
-
readonly description: "
|
|
11807
|
+
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
11808
|
readonly errors: [{
|
|
11577
11809
|
readonly name: 'AccountSuspended';
|
|
11578
11810
|
}, {
|
|
@@ -11643,7 +11875,7 @@ export declare const schemaDict: {
|
|
|
11643
11875
|
readonly defs: {
|
|
11644
11876
|
readonly main: {
|
|
11645
11877
|
readonly type: 'procedure';
|
|
11646
|
-
readonly description: '
|
|
11878
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
11647
11879
|
readonly errors: [{
|
|
11648
11880
|
readonly name: 'InvalidConvo';
|
|
11649
11881
|
}, {
|
|
@@ -11689,7 +11921,7 @@ export declare const schemaDict: {
|
|
|
11689
11921
|
readonly defs: {
|
|
11690
11922
|
readonly main: {
|
|
11691
11923
|
readonly type: 'procedure';
|
|
11692
|
-
readonly description: "
|
|
11924
|
+
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
11925
|
readonly errors: [{
|
|
11694
11926
|
readonly name: 'AccountSuspended';
|
|
11695
11927
|
}, {
|
|
@@ -11750,7 +11982,7 @@ export declare const schemaDict: {
|
|
|
11750
11982
|
readonly defs: {
|
|
11751
11983
|
readonly main: {
|
|
11752
11984
|
readonly type: 'procedure';
|
|
11753
|
-
readonly description: '
|
|
11985
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
11754
11986
|
readonly errors: [{
|
|
11755
11987
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
11756
11988
|
}, {
|
|
@@ -11797,7 +12029,6 @@ export declare const schemaDict: {
|
|
|
11797
12029
|
readonly ChatBskyGroupDefs: {
|
|
11798
12030
|
readonly lexicon: 1;
|
|
11799
12031
|
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
12032
|
readonly defs: {
|
|
11802
12033
|
readonly linkEnabledStatus: {
|
|
11803
12034
|
readonly type: 'string';
|
|
@@ -11956,7 +12187,7 @@ export declare const schemaDict: {
|
|
|
11956
12187
|
readonly defs: {
|
|
11957
12188
|
readonly main: {
|
|
11958
12189
|
readonly type: 'procedure';
|
|
11959
|
-
readonly description: '
|
|
12190
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
11960
12191
|
readonly errors: [{
|
|
11961
12192
|
readonly name: 'InvalidConvo';
|
|
11962
12193
|
}, {
|
|
@@ -11998,7 +12229,7 @@ export declare const schemaDict: {
|
|
|
11998
12229
|
readonly defs: {
|
|
11999
12230
|
readonly main: {
|
|
12000
12231
|
readonly type: 'procedure';
|
|
12001
|
-
readonly description: '
|
|
12232
|
+
readonly description: 'Edits group settings.';
|
|
12002
12233
|
readonly errors: [{
|
|
12003
12234
|
readonly name: 'ConvoLocked';
|
|
12004
12235
|
}, {
|
|
@@ -12046,7 +12277,7 @@ export declare const schemaDict: {
|
|
|
12046
12277
|
readonly defs: {
|
|
12047
12278
|
readonly main: {
|
|
12048
12279
|
readonly type: 'procedure';
|
|
12049
|
-
readonly description: '
|
|
12280
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
12050
12281
|
readonly errors: [{
|
|
12051
12282
|
readonly name: 'InvalidConvo';
|
|
12052
12283
|
}, {
|
|
@@ -12095,7 +12326,7 @@ export declare const schemaDict: {
|
|
|
12095
12326
|
readonly defs: {
|
|
12096
12327
|
readonly main: {
|
|
12097
12328
|
readonly type: 'procedure';
|
|
12098
|
-
readonly description: '
|
|
12329
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
12099
12330
|
readonly errors: [{
|
|
12100
12331
|
readonly name: 'InvalidConvo';
|
|
12101
12332
|
}, {
|
|
@@ -12139,7 +12370,7 @@ export declare const schemaDict: {
|
|
|
12139
12370
|
readonly defs: {
|
|
12140
12371
|
readonly main: {
|
|
12141
12372
|
readonly type: 'query';
|
|
12142
|
-
readonly description: "
|
|
12373
|
+
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
12374
|
readonly parameters: {
|
|
12144
12375
|
readonly type: 'params';
|
|
12145
12376
|
readonly required: ["codes"];
|
|
@@ -12179,7 +12410,7 @@ export declare const schemaDict: {
|
|
|
12179
12410
|
readonly defs: {
|
|
12180
12411
|
readonly main: {
|
|
12181
12412
|
readonly type: 'query';
|
|
12182
|
-
readonly description: "
|
|
12413
|
+
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
12414
|
readonly errors: [{
|
|
12184
12415
|
readonly name: 'InvalidConvo';
|
|
12185
12416
|
}, {
|
|
@@ -12231,7 +12462,7 @@ export declare const schemaDict: {
|
|
|
12231
12462
|
readonly defs: {
|
|
12232
12463
|
readonly main: {
|
|
12233
12464
|
readonly type: 'query';
|
|
12234
|
-
readonly description: '
|
|
12465
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
12235
12466
|
readonly parameters: {
|
|
12236
12467
|
readonly type: 'params';
|
|
12237
12468
|
readonly required: ["subject"];
|
|
@@ -12279,7 +12510,7 @@ export declare const schemaDict: {
|
|
|
12279
12510
|
readonly defs: {
|
|
12280
12511
|
readonly main: {
|
|
12281
12512
|
readonly type: 'procedure';
|
|
12282
|
-
readonly description: '
|
|
12513
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
12283
12514
|
readonly errors: [{
|
|
12284
12515
|
readonly name: 'InvalidConvo';
|
|
12285
12516
|
}, {
|
|
@@ -12318,7 +12549,7 @@ export declare const schemaDict: {
|
|
|
12318
12549
|
readonly defs: {
|
|
12319
12550
|
readonly main: {
|
|
12320
12551
|
readonly type: 'procedure';
|
|
12321
|
-
readonly description: "
|
|
12552
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
12322
12553
|
readonly errors: [{
|
|
12323
12554
|
readonly name: 'InvalidConvo';
|
|
12324
12555
|
}, {
|
|
@@ -12366,7 +12597,7 @@ export declare const schemaDict: {
|
|
|
12366
12597
|
readonly defs: {
|
|
12367
12598
|
readonly main: {
|
|
12368
12599
|
readonly type: 'procedure';
|
|
12369
|
-
readonly description: '
|
|
12600
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
12370
12601
|
readonly errors: [{
|
|
12371
12602
|
readonly name: 'ConvoLocked';
|
|
12372
12603
|
}, {
|
|
@@ -12419,7 +12650,7 @@ export declare const schemaDict: {
|
|
|
12419
12650
|
readonly defs: {
|
|
12420
12651
|
readonly main: {
|
|
12421
12652
|
readonly type: 'procedure';
|
|
12422
|
-
readonly description: '
|
|
12653
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
12423
12654
|
readonly errors: [{
|
|
12424
12655
|
readonly name: 'InvalidConvo';
|
|
12425
12656
|
}, {
|
|
@@ -12454,7 +12685,7 @@ export declare const schemaDict: {
|
|
|
12454
12685
|
readonly defs: {
|
|
12455
12686
|
readonly main: {
|
|
12456
12687
|
readonly type: 'procedure';
|
|
12457
|
-
readonly description: '
|
|
12688
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
12458
12689
|
readonly errors: [{
|
|
12459
12690
|
readonly name: 'InvalidJoinRequest';
|
|
12460
12691
|
}];
|
|
@@ -12486,7 +12717,7 @@ export declare const schemaDict: {
|
|
|
12486
12717
|
readonly id: 'chat.bsky.moderation.defs';
|
|
12487
12718
|
readonly defs: {
|
|
12488
12719
|
readonly convoView: {
|
|
12489
|
-
readonly description: '
|
|
12720
|
+
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
12721
|
readonly type: 'object';
|
|
12491
12722
|
readonly required: ["id", "rev"];
|
|
12492
12723
|
readonly properties: {
|
|
@@ -12504,12 +12735,12 @@ export declare const schemaDict: {
|
|
|
12504
12735
|
};
|
|
12505
12736
|
};
|
|
12506
12737
|
readonly directConvo: {
|
|
12507
|
-
readonly description: '
|
|
12738
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
12508
12739
|
readonly type: 'object';
|
|
12509
12740
|
readonly properties: {};
|
|
12510
12741
|
};
|
|
12511
12742
|
readonly groupConvo: {
|
|
12512
|
-
readonly description: '
|
|
12743
|
+
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
12744
|
readonly type: 'object';
|
|
12514
12745
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
12515
12746
|
readonly properties: {
|
|
@@ -12612,7 +12843,7 @@ export declare const schemaDict: {
|
|
|
12612
12843
|
readonly defs: {
|
|
12613
12844
|
readonly main: {
|
|
12614
12845
|
readonly type: 'query';
|
|
12615
|
-
readonly description: '
|
|
12846
|
+
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
12847
|
readonly errors: [{
|
|
12617
12848
|
readonly name: 'InvalidConvo';
|
|
12618
12849
|
}];
|
|
@@ -12647,7 +12878,7 @@ export declare const schemaDict: {
|
|
|
12647
12878
|
readonly defs: {
|
|
12648
12879
|
readonly main: {
|
|
12649
12880
|
readonly type: 'query';
|
|
12650
|
-
readonly description: '
|
|
12881
|
+
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
12882
|
readonly errors: [{
|
|
12652
12883
|
readonly name: 'InvalidConvo';
|
|
12653
12884
|
}];
|
|
@@ -12697,7 +12928,7 @@ export declare const schemaDict: {
|
|
|
12697
12928
|
readonly defs: {
|
|
12698
12929
|
readonly main: {
|
|
12699
12930
|
readonly type: 'query';
|
|
12700
|
-
readonly description: '
|
|
12931
|
+
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
12932
|
readonly parameters: {
|
|
12702
12933
|
readonly type: 'params';
|
|
12703
12934
|
readonly required: ["convoIds"];
|
|
@@ -28857,6 +29088,236 @@ export declare const schemas: ({
|
|
|
28857
29088
|
}];
|
|
28858
29089
|
};
|
|
28859
29090
|
};
|
|
29091
|
+
} | {
|
|
29092
|
+
readonly lexicon: 1;
|
|
29093
|
+
readonly id: 'app.bsky.feed.searchPostsV2';
|
|
29094
|
+
readonly defs: {
|
|
29095
|
+
readonly main: {
|
|
29096
|
+
readonly type: 'query';
|
|
29097
|
+
readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
|
|
29098
|
+
readonly parameters: {
|
|
29099
|
+
readonly type: 'params';
|
|
29100
|
+
readonly required: [];
|
|
29101
|
+
readonly properties: {
|
|
29102
|
+
readonly cursor: {
|
|
29103
|
+
readonly type: 'string';
|
|
29104
|
+
readonly description: 'Optional pagination cursor.';
|
|
29105
|
+
};
|
|
29106
|
+
readonly limit: {
|
|
29107
|
+
readonly type: 'integer';
|
|
29108
|
+
readonly minimum: 1;
|
|
29109
|
+
readonly maximum: 100;
|
|
29110
|
+
readonly default: 25;
|
|
29111
|
+
readonly description: 'Maximum number of results to return.';
|
|
29112
|
+
};
|
|
29113
|
+
readonly query: {
|
|
29114
|
+
readonly type: 'string';
|
|
29115
|
+
readonly description: 'Search query string. A query or at least one filter is required.';
|
|
29116
|
+
};
|
|
29117
|
+
readonly sort: {
|
|
29118
|
+
readonly type: 'string';
|
|
29119
|
+
readonly knownValues: ["recent", "top"];
|
|
29120
|
+
readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
|
|
29121
|
+
};
|
|
29122
|
+
readonly authors: {
|
|
29123
|
+
readonly type: 'array';
|
|
29124
|
+
readonly items: {
|
|
29125
|
+
readonly type: 'string';
|
|
29126
|
+
readonly format: 'at-identifier';
|
|
29127
|
+
};
|
|
29128
|
+
readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29129
|
+
};
|
|
29130
|
+
readonly mentions: {
|
|
29131
|
+
readonly type: 'array';
|
|
29132
|
+
readonly items: {
|
|
29133
|
+
readonly type: 'string';
|
|
29134
|
+
readonly format: 'at-identifier';
|
|
29135
|
+
};
|
|
29136
|
+
readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29137
|
+
};
|
|
29138
|
+
readonly domains: {
|
|
29139
|
+
readonly type: 'array';
|
|
29140
|
+
readonly items: {
|
|
29141
|
+
readonly type: 'string';
|
|
29142
|
+
};
|
|
29143
|
+
readonly description: 'Include posts that link to any of these domains.';
|
|
29144
|
+
};
|
|
29145
|
+
readonly urls: {
|
|
29146
|
+
readonly type: 'array';
|
|
29147
|
+
readonly items: {
|
|
29148
|
+
readonly type: 'string';
|
|
29149
|
+
readonly format: 'uri';
|
|
29150
|
+
};
|
|
29151
|
+
readonly description: 'Include posts that link to any of these URLs.';
|
|
29152
|
+
};
|
|
29153
|
+
readonly embeddedAtUris: {
|
|
29154
|
+
readonly type: 'array';
|
|
29155
|
+
readonly items: {
|
|
29156
|
+
readonly type: 'string';
|
|
29157
|
+
readonly format: 'at-uri';
|
|
29158
|
+
};
|
|
29159
|
+
readonly description: 'Include posts that embed any of these AT URIs.';
|
|
29160
|
+
};
|
|
29161
|
+
readonly hashtags: {
|
|
29162
|
+
readonly type: 'array';
|
|
29163
|
+
readonly items: {
|
|
29164
|
+
readonly type: 'string';
|
|
29165
|
+
readonly maxLength: 640;
|
|
29166
|
+
readonly maxGraphemes: 64;
|
|
29167
|
+
};
|
|
29168
|
+
readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29169
|
+
};
|
|
29170
|
+
readonly excludeAuthors: {
|
|
29171
|
+
readonly type: 'array';
|
|
29172
|
+
readonly items: {
|
|
29173
|
+
readonly type: 'string';
|
|
29174
|
+
readonly format: 'at-identifier';
|
|
29175
|
+
};
|
|
29176
|
+
readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29177
|
+
};
|
|
29178
|
+
readonly excludeMentions: {
|
|
29179
|
+
readonly type: 'array';
|
|
29180
|
+
readonly items: {
|
|
29181
|
+
readonly type: 'string';
|
|
29182
|
+
readonly format: 'at-identifier';
|
|
29183
|
+
};
|
|
29184
|
+
readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29185
|
+
};
|
|
29186
|
+
readonly excludeDomains: {
|
|
29187
|
+
readonly type: 'array';
|
|
29188
|
+
readonly items: {
|
|
29189
|
+
readonly type: 'string';
|
|
29190
|
+
};
|
|
29191
|
+
readonly description: 'Exclude posts that link to any of these domains.';
|
|
29192
|
+
};
|
|
29193
|
+
readonly excludeUrls: {
|
|
29194
|
+
readonly type: 'array';
|
|
29195
|
+
readonly items: {
|
|
29196
|
+
readonly type: 'string';
|
|
29197
|
+
readonly format: 'uri';
|
|
29198
|
+
};
|
|
29199
|
+
readonly description: 'Exclude posts that link to any of these URLs.';
|
|
29200
|
+
};
|
|
29201
|
+
readonly excludeEmbeddedAtUris: {
|
|
29202
|
+
readonly type: 'array';
|
|
29203
|
+
readonly items: {
|
|
29204
|
+
readonly type: 'string';
|
|
29205
|
+
readonly format: 'at-uri';
|
|
29206
|
+
};
|
|
29207
|
+
readonly description: 'Exclude posts that embed any of these AT URIs.';
|
|
29208
|
+
};
|
|
29209
|
+
readonly excludeHashtags: {
|
|
29210
|
+
readonly type: 'array';
|
|
29211
|
+
readonly items: {
|
|
29212
|
+
readonly type: 'string';
|
|
29213
|
+
readonly maxLength: 640;
|
|
29214
|
+
readonly maxGraphemes: 64;
|
|
29215
|
+
};
|
|
29216
|
+
readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29217
|
+
};
|
|
29218
|
+
readonly since: {
|
|
29219
|
+
readonly type: 'string';
|
|
29220
|
+
readonly description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
29221
|
+
};
|
|
29222
|
+
readonly until: {
|
|
29223
|
+
readonly type: 'string';
|
|
29224
|
+
readonly description: 'Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
29225
|
+
};
|
|
29226
|
+
readonly allTime: {
|
|
29227
|
+
readonly type: 'boolean';
|
|
29228
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
29229
|
+
};
|
|
29230
|
+
readonly languages: {
|
|
29231
|
+
readonly type: 'array';
|
|
29232
|
+
readonly items: {
|
|
29233
|
+
readonly type: 'string';
|
|
29234
|
+
readonly format: 'language';
|
|
29235
|
+
};
|
|
29236
|
+
readonly description: 'Include posts whose language matches any of these language codes.';
|
|
29237
|
+
};
|
|
29238
|
+
readonly excludeLanguages: {
|
|
29239
|
+
readonly type: 'array';
|
|
29240
|
+
readonly items: {
|
|
29241
|
+
readonly type: 'string';
|
|
29242
|
+
readonly format: 'language';
|
|
29243
|
+
};
|
|
29244
|
+
readonly description: 'Exclude posts whose language matches any of these language codes.';
|
|
29245
|
+
};
|
|
29246
|
+
readonly hasMedia: {
|
|
29247
|
+
readonly type: 'boolean';
|
|
29248
|
+
readonly description: 'Include only posts with media.';
|
|
29249
|
+
};
|
|
29250
|
+
readonly hasVideo: {
|
|
29251
|
+
readonly type: 'boolean';
|
|
29252
|
+
readonly description: 'Include only posts with video.';
|
|
29253
|
+
};
|
|
29254
|
+
readonly replyParentUri: {
|
|
29255
|
+
readonly type: 'string';
|
|
29256
|
+
readonly format: 'at-uri';
|
|
29257
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
29258
|
+
};
|
|
29259
|
+
readonly threadRootUri: {
|
|
29260
|
+
readonly type: 'string';
|
|
29261
|
+
readonly format: 'at-uri';
|
|
29262
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
29263
|
+
};
|
|
29264
|
+
readonly excludeReplies: {
|
|
29265
|
+
readonly type: 'boolean';
|
|
29266
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
29267
|
+
};
|
|
29268
|
+
readonly repliesOnly: {
|
|
29269
|
+
readonly type: 'boolean';
|
|
29270
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
29271
|
+
};
|
|
29272
|
+
readonly following: {
|
|
29273
|
+
readonly type: 'boolean';
|
|
29274
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
29275
|
+
};
|
|
29276
|
+
readonly queryLanguage: {
|
|
29277
|
+
readonly type: 'string';
|
|
29278
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29279
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
29280
|
+
};
|
|
29281
|
+
};
|
|
29282
|
+
};
|
|
29283
|
+
readonly output: {
|
|
29284
|
+
readonly encoding: 'application/json';
|
|
29285
|
+
readonly schema: {
|
|
29286
|
+
readonly type: 'object';
|
|
29287
|
+
readonly required: ["posts"];
|
|
29288
|
+
readonly properties: {
|
|
29289
|
+
readonly cursor: {
|
|
29290
|
+
readonly type: 'string';
|
|
29291
|
+
readonly description: 'Cursor for the next page of results.';
|
|
29292
|
+
};
|
|
29293
|
+
readonly hitsTotal: {
|
|
29294
|
+
readonly type: 'integer';
|
|
29295
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
29296
|
+
};
|
|
29297
|
+
readonly posts: {
|
|
29298
|
+
readonly type: 'array';
|
|
29299
|
+
readonly items: {
|
|
29300
|
+
readonly type: 'ref';
|
|
29301
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
29302
|
+
};
|
|
29303
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
29304
|
+
};
|
|
29305
|
+
readonly detectedQueryLanguages: {
|
|
29306
|
+
readonly type: 'array';
|
|
29307
|
+
readonly items: {
|
|
29308
|
+
readonly type: 'string';
|
|
29309
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29310
|
+
};
|
|
29311
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
29312
|
+
};
|
|
29313
|
+
};
|
|
29314
|
+
};
|
|
29315
|
+
};
|
|
29316
|
+
readonly errors: [{
|
|
29317
|
+
readonly name: 'BadQueryString';
|
|
29318
|
+
}];
|
|
29319
|
+
};
|
|
29320
|
+
};
|
|
28860
29321
|
} | {
|
|
28861
29322
|
readonly lexicon: 1;
|
|
28862
29323
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -33242,7 +33703,7 @@ export declare const schemas: ({
|
|
|
33242
33703
|
readonly knownValues: ["all", "none", "following"];
|
|
33243
33704
|
};
|
|
33244
33705
|
readonly allowGroupInvites: {
|
|
33245
|
-
readonly description: '
|
|
33706
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
33246
33707
|
readonly type: 'string';
|
|
33247
33708
|
readonly knownValues: ["all", "none", "following"];
|
|
33248
33709
|
};
|
|
@@ -33314,12 +33775,11 @@ export declare const schemas: ({
|
|
|
33314
33775
|
};
|
|
33315
33776
|
};
|
|
33316
33777
|
readonly directConvoMember: {
|
|
33317
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33318
33778
|
readonly type: 'object';
|
|
33319
33779
|
readonly properties: {};
|
|
33320
33780
|
};
|
|
33321
33781
|
readonly groupConvoMember: {
|
|
33322
|
-
readonly description: '
|
|
33782
|
+
readonly description: 'A current group convo member.';
|
|
33323
33783
|
readonly type: 'object';
|
|
33324
33784
|
readonly required: ["role"];
|
|
33325
33785
|
readonly properties: {
|
|
@@ -33336,7 +33796,7 @@ export declare const schemas: ({
|
|
|
33336
33796
|
};
|
|
33337
33797
|
};
|
|
33338
33798
|
readonly pastGroupConvoMember: {
|
|
33339
|
-
readonly description: '
|
|
33799
|
+
readonly description: 'A past group convo member.';
|
|
33340
33800
|
readonly type: 'object';
|
|
33341
33801
|
readonly required: [];
|
|
33342
33802
|
readonly properties: {};
|
|
@@ -33614,7 +34074,7 @@ export declare const schemas: ({
|
|
|
33614
34074
|
readonly replyTo: {
|
|
33615
34075
|
readonly description: "If set, the message this message is replying to. The full view of the referenced message is embedded so the client can render it inline. Only a single level is embedded: the embedded message will not itself have a populated 'replyTo' field even if it was also a reply.";
|
|
33616
34076
|
readonly type: 'union';
|
|
33617
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
34077
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView"];
|
|
33618
34078
|
};
|
|
33619
34079
|
readonly sender: {
|
|
33620
34080
|
readonly type: 'ref';
|
|
@@ -33637,7 +34097,6 @@ export declare const schemas: ({
|
|
|
33637
34097
|
};
|
|
33638
34098
|
};
|
|
33639
34099
|
readonly systemMessageView: {
|
|
33640
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33641
34100
|
readonly type: 'object';
|
|
33642
34101
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
33643
34102
|
readonly properties: {
|
|
@@ -33658,7 +34117,7 @@ export declare const schemas: ({
|
|
|
33658
34117
|
};
|
|
33659
34118
|
};
|
|
33660
34119
|
readonly systemMessageDataAddMember: {
|
|
33661
|
-
readonly description: '
|
|
34120
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
33662
34121
|
readonly type: 'object';
|
|
33663
34122
|
readonly required: ["member", "role", "addedBy"];
|
|
33664
34123
|
readonly properties: {
|
|
@@ -33679,7 +34138,7 @@ export declare const schemas: ({
|
|
|
33679
34138
|
};
|
|
33680
34139
|
};
|
|
33681
34140
|
readonly systemMessageDataRemoveMember: {
|
|
33682
|
-
readonly description: '
|
|
34141
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
33683
34142
|
readonly type: 'object';
|
|
33684
34143
|
readonly required: ["member", "removedBy"];
|
|
33685
34144
|
readonly properties: {
|
|
@@ -33695,7 +34154,7 @@ export declare const schemas: ({
|
|
|
33695
34154
|
};
|
|
33696
34155
|
};
|
|
33697
34156
|
readonly systemMessageDataMemberJoin: {
|
|
33698
|
-
readonly description: '
|
|
34157
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
33699
34158
|
readonly type: 'object';
|
|
33700
34159
|
readonly required: ["member", "role"];
|
|
33701
34160
|
readonly properties: {
|
|
@@ -33717,7 +34176,7 @@ export declare const schemas: ({
|
|
|
33717
34176
|
};
|
|
33718
34177
|
};
|
|
33719
34178
|
readonly systemMessageDataMemberLeave: {
|
|
33720
|
-
readonly description: '
|
|
34179
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
33721
34180
|
readonly type: 'object';
|
|
33722
34181
|
readonly required: ["member"];
|
|
33723
34182
|
readonly properties: {
|
|
@@ -33729,7 +34188,7 @@ export declare const schemas: ({
|
|
|
33729
34188
|
};
|
|
33730
34189
|
};
|
|
33731
34190
|
readonly systemMessageDataLockConvo: {
|
|
33732
|
-
readonly description: '
|
|
34191
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
33733
34192
|
readonly type: 'object';
|
|
33734
34193
|
readonly required: ["lockedBy"];
|
|
33735
34194
|
readonly properties: {
|
|
@@ -33741,7 +34200,7 @@ export declare const schemas: ({
|
|
|
33741
34200
|
};
|
|
33742
34201
|
};
|
|
33743
34202
|
readonly systemMessageDataUnlockConvo: {
|
|
33744
|
-
readonly description: '
|
|
34203
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
33745
34204
|
readonly type: 'object';
|
|
33746
34205
|
readonly required: ["unlockedBy"];
|
|
33747
34206
|
readonly properties: {
|
|
@@ -33753,7 +34212,7 @@ export declare const schemas: ({
|
|
|
33753
34212
|
};
|
|
33754
34213
|
};
|
|
33755
34214
|
readonly systemMessageDataLockConvoPermanently: {
|
|
33756
|
-
readonly description: '
|
|
34215
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
33757
34216
|
readonly type: 'object';
|
|
33758
34217
|
readonly required: ["lockedBy"];
|
|
33759
34218
|
readonly properties: {
|
|
@@ -33765,7 +34224,7 @@ export declare const schemas: ({
|
|
|
33765
34224
|
};
|
|
33766
34225
|
};
|
|
33767
34226
|
readonly systemMessageDataEditGroup: {
|
|
33768
|
-
readonly description: '
|
|
34227
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
33769
34228
|
readonly type: 'object';
|
|
33770
34229
|
readonly properties: {
|
|
33771
34230
|
readonly oldName: {
|
|
@@ -33779,22 +34238,22 @@ export declare const schemas: ({
|
|
|
33779
34238
|
};
|
|
33780
34239
|
};
|
|
33781
34240
|
readonly systemMessageDataCreateJoinLink: {
|
|
33782
|
-
readonly description: '
|
|
34241
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
33783
34242
|
readonly type: 'object';
|
|
33784
34243
|
readonly properties: {};
|
|
33785
34244
|
};
|
|
33786
34245
|
readonly systemMessageDataEditJoinLink: {
|
|
33787
|
-
readonly description: '
|
|
34246
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
33788
34247
|
readonly type: 'object';
|
|
33789
34248
|
readonly properties: {};
|
|
33790
34249
|
};
|
|
33791
34250
|
readonly systemMessageDataEnableJoinLink: {
|
|
33792
|
-
readonly description: '
|
|
34251
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
33793
34252
|
readonly type: 'object';
|
|
33794
34253
|
readonly properties: {};
|
|
33795
34254
|
};
|
|
33796
34255
|
readonly systemMessageDataDisableJoinLink: {
|
|
33797
|
-
readonly description: '
|
|
34256
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
33798
34257
|
readonly type: 'object';
|
|
33799
34258
|
readonly properties: {};
|
|
33800
34259
|
};
|
|
@@ -33818,6 +34277,11 @@ export declare const schemas: ({
|
|
|
33818
34277
|
};
|
|
33819
34278
|
};
|
|
33820
34279
|
};
|
|
34280
|
+
readonly messageBeforeUserJoinedGroupView: {
|
|
34281
|
+
readonly description: "Placeholder embedded in place of a reply's parent message when that parent was sent before the viewer joined the group convo. The viewer has no access to that history, so no message data is carried.";
|
|
34282
|
+
readonly type: 'object';
|
|
34283
|
+
readonly properties: {};
|
|
34284
|
+
};
|
|
33821
34285
|
readonly messageViewSender: {
|
|
33822
34286
|
readonly type: 'object';
|
|
33823
34287
|
readonly required: ["did"];
|
|
@@ -33914,12 +34378,10 @@ export declare const schemas: ({
|
|
|
33914
34378
|
};
|
|
33915
34379
|
};
|
|
33916
34380
|
readonly directConvo: {
|
|
33917
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33918
34381
|
readonly type: 'object';
|
|
33919
34382
|
readonly properties: {};
|
|
33920
34383
|
};
|
|
33921
34384
|
readonly groupConvo: {
|
|
33922
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33923
34385
|
readonly type: 'object';
|
|
33924
34386
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
33925
34387
|
readonly properties: {
|
|
@@ -34147,7 +34609,7 @@ export declare const schemas: ({
|
|
|
34147
34609
|
};
|
|
34148
34610
|
};
|
|
34149
34611
|
readonly logReadConvo: {
|
|
34150
|
-
readonly description: '
|
|
34612
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
34151
34613
|
readonly type: 'object';
|
|
34152
34614
|
readonly required: ["rev", "convoId", "message"];
|
|
34153
34615
|
readonly properties: {
|
|
@@ -34164,7 +34626,7 @@ export declare const schemas: ({
|
|
|
34164
34626
|
};
|
|
34165
34627
|
};
|
|
34166
34628
|
readonly logAddMember: {
|
|
34167
|
-
readonly description: '
|
|
34629
|
+
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).';
|
|
34168
34630
|
readonly type: 'object';
|
|
34169
34631
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34170
34632
|
readonly properties: {
|
|
@@ -34190,7 +34652,7 @@ export declare const schemas: ({
|
|
|
34190
34652
|
};
|
|
34191
34653
|
};
|
|
34192
34654
|
readonly logRemoveMember: {
|
|
34193
|
-
readonly description: "
|
|
34655
|
+
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).";
|
|
34194
34656
|
readonly type: 'object';
|
|
34195
34657
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34196
34658
|
readonly properties: {
|
|
@@ -34216,7 +34678,7 @@ export declare const schemas: ({
|
|
|
34216
34678
|
};
|
|
34217
34679
|
};
|
|
34218
34680
|
readonly logMemberJoin: {
|
|
34219
|
-
readonly description: '
|
|
34681
|
+
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).';
|
|
34220
34682
|
readonly type: 'object';
|
|
34221
34683
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34222
34684
|
readonly properties: {
|
|
@@ -34242,7 +34704,7 @@ export declare const schemas: ({
|
|
|
34242
34704
|
};
|
|
34243
34705
|
};
|
|
34244
34706
|
readonly logMemberLeave: {
|
|
34245
|
-
readonly description: "
|
|
34707
|
+
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).";
|
|
34246
34708
|
readonly type: 'object';
|
|
34247
34709
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34248
34710
|
readonly properties: {
|
|
@@ -34268,7 +34730,7 @@ export declare const schemas: ({
|
|
|
34268
34730
|
};
|
|
34269
34731
|
};
|
|
34270
34732
|
readonly logLockConvo: {
|
|
34271
|
-
readonly description: '
|
|
34733
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
34272
34734
|
readonly type: 'object';
|
|
34273
34735
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34274
34736
|
readonly properties: {
|
|
@@ -34294,7 +34756,7 @@ export declare const schemas: ({
|
|
|
34294
34756
|
};
|
|
34295
34757
|
};
|
|
34296
34758
|
readonly logUnlockConvo: {
|
|
34297
|
-
readonly description: '
|
|
34759
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
34298
34760
|
readonly type: 'object';
|
|
34299
34761
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34300
34762
|
readonly properties: {
|
|
@@ -34320,7 +34782,7 @@ export declare const schemas: ({
|
|
|
34320
34782
|
};
|
|
34321
34783
|
};
|
|
34322
34784
|
readonly logLockConvoPermanently: {
|
|
34323
|
-
readonly description: '
|
|
34785
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
34324
34786
|
readonly type: 'object';
|
|
34325
34787
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34326
34788
|
readonly properties: {
|
|
@@ -34346,7 +34808,7 @@ export declare const schemas: ({
|
|
|
34346
34808
|
};
|
|
34347
34809
|
};
|
|
34348
34810
|
readonly logEditGroup: {
|
|
34349
|
-
readonly description: '
|
|
34811
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
34350
34812
|
readonly type: 'object';
|
|
34351
34813
|
readonly required: ["rev", "convoId", "message"];
|
|
34352
34814
|
readonly properties: {
|
|
@@ -34364,7 +34826,7 @@ export declare const schemas: ({
|
|
|
34364
34826
|
};
|
|
34365
34827
|
};
|
|
34366
34828
|
readonly logCreateJoinLink: {
|
|
34367
|
-
readonly description: '
|
|
34829
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
34368
34830
|
readonly type: 'object';
|
|
34369
34831
|
readonly required: ["rev", "convoId", "message"];
|
|
34370
34832
|
readonly properties: {
|
|
@@ -34382,7 +34844,7 @@ export declare const schemas: ({
|
|
|
34382
34844
|
};
|
|
34383
34845
|
};
|
|
34384
34846
|
readonly logEditJoinLink: {
|
|
34385
|
-
readonly description: '
|
|
34847
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
34386
34848
|
readonly type: 'object';
|
|
34387
34849
|
readonly required: ["rev", "convoId", "message"];
|
|
34388
34850
|
readonly properties: {
|
|
@@ -34400,7 +34862,7 @@ export declare const schemas: ({
|
|
|
34400
34862
|
};
|
|
34401
34863
|
};
|
|
34402
34864
|
readonly logEnableJoinLink: {
|
|
34403
|
-
readonly description: '
|
|
34865
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
34404
34866
|
readonly type: 'object';
|
|
34405
34867
|
readonly required: ["rev", "convoId", "message"];
|
|
34406
34868
|
readonly properties: {
|
|
@@ -34418,7 +34880,7 @@ export declare const schemas: ({
|
|
|
34418
34880
|
};
|
|
34419
34881
|
};
|
|
34420
34882
|
readonly logDisableJoinLink: {
|
|
34421
|
-
readonly description: '
|
|
34883
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
34422
34884
|
readonly type: 'object';
|
|
34423
34885
|
readonly required: ["rev", "convoId", "message"];
|
|
34424
34886
|
readonly properties: {
|
|
@@ -34436,7 +34898,7 @@ export declare const schemas: ({
|
|
|
34436
34898
|
};
|
|
34437
34899
|
};
|
|
34438
34900
|
readonly logIncomingJoinRequest: {
|
|
34439
|
-
readonly description: '
|
|
34901
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
34440
34902
|
readonly type: 'object';
|
|
34441
34903
|
readonly required: ["rev", "convoId", "member"];
|
|
34442
34904
|
readonly properties: {
|
|
@@ -34454,7 +34916,7 @@ export declare const schemas: ({
|
|
|
34454
34916
|
};
|
|
34455
34917
|
};
|
|
34456
34918
|
readonly logApproveJoinRequest: {
|
|
34457
|
-
readonly description: '
|
|
34919
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
34458
34920
|
readonly type: 'object';
|
|
34459
34921
|
readonly required: ["rev", "convoId", "member"];
|
|
34460
34922
|
readonly properties: {
|
|
@@ -34472,7 +34934,7 @@ export declare const schemas: ({
|
|
|
34472
34934
|
};
|
|
34473
34935
|
};
|
|
34474
34936
|
readonly logRejectJoinRequest: {
|
|
34475
|
-
readonly description: '
|
|
34937
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
34476
34938
|
readonly type: 'object';
|
|
34477
34939
|
readonly required: ["rev", "convoId", "member"];
|
|
34478
34940
|
readonly properties: {
|
|
@@ -34490,7 +34952,7 @@ export declare const schemas: ({
|
|
|
34490
34952
|
};
|
|
34491
34953
|
};
|
|
34492
34954
|
readonly logOutgoingJoinRequest: {
|
|
34493
|
-
readonly description: '
|
|
34955
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
34494
34956
|
readonly type: 'object';
|
|
34495
34957
|
readonly required: ["rev", "convoId"];
|
|
34496
34958
|
readonly properties: {
|
|
@@ -34503,7 +34965,7 @@ export declare const schemas: ({
|
|
|
34503
34965
|
};
|
|
34504
34966
|
};
|
|
34505
34967
|
readonly logWithdrawIncomingJoinRequest: {
|
|
34506
|
-
readonly description: '
|
|
34968
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
34507
34969
|
readonly type: 'object';
|
|
34508
34970
|
readonly required: ["rev", "convoId", "member"];
|
|
34509
34971
|
readonly properties: {
|
|
@@ -34521,7 +34983,7 @@ export declare const schemas: ({
|
|
|
34521
34983
|
};
|
|
34522
34984
|
};
|
|
34523
34985
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
34524
|
-
readonly description: '
|
|
34986
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
34525
34987
|
readonly type: 'object';
|
|
34526
34988
|
readonly required: ["rev", "convoId"];
|
|
34527
34989
|
readonly properties: {
|
|
@@ -34534,7 +34996,7 @@ export declare const schemas: ({
|
|
|
34534
34996
|
};
|
|
34535
34997
|
};
|
|
34536
34998
|
readonly logReadJoinRequests: {
|
|
34537
|
-
readonly description: '
|
|
34999
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
34538
35000
|
readonly type: 'object';
|
|
34539
35001
|
readonly required: ["rev", "convoId"];
|
|
34540
35002
|
readonly properties: {
|
|
@@ -34856,7 +35318,7 @@ export declare const schemas: ({
|
|
|
34856
35318
|
readonly defs: {
|
|
34857
35319
|
readonly main: {
|
|
34858
35320
|
readonly type: 'query';
|
|
34859
|
-
readonly description: "
|
|
35321
|
+
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.";
|
|
34860
35322
|
readonly parameters: {
|
|
34861
35323
|
readonly type: 'params';
|
|
34862
35324
|
readonly properties: {
|
|
@@ -34875,11 +35337,11 @@ export declare const schemas: ({
|
|
|
34875
35337
|
readonly properties: {
|
|
34876
35338
|
readonly unreadAcceptedConvos: {
|
|
34877
35339
|
readonly type: 'integer';
|
|
34878
|
-
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at
|
|
35340
|
+
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at 100, where 100 means more than 99.';
|
|
34879
35341
|
};
|
|
34880
35342
|
readonly unreadRequestConvos: {
|
|
34881
35343
|
readonly type: 'integer';
|
|
34882
|
-
readonly description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at
|
|
35344
|
+
readonly description: 'Number of unread, unlocked request convos. Includes convos with unread messages, but not with unread join request, since only the owner of a group has join requests to read, and the group would necessarily be accepted. Capped at 100, where 100 means more than 99.';
|
|
34883
35345
|
};
|
|
34884
35346
|
};
|
|
34885
35347
|
};
|
|
@@ -34934,7 +35396,7 @@ export declare const schemas: ({
|
|
|
34934
35396
|
readonly defs: {
|
|
34935
35397
|
readonly main: {
|
|
34936
35398
|
readonly type: 'query';
|
|
34937
|
-
readonly description: '
|
|
35399
|
+
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.';
|
|
34938
35400
|
readonly parameters: {
|
|
34939
35401
|
readonly type: 'params';
|
|
34940
35402
|
readonly properties: {
|
|
@@ -35037,7 +35499,7 @@ export declare const schemas: ({
|
|
|
35037
35499
|
readonly defs: {
|
|
35038
35500
|
readonly main: {
|
|
35039
35501
|
readonly type: 'procedure';
|
|
35040
|
-
readonly description: '
|
|
35502
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
35041
35503
|
readonly errors: [{
|
|
35042
35504
|
readonly name: 'ConvoLocked';
|
|
35043
35505
|
}, {
|
|
@@ -35272,7 +35734,7 @@ export declare const schemas: ({
|
|
|
35272
35734
|
readonly defs: {
|
|
35273
35735
|
readonly main: {
|
|
35274
35736
|
readonly type: 'procedure';
|
|
35275
|
-
readonly description: '
|
|
35737
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
35276
35738
|
readonly errors: [{
|
|
35277
35739
|
readonly name: 'InvalidConvo';
|
|
35278
35740
|
}, {
|
|
@@ -35421,7 +35883,7 @@ export declare const schemas: ({
|
|
|
35421
35883
|
} | {
|
|
35422
35884
|
readonly lexicon: 1;
|
|
35423
35885
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
35424
|
-
readonly description: '
|
|
35886
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
35425
35887
|
readonly defs: {
|
|
35426
35888
|
readonly main: {
|
|
35427
35889
|
readonly type: 'object';
|
|
@@ -35450,7 +35912,7 @@ export declare const schemas: ({
|
|
|
35450
35912
|
readonly defs: {
|
|
35451
35913
|
readonly main: {
|
|
35452
35914
|
readonly type: 'procedure';
|
|
35453
|
-
readonly description: "
|
|
35915
|
+
readonly description: "Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.";
|
|
35454
35916
|
readonly errors: [{
|
|
35455
35917
|
readonly name: 'AccountSuspended';
|
|
35456
35918
|
}, {
|
|
@@ -35520,7 +35982,7 @@ export declare const schemas: ({
|
|
|
35520
35982
|
readonly defs: {
|
|
35521
35983
|
readonly main: {
|
|
35522
35984
|
readonly type: 'procedure';
|
|
35523
|
-
readonly description: '
|
|
35985
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
35524
35986
|
readonly errors: [{
|
|
35525
35987
|
readonly name: 'InvalidConvo';
|
|
35526
35988
|
}, {
|
|
@@ -35565,7 +36027,7 @@ export declare const schemas: ({
|
|
|
35565
36027
|
readonly defs: {
|
|
35566
36028
|
readonly main: {
|
|
35567
36029
|
readonly type: 'procedure';
|
|
35568
|
-
readonly description: "
|
|
36030
|
+
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'.";
|
|
35569
36031
|
readonly errors: [{
|
|
35570
36032
|
readonly name: 'AccountSuspended';
|
|
35571
36033
|
}, {
|
|
@@ -35625,7 +36087,7 @@ export declare const schemas: ({
|
|
|
35625
36087
|
readonly defs: {
|
|
35626
36088
|
readonly main: {
|
|
35627
36089
|
readonly type: 'procedure';
|
|
35628
|
-
readonly description: '
|
|
36090
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
35629
36091
|
readonly errors: [{
|
|
35630
36092
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
35631
36093
|
}, {
|
|
@@ -35671,7 +36133,6 @@ export declare const schemas: ({
|
|
|
35671
36133
|
} | {
|
|
35672
36134
|
readonly lexicon: 1;
|
|
35673
36135
|
readonly id: 'chat.bsky.group.defs';
|
|
35674
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
35675
36136
|
readonly defs: {
|
|
35676
36137
|
readonly linkEnabledStatus: {
|
|
35677
36138
|
readonly type: 'string';
|
|
@@ -35829,7 +36290,7 @@ export declare const schemas: ({
|
|
|
35829
36290
|
readonly defs: {
|
|
35830
36291
|
readonly main: {
|
|
35831
36292
|
readonly type: 'procedure';
|
|
35832
|
-
readonly description: '
|
|
36293
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
35833
36294
|
readonly errors: [{
|
|
35834
36295
|
readonly name: 'InvalidConvo';
|
|
35835
36296
|
}, {
|
|
@@ -35870,7 +36331,7 @@ export declare const schemas: ({
|
|
|
35870
36331
|
readonly defs: {
|
|
35871
36332
|
readonly main: {
|
|
35872
36333
|
readonly type: 'procedure';
|
|
35873
|
-
readonly description: '
|
|
36334
|
+
readonly description: 'Edits group settings.';
|
|
35874
36335
|
readonly errors: [{
|
|
35875
36336
|
readonly name: 'ConvoLocked';
|
|
35876
36337
|
}, {
|
|
@@ -35917,7 +36378,7 @@ export declare const schemas: ({
|
|
|
35917
36378
|
readonly defs: {
|
|
35918
36379
|
readonly main: {
|
|
35919
36380
|
readonly type: 'procedure';
|
|
35920
|
-
readonly description: '
|
|
36381
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
35921
36382
|
readonly errors: [{
|
|
35922
36383
|
readonly name: 'InvalidConvo';
|
|
35923
36384
|
}, {
|
|
@@ -35965,7 +36426,7 @@ export declare const schemas: ({
|
|
|
35965
36426
|
readonly defs: {
|
|
35966
36427
|
readonly main: {
|
|
35967
36428
|
readonly type: 'procedure';
|
|
35968
|
-
readonly description: '
|
|
36429
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
35969
36430
|
readonly errors: [{
|
|
35970
36431
|
readonly name: 'InvalidConvo';
|
|
35971
36432
|
}, {
|
|
@@ -36008,7 +36469,7 @@ export declare const schemas: ({
|
|
|
36008
36469
|
readonly defs: {
|
|
36009
36470
|
readonly main: {
|
|
36010
36471
|
readonly type: 'query';
|
|
36011
|
-
readonly description: "
|
|
36472
|
+
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.";
|
|
36012
36473
|
readonly parameters: {
|
|
36013
36474
|
readonly type: 'params';
|
|
36014
36475
|
readonly required: ["codes"];
|
|
@@ -36047,7 +36508,7 @@ export declare const schemas: ({
|
|
|
36047
36508
|
readonly defs: {
|
|
36048
36509
|
readonly main: {
|
|
36049
36510
|
readonly type: 'query';
|
|
36050
|
-
readonly description: "
|
|
36511
|
+
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.";
|
|
36051
36512
|
readonly errors: [{
|
|
36052
36513
|
readonly name: 'InvalidConvo';
|
|
36053
36514
|
}, {
|
|
@@ -36098,7 +36559,7 @@ export declare const schemas: ({
|
|
|
36098
36559
|
readonly defs: {
|
|
36099
36560
|
readonly main: {
|
|
36100
36561
|
readonly type: 'query';
|
|
36101
|
-
readonly description: '
|
|
36562
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
36102
36563
|
readonly parameters: {
|
|
36103
36564
|
readonly type: 'params';
|
|
36104
36565
|
readonly required: ["subject"];
|
|
@@ -36145,7 +36606,7 @@ export declare const schemas: ({
|
|
|
36145
36606
|
readonly defs: {
|
|
36146
36607
|
readonly main: {
|
|
36147
36608
|
readonly type: 'procedure';
|
|
36148
|
-
readonly description: '
|
|
36609
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
36149
36610
|
readonly errors: [{
|
|
36150
36611
|
readonly name: 'InvalidConvo';
|
|
36151
36612
|
}, {
|
|
@@ -36183,7 +36644,7 @@ export declare const schemas: ({
|
|
|
36183
36644
|
readonly defs: {
|
|
36184
36645
|
readonly main: {
|
|
36185
36646
|
readonly type: 'procedure';
|
|
36186
|
-
readonly description: "
|
|
36647
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
36187
36648
|
readonly errors: [{
|
|
36188
36649
|
readonly name: 'InvalidConvo';
|
|
36189
36650
|
}, {
|
|
@@ -36230,7 +36691,7 @@ export declare const schemas: ({
|
|
|
36230
36691
|
readonly defs: {
|
|
36231
36692
|
readonly main: {
|
|
36232
36693
|
readonly type: 'procedure';
|
|
36233
|
-
readonly description: '
|
|
36694
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
36234
36695
|
readonly errors: [{
|
|
36235
36696
|
readonly name: 'ConvoLocked';
|
|
36236
36697
|
}, {
|
|
@@ -36282,7 +36743,7 @@ export declare const schemas: ({
|
|
|
36282
36743
|
readonly defs: {
|
|
36283
36744
|
readonly main: {
|
|
36284
36745
|
readonly type: 'procedure';
|
|
36285
|
-
readonly description: '
|
|
36746
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
36286
36747
|
readonly errors: [{
|
|
36287
36748
|
readonly name: 'InvalidConvo';
|
|
36288
36749
|
}, {
|
|
@@ -36316,7 +36777,7 @@ export declare const schemas: ({
|
|
|
36316
36777
|
readonly defs: {
|
|
36317
36778
|
readonly main: {
|
|
36318
36779
|
readonly type: 'procedure';
|
|
36319
|
-
readonly description: '
|
|
36780
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
36320
36781
|
readonly errors: [{
|
|
36321
36782
|
readonly name: 'InvalidJoinRequest';
|
|
36322
36783
|
}];
|
|
@@ -36347,7 +36808,7 @@ export declare const schemas: ({
|
|
|
36347
36808
|
readonly id: 'chat.bsky.moderation.defs';
|
|
36348
36809
|
readonly defs: {
|
|
36349
36810
|
readonly convoView: {
|
|
36350
|
-
readonly description: '
|
|
36811
|
+
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.';
|
|
36351
36812
|
readonly type: 'object';
|
|
36352
36813
|
readonly required: ["id", "rev"];
|
|
36353
36814
|
readonly properties: {
|
|
@@ -36365,12 +36826,12 @@ export declare const schemas: ({
|
|
|
36365
36826
|
};
|
|
36366
36827
|
};
|
|
36367
36828
|
readonly directConvo: {
|
|
36368
|
-
readonly description: '
|
|
36829
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
36369
36830
|
readonly type: 'object';
|
|
36370
36831
|
readonly properties: {};
|
|
36371
36832
|
};
|
|
36372
36833
|
readonly groupConvo: {
|
|
36373
|
-
readonly description: '
|
|
36834
|
+
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.';
|
|
36374
36835
|
readonly type: 'object';
|
|
36375
36836
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
36376
36837
|
readonly properties: {
|
|
@@ -36471,7 +36932,7 @@ export declare const schemas: ({
|
|
|
36471
36932
|
readonly defs: {
|
|
36472
36933
|
readonly main: {
|
|
36473
36934
|
readonly type: 'query';
|
|
36474
|
-
readonly description: '
|
|
36935
|
+
readonly description: 'Gets an existing conversation by its ID, for moderation purposes. Does not require the requester to be a member of the conversation.';
|
|
36475
36936
|
readonly errors: [{
|
|
36476
36937
|
readonly name: 'InvalidConvo';
|
|
36477
36938
|
}];
|
|
@@ -36505,7 +36966,7 @@ export declare const schemas: ({
|
|
|
36505
36966
|
readonly defs: {
|
|
36506
36967
|
readonly main: {
|
|
36507
36968
|
readonly type: 'query';
|
|
36508
|
-
readonly description: '
|
|
36969
|
+
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.';
|
|
36509
36970
|
readonly errors: [{
|
|
36510
36971
|
readonly name: 'InvalidConvo';
|
|
36511
36972
|
}];
|
|
@@ -36554,7 +37015,7 @@ export declare const schemas: ({
|
|
|
36554
37015
|
readonly defs: {
|
|
36555
37016
|
readonly main: {
|
|
36556
37017
|
readonly type: 'query';
|
|
36557
|
-
readonly description: '
|
|
37018
|
+
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.';
|
|
36558
37019
|
readonly parameters: {
|
|
36559
37020
|
readonly type: 'params';
|
|
36560
37021
|
readonly required: ["convoIds"];
|
|
@@ -47807,6 +48268,7 @@ export declare const ids: {
|
|
|
47807
48268
|
readonly AppBskyFeedPostgate: 'app.bsky.feed.postgate';
|
|
47808
48269
|
readonly AppBskyFeedRepost: 'app.bsky.feed.repost';
|
|
47809
48270
|
readonly AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts';
|
|
48271
|
+
readonly AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2';
|
|
47810
48272
|
readonly AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions';
|
|
47811
48273
|
readonly AppBskyFeedThreadgate: 'app.bsky.feed.threadgate';
|
|
47812
48274
|
readonly AppBskyGraphBlock: 'app.bsky.graph.block';
|