@atproto/ozone 0.2.6 → 0.2.8
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 +27 -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 +630 -152
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +318 -75
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/ageassurance/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/ageassurance/defs.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
|
@@ -1345,6 +1345,14 @@ export declare const schemaDict: {
|
|
|
1345
1345
|
readonly type: 'integer';
|
|
1346
1346
|
readonly description: 'The minimum age (as a whole integer) required to use Bluesky in this region.';
|
|
1347
1347
|
};
|
|
1348
|
+
readonly additionalVerificationMethods: {
|
|
1349
|
+
readonly type: 'array';
|
|
1350
|
+
readonly description: 'Verification methods permitted in this region in addition to the third-party (KWS) flow, which is always supported. `device` permits using the native on-device age APIs (e.g. Apple Declared Age Range, Google Play Age Signals).';
|
|
1351
|
+
readonly items: {
|
|
1352
|
+
readonly type: 'string';
|
|
1353
|
+
readonly knownValues: ["device"];
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1348
1356
|
readonly rules: {
|
|
1349
1357
|
readonly type: 'array';
|
|
1350
1358
|
readonly description: 'The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.';
|
|
@@ -4866,6 +4874,237 @@ export declare const schemaDict: {
|
|
|
4866
4874
|
};
|
|
4867
4875
|
};
|
|
4868
4876
|
};
|
|
4877
|
+
readonly AppBskyFeedSearchPostsV2: {
|
|
4878
|
+
readonly lexicon: 1;
|
|
4879
|
+
readonly id: 'app.bsky.feed.searchPostsV2';
|
|
4880
|
+
readonly defs: {
|
|
4881
|
+
readonly main: {
|
|
4882
|
+
readonly type: 'query';
|
|
4883
|
+
readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
|
|
4884
|
+
readonly parameters: {
|
|
4885
|
+
readonly type: 'params';
|
|
4886
|
+
readonly required: [];
|
|
4887
|
+
readonly properties: {
|
|
4888
|
+
readonly cursor: {
|
|
4889
|
+
readonly type: 'string';
|
|
4890
|
+
readonly description: 'Optional pagination cursor.';
|
|
4891
|
+
};
|
|
4892
|
+
readonly limit: {
|
|
4893
|
+
readonly type: 'integer';
|
|
4894
|
+
readonly minimum: 1;
|
|
4895
|
+
readonly maximum: 100;
|
|
4896
|
+
readonly default: 25;
|
|
4897
|
+
readonly description: 'Maximum number of results to return.';
|
|
4898
|
+
};
|
|
4899
|
+
readonly query: {
|
|
4900
|
+
readonly type: 'string';
|
|
4901
|
+
readonly description: 'Search query string. A query or at least one filter is required.';
|
|
4902
|
+
};
|
|
4903
|
+
readonly sort: {
|
|
4904
|
+
readonly type: 'string';
|
|
4905
|
+
readonly knownValues: ["recent", "top"];
|
|
4906
|
+
readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
|
|
4907
|
+
};
|
|
4908
|
+
readonly authors: {
|
|
4909
|
+
readonly type: 'array';
|
|
4910
|
+
readonly items: {
|
|
4911
|
+
readonly type: 'string';
|
|
4912
|
+
readonly format: 'at-identifier';
|
|
4913
|
+
};
|
|
4914
|
+
readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
4915
|
+
};
|
|
4916
|
+
readonly mentions: {
|
|
4917
|
+
readonly type: 'array';
|
|
4918
|
+
readonly items: {
|
|
4919
|
+
readonly type: 'string';
|
|
4920
|
+
readonly format: 'at-identifier';
|
|
4921
|
+
};
|
|
4922
|
+
readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
4923
|
+
};
|
|
4924
|
+
readonly domains: {
|
|
4925
|
+
readonly type: 'array';
|
|
4926
|
+
readonly items: {
|
|
4927
|
+
readonly type: 'string';
|
|
4928
|
+
};
|
|
4929
|
+
readonly description: 'Include posts that link to any of these domains.';
|
|
4930
|
+
};
|
|
4931
|
+
readonly urls: {
|
|
4932
|
+
readonly type: 'array';
|
|
4933
|
+
readonly items: {
|
|
4934
|
+
readonly type: 'string';
|
|
4935
|
+
readonly format: 'uri';
|
|
4936
|
+
};
|
|
4937
|
+
readonly description: 'Include posts that link to any of these URLs.';
|
|
4938
|
+
};
|
|
4939
|
+
readonly embeddedAtUris: {
|
|
4940
|
+
readonly type: 'array';
|
|
4941
|
+
readonly items: {
|
|
4942
|
+
readonly type: 'string';
|
|
4943
|
+
readonly format: 'at-uri';
|
|
4944
|
+
};
|
|
4945
|
+
readonly description: 'Include posts that embed any of these AT URIs.';
|
|
4946
|
+
};
|
|
4947
|
+
readonly hashtags: {
|
|
4948
|
+
readonly type: 'array';
|
|
4949
|
+
readonly items: {
|
|
4950
|
+
readonly type: 'string';
|
|
4951
|
+
readonly maxLength: 640;
|
|
4952
|
+
readonly maxGraphemes: 64;
|
|
4953
|
+
};
|
|
4954
|
+
readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
4955
|
+
};
|
|
4956
|
+
readonly excludeAuthors: {
|
|
4957
|
+
readonly type: 'array';
|
|
4958
|
+
readonly items: {
|
|
4959
|
+
readonly type: 'string';
|
|
4960
|
+
readonly format: 'at-identifier';
|
|
4961
|
+
};
|
|
4962
|
+
readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
4963
|
+
};
|
|
4964
|
+
readonly excludeMentions: {
|
|
4965
|
+
readonly type: 'array';
|
|
4966
|
+
readonly items: {
|
|
4967
|
+
readonly type: 'string';
|
|
4968
|
+
readonly format: 'at-identifier';
|
|
4969
|
+
};
|
|
4970
|
+
readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
4971
|
+
};
|
|
4972
|
+
readonly excludeDomains: {
|
|
4973
|
+
readonly type: 'array';
|
|
4974
|
+
readonly items: {
|
|
4975
|
+
readonly type: 'string';
|
|
4976
|
+
};
|
|
4977
|
+
readonly description: 'Exclude posts that link to any of these domains.';
|
|
4978
|
+
};
|
|
4979
|
+
readonly excludeUrls: {
|
|
4980
|
+
readonly type: 'array';
|
|
4981
|
+
readonly items: {
|
|
4982
|
+
readonly type: 'string';
|
|
4983
|
+
readonly format: 'uri';
|
|
4984
|
+
};
|
|
4985
|
+
readonly description: 'Exclude posts that link to any of these URLs.';
|
|
4986
|
+
};
|
|
4987
|
+
readonly excludeEmbeddedAtUris: {
|
|
4988
|
+
readonly type: 'array';
|
|
4989
|
+
readonly items: {
|
|
4990
|
+
readonly type: 'string';
|
|
4991
|
+
readonly format: 'at-uri';
|
|
4992
|
+
};
|
|
4993
|
+
readonly description: 'Exclude posts that embed any of these AT URIs.';
|
|
4994
|
+
};
|
|
4995
|
+
readonly excludeHashtags: {
|
|
4996
|
+
readonly type: 'array';
|
|
4997
|
+
readonly items: {
|
|
4998
|
+
readonly type: 'string';
|
|
4999
|
+
readonly maxLength: 640;
|
|
5000
|
+
readonly maxGraphemes: 64;
|
|
5001
|
+
};
|
|
5002
|
+
readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
5003
|
+
};
|
|
5004
|
+
readonly since: {
|
|
5005
|
+
readonly type: 'string';
|
|
5006
|
+
readonly description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
5007
|
+
};
|
|
5008
|
+
readonly until: {
|
|
5009
|
+
readonly type: 'string';
|
|
5010
|
+
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).';
|
|
5011
|
+
};
|
|
5012
|
+
readonly allTime: {
|
|
5013
|
+
readonly type: 'boolean';
|
|
5014
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
5015
|
+
};
|
|
5016
|
+
readonly languages: {
|
|
5017
|
+
readonly type: 'array';
|
|
5018
|
+
readonly items: {
|
|
5019
|
+
readonly type: 'string';
|
|
5020
|
+
readonly format: 'language';
|
|
5021
|
+
};
|
|
5022
|
+
readonly description: 'Include posts whose language matches any of these language codes.';
|
|
5023
|
+
};
|
|
5024
|
+
readonly excludeLanguages: {
|
|
5025
|
+
readonly type: 'array';
|
|
5026
|
+
readonly items: {
|
|
5027
|
+
readonly type: 'string';
|
|
5028
|
+
readonly format: 'language';
|
|
5029
|
+
};
|
|
5030
|
+
readonly description: 'Exclude posts whose language matches any of these language codes.';
|
|
5031
|
+
};
|
|
5032
|
+
readonly hasMedia: {
|
|
5033
|
+
readonly type: 'boolean';
|
|
5034
|
+
readonly description: 'Include only posts with media.';
|
|
5035
|
+
};
|
|
5036
|
+
readonly hasVideo: {
|
|
5037
|
+
readonly type: 'boolean';
|
|
5038
|
+
readonly description: 'Include only posts with video.';
|
|
5039
|
+
};
|
|
5040
|
+
readonly replyParentUri: {
|
|
5041
|
+
readonly type: 'string';
|
|
5042
|
+
readonly format: 'at-uri';
|
|
5043
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
5044
|
+
};
|
|
5045
|
+
readonly threadRootUri: {
|
|
5046
|
+
readonly type: 'string';
|
|
5047
|
+
readonly format: 'at-uri';
|
|
5048
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
5049
|
+
};
|
|
5050
|
+
readonly excludeReplies: {
|
|
5051
|
+
readonly type: 'boolean';
|
|
5052
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
5053
|
+
};
|
|
5054
|
+
readonly repliesOnly: {
|
|
5055
|
+
readonly type: 'boolean';
|
|
5056
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
5057
|
+
};
|
|
5058
|
+
readonly following: {
|
|
5059
|
+
readonly type: 'boolean';
|
|
5060
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
5061
|
+
};
|
|
5062
|
+
readonly queryLanguage: {
|
|
5063
|
+
readonly type: 'string';
|
|
5064
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5065
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
5066
|
+
};
|
|
5067
|
+
};
|
|
5068
|
+
};
|
|
5069
|
+
readonly output: {
|
|
5070
|
+
readonly encoding: 'application/json';
|
|
5071
|
+
readonly schema: {
|
|
5072
|
+
readonly type: 'object';
|
|
5073
|
+
readonly required: ["posts"];
|
|
5074
|
+
readonly properties: {
|
|
5075
|
+
readonly cursor: {
|
|
5076
|
+
readonly type: 'string';
|
|
5077
|
+
readonly description: 'Cursor for the next page of results.';
|
|
5078
|
+
};
|
|
5079
|
+
readonly hitsTotal: {
|
|
5080
|
+
readonly type: 'integer';
|
|
5081
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
5082
|
+
};
|
|
5083
|
+
readonly posts: {
|
|
5084
|
+
readonly type: 'array';
|
|
5085
|
+
readonly items: {
|
|
5086
|
+
readonly type: 'ref';
|
|
5087
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
5088
|
+
};
|
|
5089
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
5090
|
+
};
|
|
5091
|
+
readonly detectedQueryLanguages: {
|
|
5092
|
+
readonly type: 'array';
|
|
5093
|
+
readonly items: {
|
|
5094
|
+
readonly type: 'string';
|
|
5095
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
5096
|
+
};
|
|
5097
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
5098
|
+
};
|
|
5099
|
+
};
|
|
5100
|
+
};
|
|
5101
|
+
};
|
|
5102
|
+
readonly errors: [{
|
|
5103
|
+
readonly name: 'BadQueryString';
|
|
5104
|
+
}];
|
|
5105
|
+
};
|
|
5106
|
+
};
|
|
5107
|
+
};
|
|
4869
5108
|
readonly AppBskyFeedSendInteractions: {
|
|
4870
5109
|
readonly lexicon: 1;
|
|
4871
5110
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -9335,7 +9574,7 @@ export declare const schemaDict: {
|
|
|
9335
9574
|
readonly knownValues: ["all", "none", "following"];
|
|
9336
9575
|
};
|
|
9337
9576
|
readonly allowGroupInvites: {
|
|
9338
|
-
readonly description: '
|
|
9577
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
9339
9578
|
readonly type: 'string';
|
|
9340
9579
|
readonly knownValues: ["all", "none", "following"];
|
|
9341
9580
|
};
|
|
@@ -9408,12 +9647,11 @@ export declare const schemaDict: {
|
|
|
9408
9647
|
};
|
|
9409
9648
|
};
|
|
9410
9649
|
readonly directConvoMember: {
|
|
9411
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9412
9650
|
readonly type: 'object';
|
|
9413
9651
|
readonly properties: {};
|
|
9414
9652
|
};
|
|
9415
9653
|
readonly groupConvoMember: {
|
|
9416
|
-
readonly description: '
|
|
9654
|
+
readonly description: 'A current group convo member.';
|
|
9417
9655
|
readonly type: 'object';
|
|
9418
9656
|
readonly required: ["role"];
|
|
9419
9657
|
readonly properties: {
|
|
@@ -9430,7 +9668,7 @@ export declare const schemaDict: {
|
|
|
9430
9668
|
};
|
|
9431
9669
|
};
|
|
9432
9670
|
readonly pastGroupConvoMember: {
|
|
9433
|
-
readonly description: '
|
|
9671
|
+
readonly description: 'A past group convo member.';
|
|
9434
9672
|
readonly type: 'object';
|
|
9435
9673
|
readonly required: [];
|
|
9436
9674
|
readonly properties: {};
|
|
@@ -9714,7 +9952,7 @@ export declare const schemaDict: {
|
|
|
9714
9952
|
readonly replyTo: {
|
|
9715
9953
|
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
9954
|
readonly type: 'union';
|
|
9717
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
9955
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView"];
|
|
9718
9956
|
};
|
|
9719
9957
|
readonly sender: {
|
|
9720
9958
|
readonly type: 'ref';
|
|
@@ -9737,7 +9975,6 @@ export declare const schemaDict: {
|
|
|
9737
9975
|
};
|
|
9738
9976
|
};
|
|
9739
9977
|
readonly systemMessageView: {
|
|
9740
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
9741
9978
|
readonly type: 'object';
|
|
9742
9979
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
9743
9980
|
readonly properties: {
|
|
@@ -9758,7 +9995,7 @@ export declare const schemaDict: {
|
|
|
9758
9995
|
};
|
|
9759
9996
|
};
|
|
9760
9997
|
readonly systemMessageDataAddMember: {
|
|
9761
|
-
readonly description: '
|
|
9998
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
9762
9999
|
readonly type: 'object';
|
|
9763
10000
|
readonly required: ["member", "role", "addedBy"];
|
|
9764
10001
|
readonly properties: {
|
|
@@ -9779,7 +10016,7 @@ export declare const schemaDict: {
|
|
|
9779
10016
|
};
|
|
9780
10017
|
};
|
|
9781
10018
|
readonly systemMessageDataRemoveMember: {
|
|
9782
|
-
readonly description: '
|
|
10019
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
9783
10020
|
readonly type: 'object';
|
|
9784
10021
|
readonly required: ["member", "removedBy"];
|
|
9785
10022
|
readonly properties: {
|
|
@@ -9795,7 +10032,7 @@ export declare const schemaDict: {
|
|
|
9795
10032
|
};
|
|
9796
10033
|
};
|
|
9797
10034
|
readonly systemMessageDataMemberJoin: {
|
|
9798
|
-
readonly description: '
|
|
10035
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
9799
10036
|
readonly type: 'object';
|
|
9800
10037
|
readonly required: ["member", "role"];
|
|
9801
10038
|
readonly properties: {
|
|
@@ -9817,7 +10054,7 @@ export declare const schemaDict: {
|
|
|
9817
10054
|
};
|
|
9818
10055
|
};
|
|
9819
10056
|
readonly systemMessageDataMemberLeave: {
|
|
9820
|
-
readonly description: '
|
|
10057
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
9821
10058
|
readonly type: 'object';
|
|
9822
10059
|
readonly required: ["member"];
|
|
9823
10060
|
readonly properties: {
|
|
@@ -9829,7 +10066,7 @@ export declare const schemaDict: {
|
|
|
9829
10066
|
};
|
|
9830
10067
|
};
|
|
9831
10068
|
readonly systemMessageDataLockConvo: {
|
|
9832
|
-
readonly description: '
|
|
10069
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
9833
10070
|
readonly type: 'object';
|
|
9834
10071
|
readonly required: ["lockedBy"];
|
|
9835
10072
|
readonly properties: {
|
|
@@ -9841,7 +10078,7 @@ export declare const schemaDict: {
|
|
|
9841
10078
|
};
|
|
9842
10079
|
};
|
|
9843
10080
|
readonly systemMessageDataUnlockConvo: {
|
|
9844
|
-
readonly description: '
|
|
10081
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
9845
10082
|
readonly type: 'object';
|
|
9846
10083
|
readonly required: ["unlockedBy"];
|
|
9847
10084
|
readonly properties: {
|
|
@@ -9853,7 +10090,7 @@ export declare const schemaDict: {
|
|
|
9853
10090
|
};
|
|
9854
10091
|
};
|
|
9855
10092
|
readonly systemMessageDataLockConvoPermanently: {
|
|
9856
|
-
readonly description: '
|
|
10093
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
9857
10094
|
readonly type: 'object';
|
|
9858
10095
|
readonly required: ["lockedBy"];
|
|
9859
10096
|
readonly properties: {
|
|
@@ -9865,7 +10102,7 @@ export declare const schemaDict: {
|
|
|
9865
10102
|
};
|
|
9866
10103
|
};
|
|
9867
10104
|
readonly systemMessageDataEditGroup: {
|
|
9868
|
-
readonly description: '
|
|
10105
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
9869
10106
|
readonly type: 'object';
|
|
9870
10107
|
readonly properties: {
|
|
9871
10108
|
readonly oldName: {
|
|
@@ -9879,22 +10116,22 @@ export declare const schemaDict: {
|
|
|
9879
10116
|
};
|
|
9880
10117
|
};
|
|
9881
10118
|
readonly systemMessageDataCreateJoinLink: {
|
|
9882
|
-
readonly description: '
|
|
10119
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
9883
10120
|
readonly type: 'object';
|
|
9884
10121
|
readonly properties: {};
|
|
9885
10122
|
};
|
|
9886
10123
|
readonly systemMessageDataEditJoinLink: {
|
|
9887
|
-
readonly description: '
|
|
10124
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
9888
10125
|
readonly type: 'object';
|
|
9889
10126
|
readonly properties: {};
|
|
9890
10127
|
};
|
|
9891
10128
|
readonly systemMessageDataEnableJoinLink: {
|
|
9892
|
-
readonly description: '
|
|
10129
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
9893
10130
|
readonly type: 'object';
|
|
9894
10131
|
readonly properties: {};
|
|
9895
10132
|
};
|
|
9896
10133
|
readonly systemMessageDataDisableJoinLink: {
|
|
9897
|
-
readonly description: '
|
|
10134
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
9898
10135
|
readonly type: 'object';
|
|
9899
10136
|
readonly properties: {};
|
|
9900
10137
|
};
|
|
@@ -9918,6 +10155,11 @@ export declare const schemaDict: {
|
|
|
9918
10155
|
};
|
|
9919
10156
|
};
|
|
9920
10157
|
};
|
|
10158
|
+
readonly messageBeforeUserJoinedGroupView: {
|
|
10159
|
+
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.";
|
|
10160
|
+
readonly type: 'object';
|
|
10161
|
+
readonly properties: {};
|
|
10162
|
+
};
|
|
9921
10163
|
readonly messageViewSender: {
|
|
9922
10164
|
readonly type: 'object';
|
|
9923
10165
|
readonly required: ["did"];
|
|
@@ -10014,12 +10256,10 @@ export declare const schemaDict: {
|
|
|
10014
10256
|
};
|
|
10015
10257
|
};
|
|
10016
10258
|
readonly directConvo: {
|
|
10017
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10018
10259
|
readonly type: 'object';
|
|
10019
10260
|
readonly properties: {};
|
|
10020
10261
|
};
|
|
10021
10262
|
readonly groupConvo: {
|
|
10022
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
10023
10263
|
readonly type: 'object';
|
|
10024
10264
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
10025
10265
|
readonly properties: {
|
|
@@ -10055,8 +10295,8 @@ export declare const schemaDict: {
|
|
|
10055
10295
|
readonly name: {
|
|
10056
10296
|
readonly type: 'string';
|
|
10057
10297
|
readonly description: 'The display name of the group conversation.';
|
|
10058
|
-
readonly maxGraphemes:
|
|
10059
|
-
readonly maxLength:
|
|
10298
|
+
readonly maxGraphemes: 50;
|
|
10299
|
+
readonly maxLength: 500;
|
|
10060
10300
|
};
|
|
10061
10301
|
readonly unreadJoinRequestCount: {
|
|
10062
10302
|
readonly type: 'integer';
|
|
@@ -10247,7 +10487,7 @@ export declare const schemaDict: {
|
|
|
10247
10487
|
};
|
|
10248
10488
|
};
|
|
10249
10489
|
readonly logReadConvo: {
|
|
10250
|
-
readonly description: '
|
|
10490
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
10251
10491
|
readonly type: 'object';
|
|
10252
10492
|
readonly required: ["rev", "convoId", "message"];
|
|
10253
10493
|
readonly properties: {
|
|
@@ -10264,7 +10504,7 @@ export declare const schemaDict: {
|
|
|
10264
10504
|
};
|
|
10265
10505
|
};
|
|
10266
10506
|
readonly logAddMember: {
|
|
10267
|
-
readonly description: '
|
|
10507
|
+
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
10508
|
readonly type: 'object';
|
|
10269
10509
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10270
10510
|
readonly properties: {
|
|
@@ -10290,7 +10530,7 @@ export declare const schemaDict: {
|
|
|
10290
10530
|
};
|
|
10291
10531
|
};
|
|
10292
10532
|
readonly logRemoveMember: {
|
|
10293
|
-
readonly description: "
|
|
10533
|
+
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
10534
|
readonly type: 'object';
|
|
10295
10535
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10296
10536
|
readonly properties: {
|
|
@@ -10316,7 +10556,7 @@ export declare const schemaDict: {
|
|
|
10316
10556
|
};
|
|
10317
10557
|
};
|
|
10318
10558
|
readonly logMemberJoin: {
|
|
10319
|
-
readonly description: '
|
|
10559
|
+
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
10560
|
readonly type: 'object';
|
|
10321
10561
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10322
10562
|
readonly properties: {
|
|
@@ -10342,7 +10582,7 @@ export declare const schemaDict: {
|
|
|
10342
10582
|
};
|
|
10343
10583
|
};
|
|
10344
10584
|
readonly logMemberLeave: {
|
|
10345
|
-
readonly description: "
|
|
10585
|
+
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
10586
|
readonly type: 'object';
|
|
10347
10587
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10348
10588
|
readonly properties: {
|
|
@@ -10368,7 +10608,7 @@ export declare const schemaDict: {
|
|
|
10368
10608
|
};
|
|
10369
10609
|
};
|
|
10370
10610
|
readonly logLockConvo: {
|
|
10371
|
-
readonly description: '
|
|
10611
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
10372
10612
|
readonly type: 'object';
|
|
10373
10613
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10374
10614
|
readonly properties: {
|
|
@@ -10394,7 +10634,7 @@ export declare const schemaDict: {
|
|
|
10394
10634
|
};
|
|
10395
10635
|
};
|
|
10396
10636
|
readonly logUnlockConvo: {
|
|
10397
|
-
readonly description: '
|
|
10637
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
10398
10638
|
readonly type: 'object';
|
|
10399
10639
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10400
10640
|
readonly properties: {
|
|
@@ -10420,7 +10660,7 @@ export declare const schemaDict: {
|
|
|
10420
10660
|
};
|
|
10421
10661
|
};
|
|
10422
10662
|
readonly logLockConvoPermanently: {
|
|
10423
|
-
readonly description: '
|
|
10663
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
10424
10664
|
readonly type: 'object';
|
|
10425
10665
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
10426
10666
|
readonly properties: {
|
|
@@ -10446,7 +10686,7 @@ export declare const schemaDict: {
|
|
|
10446
10686
|
};
|
|
10447
10687
|
};
|
|
10448
10688
|
readonly logEditGroup: {
|
|
10449
|
-
readonly description: '
|
|
10689
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
10450
10690
|
readonly type: 'object';
|
|
10451
10691
|
readonly required: ["rev", "convoId", "message"];
|
|
10452
10692
|
readonly properties: {
|
|
@@ -10464,7 +10704,7 @@ export declare const schemaDict: {
|
|
|
10464
10704
|
};
|
|
10465
10705
|
};
|
|
10466
10706
|
readonly logCreateJoinLink: {
|
|
10467
|
-
readonly description: '
|
|
10707
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
10468
10708
|
readonly type: 'object';
|
|
10469
10709
|
readonly required: ["rev", "convoId", "message"];
|
|
10470
10710
|
readonly properties: {
|
|
@@ -10482,7 +10722,7 @@ export declare const schemaDict: {
|
|
|
10482
10722
|
};
|
|
10483
10723
|
};
|
|
10484
10724
|
readonly logEditJoinLink: {
|
|
10485
|
-
readonly description: '
|
|
10725
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
10486
10726
|
readonly type: 'object';
|
|
10487
10727
|
readonly required: ["rev", "convoId", "message"];
|
|
10488
10728
|
readonly properties: {
|
|
@@ -10500,7 +10740,7 @@ export declare const schemaDict: {
|
|
|
10500
10740
|
};
|
|
10501
10741
|
};
|
|
10502
10742
|
readonly logEnableJoinLink: {
|
|
10503
|
-
readonly description: '
|
|
10743
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
10504
10744
|
readonly type: 'object';
|
|
10505
10745
|
readonly required: ["rev", "convoId", "message"];
|
|
10506
10746
|
readonly properties: {
|
|
@@ -10518,7 +10758,7 @@ export declare const schemaDict: {
|
|
|
10518
10758
|
};
|
|
10519
10759
|
};
|
|
10520
10760
|
readonly logDisableJoinLink: {
|
|
10521
|
-
readonly description: '
|
|
10761
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
10522
10762
|
readonly type: 'object';
|
|
10523
10763
|
readonly required: ["rev", "convoId", "message"];
|
|
10524
10764
|
readonly properties: {
|
|
@@ -10536,7 +10776,7 @@ export declare const schemaDict: {
|
|
|
10536
10776
|
};
|
|
10537
10777
|
};
|
|
10538
10778
|
readonly logIncomingJoinRequest: {
|
|
10539
|
-
readonly description: '
|
|
10779
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
10540
10780
|
readonly type: 'object';
|
|
10541
10781
|
readonly required: ["rev", "convoId", "member"];
|
|
10542
10782
|
readonly properties: {
|
|
@@ -10554,7 +10794,7 @@ export declare const schemaDict: {
|
|
|
10554
10794
|
};
|
|
10555
10795
|
};
|
|
10556
10796
|
readonly logApproveJoinRequest: {
|
|
10557
|
-
readonly description: '
|
|
10797
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
10558
10798
|
readonly type: 'object';
|
|
10559
10799
|
readonly required: ["rev", "convoId", "member"];
|
|
10560
10800
|
readonly properties: {
|
|
@@ -10572,7 +10812,7 @@ export declare const schemaDict: {
|
|
|
10572
10812
|
};
|
|
10573
10813
|
};
|
|
10574
10814
|
readonly logRejectJoinRequest: {
|
|
10575
|
-
readonly description: '
|
|
10815
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
10576
10816
|
readonly type: 'object';
|
|
10577
10817
|
readonly required: ["rev", "convoId", "member"];
|
|
10578
10818
|
readonly properties: {
|
|
@@ -10590,7 +10830,7 @@ export declare const schemaDict: {
|
|
|
10590
10830
|
};
|
|
10591
10831
|
};
|
|
10592
10832
|
readonly logOutgoingJoinRequest: {
|
|
10593
|
-
readonly description: '
|
|
10833
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
10594
10834
|
readonly type: 'object';
|
|
10595
10835
|
readonly required: ["rev", "convoId"];
|
|
10596
10836
|
readonly properties: {
|
|
@@ -10603,7 +10843,7 @@ export declare const schemaDict: {
|
|
|
10603
10843
|
};
|
|
10604
10844
|
};
|
|
10605
10845
|
readonly logWithdrawIncomingJoinRequest: {
|
|
10606
|
-
readonly description: '
|
|
10846
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
10607
10847
|
readonly type: 'object';
|
|
10608
10848
|
readonly required: ["rev", "convoId", "member"];
|
|
10609
10849
|
readonly properties: {
|
|
@@ -10621,7 +10861,7 @@ export declare const schemaDict: {
|
|
|
10621
10861
|
};
|
|
10622
10862
|
};
|
|
10623
10863
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
10624
|
-
readonly description: '
|
|
10864
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
10625
10865
|
readonly type: 'object';
|
|
10626
10866
|
readonly required: ["rev", "convoId"];
|
|
10627
10867
|
readonly properties: {
|
|
@@ -10634,7 +10874,7 @@ export declare const schemaDict: {
|
|
|
10634
10874
|
};
|
|
10635
10875
|
};
|
|
10636
10876
|
readonly logReadJoinRequests: {
|
|
10637
|
-
readonly description: '
|
|
10877
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
10638
10878
|
readonly type: 'object';
|
|
10639
10879
|
readonly required: ["rev", "convoId"];
|
|
10640
10880
|
readonly properties: {
|
|
@@ -10964,7 +11204,7 @@ export declare const schemaDict: {
|
|
|
10964
11204
|
readonly defs: {
|
|
10965
11205
|
readonly main: {
|
|
10966
11206
|
readonly type: 'query';
|
|
10967
|
-
readonly description: "
|
|
11207
|
+
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
11208
|
readonly parameters: {
|
|
10969
11209
|
readonly type: 'params';
|
|
10970
11210
|
readonly properties: {
|
|
@@ -10983,11 +11223,11 @@ export declare const schemaDict: {
|
|
|
10983
11223
|
readonly properties: {
|
|
10984
11224
|
readonly unreadAcceptedConvos: {
|
|
10985
11225
|
readonly type: 'integer';
|
|
10986
|
-
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at
|
|
11226
|
+
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
11227
|
};
|
|
10988
11228
|
readonly unreadRequestConvos: {
|
|
10989
11229
|
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
|
|
11230
|
+
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
11231
|
};
|
|
10992
11232
|
};
|
|
10993
11233
|
};
|
|
@@ -11044,7 +11284,7 @@ export declare const schemaDict: {
|
|
|
11044
11284
|
readonly defs: {
|
|
11045
11285
|
readonly main: {
|
|
11046
11286
|
readonly type: 'query';
|
|
11047
|
-
readonly description: '
|
|
11287
|
+
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
11288
|
readonly parameters: {
|
|
11049
11289
|
readonly type: 'params';
|
|
11050
11290
|
readonly properties: {
|
|
@@ -11149,7 +11389,7 @@ export declare const schemaDict: {
|
|
|
11149
11389
|
readonly defs: {
|
|
11150
11390
|
readonly main: {
|
|
11151
11391
|
readonly type: 'procedure';
|
|
11152
|
-
readonly description: '
|
|
11392
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
11153
11393
|
readonly errors: [{
|
|
11154
11394
|
readonly name: 'ConvoLocked';
|
|
11155
11395
|
}, {
|
|
@@ -11389,7 +11629,7 @@ export declare const schemaDict: {
|
|
|
11389
11629
|
readonly defs: {
|
|
11390
11630
|
readonly main: {
|
|
11391
11631
|
readonly type: 'procedure';
|
|
11392
|
-
readonly description: '
|
|
11632
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
11393
11633
|
readonly errors: [{
|
|
11394
11634
|
readonly name: 'InvalidConvo';
|
|
11395
11635
|
}, {
|
|
@@ -11542,7 +11782,7 @@ export declare const schemaDict: {
|
|
|
11542
11782
|
readonly ChatBskyEmbedJoinLink: {
|
|
11543
11783
|
readonly lexicon: 1;
|
|
11544
11784
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
11545
|
-
readonly description: '
|
|
11785
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
11546
11786
|
readonly defs: {
|
|
11547
11787
|
readonly main: {
|
|
11548
11788
|
readonly type: 'object';
|
|
@@ -11572,7 +11812,7 @@ export declare const schemaDict: {
|
|
|
11572
11812
|
readonly defs: {
|
|
11573
11813
|
readonly main: {
|
|
11574
11814
|
readonly type: 'procedure';
|
|
11575
|
-
readonly description: "
|
|
11815
|
+
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
11816
|
readonly errors: [{
|
|
11577
11817
|
readonly name: 'AccountSuspended';
|
|
11578
11818
|
}, {
|
|
@@ -11643,7 +11883,7 @@ export declare const schemaDict: {
|
|
|
11643
11883
|
readonly defs: {
|
|
11644
11884
|
readonly main: {
|
|
11645
11885
|
readonly type: 'procedure';
|
|
11646
|
-
readonly description: '
|
|
11886
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
11647
11887
|
readonly errors: [{
|
|
11648
11888
|
readonly name: 'InvalidConvo';
|
|
11649
11889
|
}, {
|
|
@@ -11689,7 +11929,7 @@ export declare const schemaDict: {
|
|
|
11689
11929
|
readonly defs: {
|
|
11690
11930
|
readonly main: {
|
|
11691
11931
|
readonly type: 'procedure';
|
|
11692
|
-
readonly description: "
|
|
11932
|
+
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
11933
|
readonly errors: [{
|
|
11694
11934
|
readonly name: 'AccountSuspended';
|
|
11695
11935
|
}, {
|
|
@@ -11750,7 +11990,7 @@ export declare const schemaDict: {
|
|
|
11750
11990
|
readonly defs: {
|
|
11751
11991
|
readonly main: {
|
|
11752
11992
|
readonly type: 'procedure';
|
|
11753
|
-
readonly description: '
|
|
11993
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
11754
11994
|
readonly errors: [{
|
|
11755
11995
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
11756
11996
|
}, {
|
|
@@ -11797,7 +12037,6 @@ export declare const schemaDict: {
|
|
|
11797
12037
|
readonly ChatBskyGroupDefs: {
|
|
11798
12038
|
readonly lexicon: 1;
|
|
11799
12039
|
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
12040
|
readonly defs: {
|
|
11802
12041
|
readonly linkEnabledStatus: {
|
|
11803
12042
|
readonly type: 'string';
|
|
@@ -11956,7 +12195,7 @@ export declare const schemaDict: {
|
|
|
11956
12195
|
readonly defs: {
|
|
11957
12196
|
readonly main: {
|
|
11958
12197
|
readonly type: 'procedure';
|
|
11959
|
-
readonly description: '
|
|
12198
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
11960
12199
|
readonly errors: [{
|
|
11961
12200
|
readonly name: 'InvalidConvo';
|
|
11962
12201
|
}, {
|
|
@@ -11998,7 +12237,7 @@ export declare const schemaDict: {
|
|
|
11998
12237
|
readonly defs: {
|
|
11999
12238
|
readonly main: {
|
|
12000
12239
|
readonly type: 'procedure';
|
|
12001
|
-
readonly description: '
|
|
12240
|
+
readonly description: 'Edits group settings.';
|
|
12002
12241
|
readonly errors: [{
|
|
12003
12242
|
readonly name: 'ConvoLocked';
|
|
12004
12243
|
}, {
|
|
@@ -12018,8 +12257,8 @@ export declare const schemaDict: {
|
|
|
12018
12257
|
readonly name: {
|
|
12019
12258
|
readonly type: 'string';
|
|
12020
12259
|
readonly minLength: 1;
|
|
12021
|
-
readonly maxGraphemes:
|
|
12022
|
-
readonly maxLength:
|
|
12260
|
+
readonly maxGraphemes: 50;
|
|
12261
|
+
readonly maxLength: 500;
|
|
12023
12262
|
};
|
|
12024
12263
|
};
|
|
12025
12264
|
};
|
|
@@ -12046,7 +12285,7 @@ export declare const schemaDict: {
|
|
|
12046
12285
|
readonly defs: {
|
|
12047
12286
|
readonly main: {
|
|
12048
12287
|
readonly type: 'procedure';
|
|
12049
|
-
readonly description: '
|
|
12288
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
12050
12289
|
readonly errors: [{
|
|
12051
12290
|
readonly name: 'InvalidConvo';
|
|
12052
12291
|
}, {
|
|
@@ -12095,7 +12334,7 @@ export declare const schemaDict: {
|
|
|
12095
12334
|
readonly defs: {
|
|
12096
12335
|
readonly main: {
|
|
12097
12336
|
readonly type: 'procedure';
|
|
12098
|
-
readonly description: '
|
|
12337
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
12099
12338
|
readonly errors: [{
|
|
12100
12339
|
readonly name: 'InvalidConvo';
|
|
12101
12340
|
}, {
|
|
@@ -12139,7 +12378,7 @@ export declare const schemaDict: {
|
|
|
12139
12378
|
readonly defs: {
|
|
12140
12379
|
readonly main: {
|
|
12141
12380
|
readonly type: 'query';
|
|
12142
|
-
readonly description: "
|
|
12381
|
+
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
12382
|
readonly parameters: {
|
|
12144
12383
|
readonly type: 'params';
|
|
12145
12384
|
readonly required: ["codes"];
|
|
@@ -12179,7 +12418,7 @@ export declare const schemaDict: {
|
|
|
12179
12418
|
readonly defs: {
|
|
12180
12419
|
readonly main: {
|
|
12181
12420
|
readonly type: 'query';
|
|
12182
|
-
readonly description: "
|
|
12421
|
+
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
12422
|
readonly errors: [{
|
|
12184
12423
|
readonly name: 'InvalidConvo';
|
|
12185
12424
|
}, {
|
|
@@ -12231,7 +12470,7 @@ export declare const schemaDict: {
|
|
|
12231
12470
|
readonly defs: {
|
|
12232
12471
|
readonly main: {
|
|
12233
12472
|
readonly type: 'query';
|
|
12234
|
-
readonly description: '
|
|
12473
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
12235
12474
|
readonly parameters: {
|
|
12236
12475
|
readonly type: 'params';
|
|
12237
12476
|
readonly required: ["subject"];
|
|
@@ -12279,7 +12518,7 @@ export declare const schemaDict: {
|
|
|
12279
12518
|
readonly defs: {
|
|
12280
12519
|
readonly main: {
|
|
12281
12520
|
readonly type: 'procedure';
|
|
12282
|
-
readonly description: '
|
|
12521
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
12283
12522
|
readonly errors: [{
|
|
12284
12523
|
readonly name: 'InvalidConvo';
|
|
12285
12524
|
}, {
|
|
@@ -12318,7 +12557,7 @@ export declare const schemaDict: {
|
|
|
12318
12557
|
readonly defs: {
|
|
12319
12558
|
readonly main: {
|
|
12320
12559
|
readonly type: 'procedure';
|
|
12321
|
-
readonly description: "
|
|
12560
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
12322
12561
|
readonly errors: [{
|
|
12323
12562
|
readonly name: 'InvalidConvo';
|
|
12324
12563
|
}, {
|
|
@@ -12366,7 +12605,7 @@ export declare const schemaDict: {
|
|
|
12366
12605
|
readonly defs: {
|
|
12367
12606
|
readonly main: {
|
|
12368
12607
|
readonly type: 'procedure';
|
|
12369
|
-
readonly description: '
|
|
12608
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
12370
12609
|
readonly errors: [{
|
|
12371
12610
|
readonly name: 'ConvoLocked';
|
|
12372
12611
|
}, {
|
|
@@ -12419,7 +12658,7 @@ export declare const schemaDict: {
|
|
|
12419
12658
|
readonly defs: {
|
|
12420
12659
|
readonly main: {
|
|
12421
12660
|
readonly type: 'procedure';
|
|
12422
|
-
readonly description: '
|
|
12661
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
12423
12662
|
readonly errors: [{
|
|
12424
12663
|
readonly name: 'InvalidConvo';
|
|
12425
12664
|
}, {
|
|
@@ -12454,7 +12693,7 @@ export declare const schemaDict: {
|
|
|
12454
12693
|
readonly defs: {
|
|
12455
12694
|
readonly main: {
|
|
12456
12695
|
readonly type: 'procedure';
|
|
12457
|
-
readonly description: '
|
|
12696
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
12458
12697
|
readonly errors: [{
|
|
12459
12698
|
readonly name: 'InvalidJoinRequest';
|
|
12460
12699
|
}];
|
|
@@ -12486,7 +12725,7 @@ export declare const schemaDict: {
|
|
|
12486
12725
|
readonly id: 'chat.bsky.moderation.defs';
|
|
12487
12726
|
readonly defs: {
|
|
12488
12727
|
readonly convoView: {
|
|
12489
|
-
readonly description: '
|
|
12728
|
+
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
12729
|
readonly type: 'object';
|
|
12491
12730
|
readonly required: ["id", "rev"];
|
|
12492
12731
|
readonly properties: {
|
|
@@ -12504,12 +12743,12 @@ export declare const schemaDict: {
|
|
|
12504
12743
|
};
|
|
12505
12744
|
};
|
|
12506
12745
|
readonly directConvo: {
|
|
12507
|
-
readonly description: '
|
|
12746
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
12508
12747
|
readonly type: 'object';
|
|
12509
12748
|
readonly properties: {};
|
|
12510
12749
|
};
|
|
12511
12750
|
readonly groupConvo: {
|
|
12512
|
-
readonly description: '
|
|
12751
|
+
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
12752
|
readonly type: 'object';
|
|
12514
12753
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
12515
12754
|
readonly properties: {
|
|
@@ -12541,8 +12780,8 @@ export declare const schemaDict: {
|
|
|
12541
12780
|
readonly name: {
|
|
12542
12781
|
readonly type: 'string';
|
|
12543
12782
|
readonly description: 'The display name of the group conversation.';
|
|
12544
|
-
readonly maxGraphemes:
|
|
12545
|
-
readonly maxLength:
|
|
12783
|
+
readonly maxGraphemes: 50;
|
|
12784
|
+
readonly maxLength: 500;
|
|
12546
12785
|
};
|
|
12547
12786
|
};
|
|
12548
12787
|
};
|
|
@@ -12612,7 +12851,7 @@ export declare const schemaDict: {
|
|
|
12612
12851
|
readonly defs: {
|
|
12613
12852
|
readonly main: {
|
|
12614
12853
|
readonly type: 'query';
|
|
12615
|
-
readonly description: '
|
|
12854
|
+
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
12855
|
readonly errors: [{
|
|
12617
12856
|
readonly name: 'InvalidConvo';
|
|
12618
12857
|
}];
|
|
@@ -12647,7 +12886,7 @@ export declare const schemaDict: {
|
|
|
12647
12886
|
readonly defs: {
|
|
12648
12887
|
readonly main: {
|
|
12649
12888
|
readonly type: 'query';
|
|
12650
|
-
readonly description: '
|
|
12889
|
+
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
12890
|
readonly errors: [{
|
|
12652
12891
|
readonly name: 'InvalidConvo';
|
|
12653
12892
|
}];
|
|
@@ -12697,7 +12936,7 @@ export declare const schemaDict: {
|
|
|
12697
12936
|
readonly defs: {
|
|
12698
12937
|
readonly main: {
|
|
12699
12938
|
readonly type: 'query';
|
|
12700
|
-
readonly description: '
|
|
12939
|
+
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
12940
|
readonly parameters: {
|
|
12702
12941
|
readonly type: 'params';
|
|
12703
12942
|
readonly required: ["convoIds"];
|
|
@@ -25388,6 +25627,14 @@ export declare const schemas: ({
|
|
|
25388
25627
|
readonly type: 'integer';
|
|
25389
25628
|
readonly description: 'The minimum age (as a whole integer) required to use Bluesky in this region.';
|
|
25390
25629
|
};
|
|
25630
|
+
readonly additionalVerificationMethods: {
|
|
25631
|
+
readonly type: 'array';
|
|
25632
|
+
readonly description: 'Verification methods permitted in this region in addition to the third-party (KWS) flow, which is always supported. `device` permits using the native on-device age APIs (e.g. Apple Declared Age Range, Google Play Age Signals).';
|
|
25633
|
+
readonly items: {
|
|
25634
|
+
readonly type: 'string';
|
|
25635
|
+
readonly knownValues: ["device"];
|
|
25636
|
+
};
|
|
25637
|
+
};
|
|
25391
25638
|
readonly rules: {
|
|
25392
25639
|
readonly type: 'array';
|
|
25393
25640
|
readonly description: 'The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.';
|
|
@@ -28857,6 +29104,236 @@ export declare const schemas: ({
|
|
|
28857
29104
|
}];
|
|
28858
29105
|
};
|
|
28859
29106
|
};
|
|
29107
|
+
} | {
|
|
29108
|
+
readonly lexicon: 1;
|
|
29109
|
+
readonly id: 'app.bsky.feed.searchPostsV2';
|
|
29110
|
+
readonly defs: {
|
|
29111
|
+
readonly main: {
|
|
29112
|
+
readonly type: 'query';
|
|
29113
|
+
readonly description: 'Find posts matching a search query or filters, returning search hits for matching post records.';
|
|
29114
|
+
readonly parameters: {
|
|
29115
|
+
readonly type: 'params';
|
|
29116
|
+
readonly required: [];
|
|
29117
|
+
readonly properties: {
|
|
29118
|
+
readonly cursor: {
|
|
29119
|
+
readonly type: 'string';
|
|
29120
|
+
readonly description: 'Optional pagination cursor.';
|
|
29121
|
+
};
|
|
29122
|
+
readonly limit: {
|
|
29123
|
+
readonly type: 'integer';
|
|
29124
|
+
readonly minimum: 1;
|
|
29125
|
+
readonly maximum: 100;
|
|
29126
|
+
readonly default: 25;
|
|
29127
|
+
readonly description: 'Maximum number of results to return.';
|
|
29128
|
+
};
|
|
29129
|
+
readonly query: {
|
|
29130
|
+
readonly type: 'string';
|
|
29131
|
+
readonly description: 'Search query string. A query or at least one filter is required.';
|
|
29132
|
+
};
|
|
29133
|
+
readonly sort: {
|
|
29134
|
+
readonly type: 'string';
|
|
29135
|
+
readonly knownValues: ["recent", "top"];
|
|
29136
|
+
readonly description: "Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking.";
|
|
29137
|
+
};
|
|
29138
|
+
readonly authors: {
|
|
29139
|
+
readonly type: 'array';
|
|
29140
|
+
readonly items: {
|
|
29141
|
+
readonly type: 'string';
|
|
29142
|
+
readonly format: 'at-identifier';
|
|
29143
|
+
};
|
|
29144
|
+
readonly description: 'Include posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29145
|
+
};
|
|
29146
|
+
readonly mentions: {
|
|
29147
|
+
readonly type: 'array';
|
|
29148
|
+
readonly items: {
|
|
29149
|
+
readonly type: 'string';
|
|
29150
|
+
readonly format: 'at-identifier';
|
|
29151
|
+
};
|
|
29152
|
+
readonly description: 'Include posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29153
|
+
};
|
|
29154
|
+
readonly domains: {
|
|
29155
|
+
readonly type: 'array';
|
|
29156
|
+
readonly items: {
|
|
29157
|
+
readonly type: 'string';
|
|
29158
|
+
};
|
|
29159
|
+
readonly description: 'Include posts that link to any of these domains.';
|
|
29160
|
+
};
|
|
29161
|
+
readonly urls: {
|
|
29162
|
+
readonly type: 'array';
|
|
29163
|
+
readonly items: {
|
|
29164
|
+
readonly type: 'string';
|
|
29165
|
+
readonly format: 'uri';
|
|
29166
|
+
};
|
|
29167
|
+
readonly description: 'Include posts that link to any of these URLs.';
|
|
29168
|
+
};
|
|
29169
|
+
readonly embeddedAtUris: {
|
|
29170
|
+
readonly type: 'array';
|
|
29171
|
+
readonly items: {
|
|
29172
|
+
readonly type: 'string';
|
|
29173
|
+
readonly format: 'at-uri';
|
|
29174
|
+
};
|
|
29175
|
+
readonly description: 'Include posts that embed any of these AT URIs.';
|
|
29176
|
+
};
|
|
29177
|
+
readonly hashtags: {
|
|
29178
|
+
readonly type: 'array';
|
|
29179
|
+
readonly items: {
|
|
29180
|
+
readonly type: 'string';
|
|
29181
|
+
readonly maxLength: 640;
|
|
29182
|
+
readonly maxGraphemes: 64;
|
|
29183
|
+
};
|
|
29184
|
+
readonly description: 'Include posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29185
|
+
};
|
|
29186
|
+
readonly excludeAuthors: {
|
|
29187
|
+
readonly type: 'array';
|
|
29188
|
+
readonly items: {
|
|
29189
|
+
readonly type: 'string';
|
|
29190
|
+
readonly format: 'at-identifier';
|
|
29191
|
+
};
|
|
29192
|
+
readonly description: 'Exclude posts by any of these authors. Handles are resolved to DIDs before searching.';
|
|
29193
|
+
};
|
|
29194
|
+
readonly excludeMentions: {
|
|
29195
|
+
readonly type: 'array';
|
|
29196
|
+
readonly items: {
|
|
29197
|
+
readonly type: 'string';
|
|
29198
|
+
readonly format: 'at-identifier';
|
|
29199
|
+
};
|
|
29200
|
+
readonly description: 'Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching.';
|
|
29201
|
+
};
|
|
29202
|
+
readonly excludeDomains: {
|
|
29203
|
+
readonly type: 'array';
|
|
29204
|
+
readonly items: {
|
|
29205
|
+
readonly type: 'string';
|
|
29206
|
+
};
|
|
29207
|
+
readonly description: 'Exclude posts that link to any of these domains.';
|
|
29208
|
+
};
|
|
29209
|
+
readonly excludeUrls: {
|
|
29210
|
+
readonly type: 'array';
|
|
29211
|
+
readonly items: {
|
|
29212
|
+
readonly type: 'string';
|
|
29213
|
+
readonly format: 'uri';
|
|
29214
|
+
};
|
|
29215
|
+
readonly description: 'Exclude posts that link to any of these URLs.';
|
|
29216
|
+
};
|
|
29217
|
+
readonly excludeEmbeddedAtUris: {
|
|
29218
|
+
readonly type: 'array';
|
|
29219
|
+
readonly items: {
|
|
29220
|
+
readonly type: 'string';
|
|
29221
|
+
readonly format: 'at-uri';
|
|
29222
|
+
};
|
|
29223
|
+
readonly description: 'Exclude posts that embed any of these AT URIs.';
|
|
29224
|
+
};
|
|
29225
|
+
readonly excludeHashtags: {
|
|
29226
|
+
readonly type: 'array';
|
|
29227
|
+
readonly items: {
|
|
29228
|
+
readonly type: 'string';
|
|
29229
|
+
readonly maxLength: 640;
|
|
29230
|
+
readonly maxGraphemes: 64;
|
|
29231
|
+
};
|
|
29232
|
+
readonly description: 'Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix.';
|
|
29233
|
+
};
|
|
29234
|
+
readonly since: {
|
|
29235
|
+
readonly type: 'string';
|
|
29236
|
+
readonly description: 'Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD).';
|
|
29237
|
+
};
|
|
29238
|
+
readonly until: {
|
|
29239
|
+
readonly type: 'string';
|
|
29240
|
+
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).';
|
|
29241
|
+
};
|
|
29242
|
+
readonly allTime: {
|
|
29243
|
+
readonly type: 'boolean';
|
|
29244
|
+
readonly description: 'Search the full index instead of the recent-post window.';
|
|
29245
|
+
};
|
|
29246
|
+
readonly languages: {
|
|
29247
|
+
readonly type: 'array';
|
|
29248
|
+
readonly items: {
|
|
29249
|
+
readonly type: 'string';
|
|
29250
|
+
readonly format: 'language';
|
|
29251
|
+
};
|
|
29252
|
+
readonly description: 'Include posts whose language matches any of these language codes.';
|
|
29253
|
+
};
|
|
29254
|
+
readonly excludeLanguages: {
|
|
29255
|
+
readonly type: 'array';
|
|
29256
|
+
readonly items: {
|
|
29257
|
+
readonly type: 'string';
|
|
29258
|
+
readonly format: 'language';
|
|
29259
|
+
};
|
|
29260
|
+
readonly description: 'Exclude posts whose language matches any of these language codes.';
|
|
29261
|
+
};
|
|
29262
|
+
readonly hasMedia: {
|
|
29263
|
+
readonly type: 'boolean';
|
|
29264
|
+
readonly description: 'Include only posts with media.';
|
|
29265
|
+
};
|
|
29266
|
+
readonly hasVideo: {
|
|
29267
|
+
readonly type: 'boolean';
|
|
29268
|
+
readonly description: 'Include only posts with video.';
|
|
29269
|
+
};
|
|
29270
|
+
readonly replyParentUri: {
|
|
29271
|
+
readonly type: 'string';
|
|
29272
|
+
readonly format: 'at-uri';
|
|
29273
|
+
readonly description: 'Include only direct replies to this parent post URI.';
|
|
29274
|
+
};
|
|
29275
|
+
readonly threadRootUri: {
|
|
29276
|
+
readonly type: 'string';
|
|
29277
|
+
readonly format: 'at-uri';
|
|
29278
|
+
readonly description: 'Include only posts in the thread rooted at this post URI.';
|
|
29279
|
+
};
|
|
29280
|
+
readonly excludeReplies: {
|
|
29281
|
+
readonly type: 'boolean';
|
|
29282
|
+
readonly description: 'Exclude replies from results. Mutually exclusive with repliesOnly.';
|
|
29283
|
+
};
|
|
29284
|
+
readonly repliesOnly: {
|
|
29285
|
+
readonly type: 'boolean';
|
|
29286
|
+
readonly description: 'Include only replies. Mutually exclusive with excludeReplies.';
|
|
29287
|
+
};
|
|
29288
|
+
readonly following: {
|
|
29289
|
+
readonly type: 'boolean';
|
|
29290
|
+
readonly description: 'Include only posts from accounts followed by the viewer.';
|
|
29291
|
+
};
|
|
29292
|
+
readonly queryLanguage: {
|
|
29293
|
+
readonly type: 'string';
|
|
29294
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29295
|
+
readonly description: 'Language analyzer hint for the query text. If unset, the server auto-detects when possible.';
|
|
29296
|
+
};
|
|
29297
|
+
};
|
|
29298
|
+
};
|
|
29299
|
+
readonly output: {
|
|
29300
|
+
readonly encoding: 'application/json';
|
|
29301
|
+
readonly schema: {
|
|
29302
|
+
readonly type: 'object';
|
|
29303
|
+
readonly required: ["posts"];
|
|
29304
|
+
readonly properties: {
|
|
29305
|
+
readonly cursor: {
|
|
29306
|
+
readonly type: 'string';
|
|
29307
|
+
readonly description: 'Cursor for the next page of results.';
|
|
29308
|
+
};
|
|
29309
|
+
readonly hitsTotal: {
|
|
29310
|
+
readonly type: 'integer';
|
|
29311
|
+
readonly description: 'Estimated total number of matching hits. May be rounded or truncated.';
|
|
29312
|
+
};
|
|
29313
|
+
readonly posts: {
|
|
29314
|
+
readonly type: 'array';
|
|
29315
|
+
readonly items: {
|
|
29316
|
+
readonly type: 'ref';
|
|
29317
|
+
readonly ref: 'lex:app.bsky.feed.defs#postView';
|
|
29318
|
+
};
|
|
29319
|
+
readonly description: 'Hydrated views of matching posts.';
|
|
29320
|
+
};
|
|
29321
|
+
readonly detectedQueryLanguages: {
|
|
29322
|
+
readonly type: 'array';
|
|
29323
|
+
readonly items: {
|
|
29324
|
+
readonly type: 'string';
|
|
29325
|
+
readonly knownValues: ["ja", "zh", "ko", "th", "ar"];
|
|
29326
|
+
};
|
|
29327
|
+
readonly description: 'Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts.';
|
|
29328
|
+
};
|
|
29329
|
+
};
|
|
29330
|
+
};
|
|
29331
|
+
};
|
|
29332
|
+
readonly errors: [{
|
|
29333
|
+
readonly name: 'BadQueryString';
|
|
29334
|
+
}];
|
|
29335
|
+
};
|
|
29336
|
+
};
|
|
28860
29337
|
} | {
|
|
28861
29338
|
readonly lexicon: 1;
|
|
28862
29339
|
readonly id: 'app.bsky.feed.sendInteractions';
|
|
@@ -33242,7 +33719,7 @@ export declare const schemas: ({
|
|
|
33242
33719
|
readonly knownValues: ["all", "none", "following"];
|
|
33243
33720
|
};
|
|
33244
33721
|
readonly allowGroupInvites: {
|
|
33245
|
-
readonly description: '
|
|
33722
|
+
readonly description: 'Declaration about group chat invitation preferences for the record owner.';
|
|
33246
33723
|
readonly type: 'string';
|
|
33247
33724
|
readonly knownValues: ["all", "none", "following"];
|
|
33248
33725
|
};
|
|
@@ -33314,12 +33791,11 @@ export declare const schemas: ({
|
|
|
33314
33791
|
};
|
|
33315
33792
|
};
|
|
33316
33793
|
readonly directConvoMember: {
|
|
33317
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33318
33794
|
readonly type: 'object';
|
|
33319
33795
|
readonly properties: {};
|
|
33320
33796
|
};
|
|
33321
33797
|
readonly groupConvoMember: {
|
|
33322
|
-
readonly description: '
|
|
33798
|
+
readonly description: 'A current group convo member.';
|
|
33323
33799
|
readonly type: 'object';
|
|
33324
33800
|
readonly required: ["role"];
|
|
33325
33801
|
readonly properties: {
|
|
@@ -33336,7 +33812,7 @@ export declare const schemas: ({
|
|
|
33336
33812
|
};
|
|
33337
33813
|
};
|
|
33338
33814
|
readonly pastGroupConvoMember: {
|
|
33339
|
-
readonly description: '
|
|
33815
|
+
readonly description: 'A past group convo member.';
|
|
33340
33816
|
readonly type: 'object';
|
|
33341
33817
|
readonly required: [];
|
|
33342
33818
|
readonly properties: {};
|
|
@@ -33614,7 +34090,7 @@ export declare const schemas: ({
|
|
|
33614
34090
|
readonly replyTo: {
|
|
33615
34091
|
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
34092
|
readonly type: 'union';
|
|
33617
|
-
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
34093
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView", "lex:chat.bsky.convo.defs#messageBeforeUserJoinedGroupView"];
|
|
33618
34094
|
};
|
|
33619
34095
|
readonly sender: {
|
|
33620
34096
|
readonly type: 'ref';
|
|
@@ -33637,7 +34113,6 @@ export declare const schemas: ({
|
|
|
33637
34113
|
};
|
|
33638
34114
|
};
|
|
33639
34115
|
readonly systemMessageView: {
|
|
33640
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33641
34116
|
readonly type: 'object';
|
|
33642
34117
|
readonly required: ["id", "rev", "sentAt", "data"];
|
|
33643
34118
|
readonly properties: {
|
|
@@ -33658,7 +34133,7 @@ export declare const schemas: ({
|
|
|
33658
34133
|
};
|
|
33659
34134
|
};
|
|
33660
34135
|
readonly systemMessageDataAddMember: {
|
|
33661
|
-
readonly description: '
|
|
34136
|
+
readonly description: 'System message indicating a user was added to the group convo.';
|
|
33662
34137
|
readonly type: 'object';
|
|
33663
34138
|
readonly required: ["member", "role", "addedBy"];
|
|
33664
34139
|
readonly properties: {
|
|
@@ -33679,7 +34154,7 @@ export declare const schemas: ({
|
|
|
33679
34154
|
};
|
|
33680
34155
|
};
|
|
33681
34156
|
readonly systemMessageDataRemoveMember: {
|
|
33682
|
-
readonly description: '
|
|
34157
|
+
readonly description: 'System message indicating a user was removed from the group convo.';
|
|
33683
34158
|
readonly type: 'object';
|
|
33684
34159
|
readonly required: ["member", "removedBy"];
|
|
33685
34160
|
readonly properties: {
|
|
@@ -33695,7 +34170,7 @@ export declare const schemas: ({
|
|
|
33695
34170
|
};
|
|
33696
34171
|
};
|
|
33697
34172
|
readonly systemMessageDataMemberJoin: {
|
|
33698
|
-
readonly description: '
|
|
34173
|
+
readonly description: 'System message indicating a user joined the group convo via join link.';
|
|
33699
34174
|
readonly type: 'object';
|
|
33700
34175
|
readonly required: ["member", "role"];
|
|
33701
34176
|
readonly properties: {
|
|
@@ -33717,7 +34192,7 @@ export declare const schemas: ({
|
|
|
33717
34192
|
};
|
|
33718
34193
|
};
|
|
33719
34194
|
readonly systemMessageDataMemberLeave: {
|
|
33720
|
-
readonly description: '
|
|
34195
|
+
readonly description: 'System message indicating a user voluntarily left the group convo.';
|
|
33721
34196
|
readonly type: 'object';
|
|
33722
34197
|
readonly required: ["member"];
|
|
33723
34198
|
readonly properties: {
|
|
@@ -33729,7 +34204,7 @@ export declare const schemas: ({
|
|
|
33729
34204
|
};
|
|
33730
34205
|
};
|
|
33731
34206
|
readonly systemMessageDataLockConvo: {
|
|
33732
|
-
readonly description: '
|
|
34207
|
+
readonly description: 'System message indicating the group convo was locked.';
|
|
33733
34208
|
readonly type: 'object';
|
|
33734
34209
|
readonly required: ["lockedBy"];
|
|
33735
34210
|
readonly properties: {
|
|
@@ -33741,7 +34216,7 @@ export declare const schemas: ({
|
|
|
33741
34216
|
};
|
|
33742
34217
|
};
|
|
33743
34218
|
readonly systemMessageDataUnlockConvo: {
|
|
33744
|
-
readonly description: '
|
|
34219
|
+
readonly description: 'System message indicating the group convo was unlocked.';
|
|
33745
34220
|
readonly type: 'object';
|
|
33746
34221
|
readonly required: ["unlockedBy"];
|
|
33747
34222
|
readonly properties: {
|
|
@@ -33753,7 +34228,7 @@ export declare const schemas: ({
|
|
|
33753
34228
|
};
|
|
33754
34229
|
};
|
|
33755
34230
|
readonly systemMessageDataLockConvoPermanently: {
|
|
33756
|
-
readonly description: '
|
|
34231
|
+
readonly description: 'System message indicating the group convo was locked permanently.';
|
|
33757
34232
|
readonly type: 'object';
|
|
33758
34233
|
readonly required: ["lockedBy"];
|
|
33759
34234
|
readonly properties: {
|
|
@@ -33765,7 +34240,7 @@ export declare const schemas: ({
|
|
|
33765
34240
|
};
|
|
33766
34241
|
};
|
|
33767
34242
|
readonly systemMessageDataEditGroup: {
|
|
33768
|
-
readonly description: '
|
|
34243
|
+
readonly description: 'System message indicating the group info was edited.';
|
|
33769
34244
|
readonly type: 'object';
|
|
33770
34245
|
readonly properties: {
|
|
33771
34246
|
readonly oldName: {
|
|
@@ -33779,22 +34254,22 @@ export declare const schemas: ({
|
|
|
33779
34254
|
};
|
|
33780
34255
|
};
|
|
33781
34256
|
readonly systemMessageDataCreateJoinLink: {
|
|
33782
|
-
readonly description: '
|
|
34257
|
+
readonly description: 'System message indicating the group join link was created.';
|
|
33783
34258
|
readonly type: 'object';
|
|
33784
34259
|
readonly properties: {};
|
|
33785
34260
|
};
|
|
33786
34261
|
readonly systemMessageDataEditJoinLink: {
|
|
33787
|
-
readonly description: '
|
|
34262
|
+
readonly description: 'System message indicating the group join link was edited.';
|
|
33788
34263
|
readonly type: 'object';
|
|
33789
34264
|
readonly properties: {};
|
|
33790
34265
|
};
|
|
33791
34266
|
readonly systemMessageDataEnableJoinLink: {
|
|
33792
|
-
readonly description: '
|
|
34267
|
+
readonly description: 'System message indicating the group join link was enabled.';
|
|
33793
34268
|
readonly type: 'object';
|
|
33794
34269
|
readonly properties: {};
|
|
33795
34270
|
};
|
|
33796
34271
|
readonly systemMessageDataDisableJoinLink: {
|
|
33797
|
-
readonly description: '
|
|
34272
|
+
readonly description: 'System message indicating the group join link was disabled.';
|
|
33798
34273
|
readonly type: 'object';
|
|
33799
34274
|
readonly properties: {};
|
|
33800
34275
|
};
|
|
@@ -33818,6 +34293,11 @@ export declare const schemas: ({
|
|
|
33818
34293
|
};
|
|
33819
34294
|
};
|
|
33820
34295
|
};
|
|
34296
|
+
readonly messageBeforeUserJoinedGroupView: {
|
|
34297
|
+
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.";
|
|
34298
|
+
readonly type: 'object';
|
|
34299
|
+
readonly properties: {};
|
|
34300
|
+
};
|
|
33821
34301
|
readonly messageViewSender: {
|
|
33822
34302
|
readonly type: 'object';
|
|
33823
34303
|
readonly required: ["did"];
|
|
@@ -33914,12 +34394,10 @@ export declare const schemas: ({
|
|
|
33914
34394
|
};
|
|
33915
34395
|
};
|
|
33916
34396
|
readonly directConvo: {
|
|
33917
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33918
34397
|
readonly type: 'object';
|
|
33919
34398
|
readonly properties: {};
|
|
33920
34399
|
};
|
|
33921
34400
|
readonly groupConvo: {
|
|
33922
|
-
readonly description: '[NOTE: This is under active development and should be considered unstable while this note is here].';
|
|
33923
34401
|
readonly type: 'object';
|
|
33924
34402
|
readonly required: ["createdAt", "lockStatus", "lockStatusModerationOverride", "memberCount", "memberLimit", "name"];
|
|
33925
34403
|
readonly properties: {
|
|
@@ -33955,8 +34433,8 @@ export declare const schemas: ({
|
|
|
33955
34433
|
readonly name: {
|
|
33956
34434
|
readonly type: 'string';
|
|
33957
34435
|
readonly description: 'The display name of the group conversation.';
|
|
33958
|
-
readonly maxGraphemes:
|
|
33959
|
-
readonly maxLength:
|
|
34436
|
+
readonly maxGraphemes: 50;
|
|
34437
|
+
readonly maxLength: 500;
|
|
33960
34438
|
};
|
|
33961
34439
|
readonly unreadJoinRequestCount: {
|
|
33962
34440
|
readonly type: 'integer';
|
|
@@ -34147,7 +34625,7 @@ export declare const schemas: ({
|
|
|
34147
34625
|
};
|
|
34148
34626
|
};
|
|
34149
34627
|
readonly logReadConvo: {
|
|
34150
|
-
readonly description: '
|
|
34628
|
+
readonly description: 'Event indicating a convo was read up to a certain message.';
|
|
34151
34629
|
readonly type: 'object';
|
|
34152
34630
|
readonly required: ["rev", "convoId", "message"];
|
|
34153
34631
|
readonly properties: {
|
|
@@ -34164,7 +34642,7 @@ export declare const schemas: ({
|
|
|
34164
34642
|
};
|
|
34165
34643
|
};
|
|
34166
34644
|
readonly logAddMember: {
|
|
34167
|
-
readonly description: '
|
|
34645
|
+
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
34646
|
readonly type: 'object';
|
|
34169
34647
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34170
34648
|
readonly properties: {
|
|
@@ -34190,7 +34668,7 @@ export declare const schemas: ({
|
|
|
34190
34668
|
};
|
|
34191
34669
|
};
|
|
34192
34670
|
readonly logRemoveMember: {
|
|
34193
|
-
readonly description: "
|
|
34671
|
+
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
34672
|
readonly type: 'object';
|
|
34195
34673
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34196
34674
|
readonly properties: {
|
|
@@ -34216,7 +34694,7 @@ export declare const schemas: ({
|
|
|
34216
34694
|
};
|
|
34217
34695
|
};
|
|
34218
34696
|
readonly logMemberJoin: {
|
|
34219
|
-
readonly description: '
|
|
34697
|
+
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
34698
|
readonly type: 'object';
|
|
34221
34699
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34222
34700
|
readonly properties: {
|
|
@@ -34242,7 +34720,7 @@ export declare const schemas: ({
|
|
|
34242
34720
|
};
|
|
34243
34721
|
};
|
|
34244
34722
|
readonly logMemberLeave: {
|
|
34245
|
-
readonly description: "
|
|
34723
|
+
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
34724
|
readonly type: 'object';
|
|
34247
34725
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34248
34726
|
readonly properties: {
|
|
@@ -34268,7 +34746,7 @@ export declare const schemas: ({
|
|
|
34268
34746
|
};
|
|
34269
34747
|
};
|
|
34270
34748
|
readonly logLockConvo: {
|
|
34271
|
-
readonly description: '
|
|
34749
|
+
readonly description: 'Event indicating a group convo was locked.';
|
|
34272
34750
|
readonly type: 'object';
|
|
34273
34751
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34274
34752
|
readonly properties: {
|
|
@@ -34294,7 +34772,7 @@ export declare const schemas: ({
|
|
|
34294
34772
|
};
|
|
34295
34773
|
};
|
|
34296
34774
|
readonly logUnlockConvo: {
|
|
34297
|
-
readonly description: '
|
|
34775
|
+
readonly description: 'Event indicating a group convo was unlocked.';
|
|
34298
34776
|
readonly type: 'object';
|
|
34299
34777
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34300
34778
|
readonly properties: {
|
|
@@ -34320,7 +34798,7 @@ export declare const schemas: ({
|
|
|
34320
34798
|
};
|
|
34321
34799
|
};
|
|
34322
34800
|
readonly logLockConvoPermanently: {
|
|
34323
|
-
readonly description: '
|
|
34801
|
+
readonly description: 'Event indicating a group convo was locked permanently.';
|
|
34324
34802
|
readonly type: 'object';
|
|
34325
34803
|
readonly required: ["rev", "convoId", "message", "relatedProfiles"];
|
|
34326
34804
|
readonly properties: {
|
|
@@ -34346,7 +34824,7 @@ export declare const schemas: ({
|
|
|
34346
34824
|
};
|
|
34347
34825
|
};
|
|
34348
34826
|
readonly logEditGroup: {
|
|
34349
|
-
readonly description: '
|
|
34827
|
+
readonly description: 'Event indicating info about group convo was edited.';
|
|
34350
34828
|
readonly type: 'object';
|
|
34351
34829
|
readonly required: ["rev", "convoId", "message"];
|
|
34352
34830
|
readonly properties: {
|
|
@@ -34364,7 +34842,7 @@ export declare const schemas: ({
|
|
|
34364
34842
|
};
|
|
34365
34843
|
};
|
|
34366
34844
|
readonly logCreateJoinLink: {
|
|
34367
|
-
readonly description: '
|
|
34845
|
+
readonly description: 'Event indicating a join link was created for a group convo.';
|
|
34368
34846
|
readonly type: 'object';
|
|
34369
34847
|
readonly required: ["rev", "convoId", "message"];
|
|
34370
34848
|
readonly properties: {
|
|
@@ -34382,7 +34860,7 @@ export declare const schemas: ({
|
|
|
34382
34860
|
};
|
|
34383
34861
|
};
|
|
34384
34862
|
readonly logEditJoinLink: {
|
|
34385
|
-
readonly description: '
|
|
34863
|
+
readonly description: 'Event indicating a settings about a join link for a group convo were edited.';
|
|
34386
34864
|
readonly type: 'object';
|
|
34387
34865
|
readonly required: ["rev", "convoId", "message"];
|
|
34388
34866
|
readonly properties: {
|
|
@@ -34400,7 +34878,7 @@ export declare const schemas: ({
|
|
|
34400
34878
|
};
|
|
34401
34879
|
};
|
|
34402
34880
|
readonly logEnableJoinLink: {
|
|
34403
|
-
readonly description: '
|
|
34881
|
+
readonly description: 'Event indicating a join link was enabled for a group convo.';
|
|
34404
34882
|
readonly type: 'object';
|
|
34405
34883
|
readonly required: ["rev", "convoId", "message"];
|
|
34406
34884
|
readonly properties: {
|
|
@@ -34418,7 +34896,7 @@ export declare const schemas: ({
|
|
|
34418
34896
|
};
|
|
34419
34897
|
};
|
|
34420
34898
|
readonly logDisableJoinLink: {
|
|
34421
|
-
readonly description: '
|
|
34899
|
+
readonly description: 'Event indicating a join link was disabled for a group convo.';
|
|
34422
34900
|
readonly type: 'object';
|
|
34423
34901
|
readonly required: ["rev", "convoId", "message"];
|
|
34424
34902
|
readonly properties: {
|
|
@@ -34436,7 +34914,7 @@ export declare const schemas: ({
|
|
|
34436
34914
|
};
|
|
34437
34915
|
};
|
|
34438
34916
|
readonly logIncomingJoinRequest: {
|
|
34439
|
-
readonly description: '
|
|
34917
|
+
readonly description: 'Event indicating a join request was made to a group the viewer owns. Only the owner gets this.';
|
|
34440
34918
|
readonly type: 'object';
|
|
34441
34919
|
readonly required: ["rev", "convoId", "member"];
|
|
34442
34920
|
readonly properties: {
|
|
@@ -34454,7 +34932,7 @@ export declare const schemas: ({
|
|
|
34454
34932
|
};
|
|
34455
34933
|
};
|
|
34456
34934
|
readonly logApproveJoinRequest: {
|
|
34457
|
-
readonly description: '
|
|
34935
|
+
readonly description: 'Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo.';
|
|
34458
34936
|
readonly type: 'object';
|
|
34459
34937
|
readonly required: ["rev", "convoId", "member"];
|
|
34460
34938
|
readonly properties: {
|
|
@@ -34472,7 +34950,7 @@ export declare const schemas: ({
|
|
|
34472
34950
|
};
|
|
34473
34951
|
};
|
|
34474
34952
|
readonly logRejectJoinRequest: {
|
|
34475
|
-
readonly description: '
|
|
34953
|
+
readonly description: 'Event indicating a join request was rejected by the viewer. Only the owner gets this.';
|
|
34476
34954
|
readonly type: 'object';
|
|
34477
34955
|
readonly required: ["rev", "convoId", "member"];
|
|
34478
34956
|
readonly properties: {
|
|
@@ -34490,7 +34968,7 @@ export declare const schemas: ({
|
|
|
34490
34968
|
};
|
|
34491
34969
|
};
|
|
34492
34970
|
readonly logOutgoingJoinRequest: {
|
|
34493
|
-
readonly description: '
|
|
34971
|
+
readonly description: 'Event indicating a join request was made by the requester. Only requester actor gets this.';
|
|
34494
34972
|
readonly type: 'object';
|
|
34495
34973
|
readonly required: ["rev", "convoId"];
|
|
34496
34974
|
readonly properties: {
|
|
@@ -34503,7 +34981,7 @@ export declare const schemas: ({
|
|
|
34503
34981
|
};
|
|
34504
34982
|
};
|
|
34505
34983
|
readonly logWithdrawIncomingJoinRequest: {
|
|
34506
|
-
readonly description: '
|
|
34984
|
+
readonly description: 'Event indicating a prospective member withdrew their join request. Only the owner gets this.';
|
|
34507
34985
|
readonly type: 'object';
|
|
34508
34986
|
readonly required: ["rev", "convoId", "member"];
|
|
34509
34987
|
readonly properties: {
|
|
@@ -34521,7 +34999,7 @@ export declare const schemas: ({
|
|
|
34521
34999
|
};
|
|
34522
35000
|
};
|
|
34523
35001
|
readonly logWithdrawOutgoingJoinRequest: {
|
|
34524
|
-
readonly description: '
|
|
35002
|
+
readonly description: 'Event indicating the viewer withdrew their own join request. Only requester actor gets this.';
|
|
34525
35003
|
readonly type: 'object';
|
|
34526
35004
|
readonly required: ["rev", "convoId"];
|
|
34527
35005
|
readonly properties: {
|
|
@@ -34534,7 +35012,7 @@ export declare const schemas: ({
|
|
|
34534
35012
|
};
|
|
34535
35013
|
};
|
|
34536
35014
|
readonly logReadJoinRequests: {
|
|
34537
|
-
readonly description: '
|
|
35015
|
+
readonly description: 'Event indicating the group owner marked join requests as read. Only the owner gets this.';
|
|
34538
35016
|
readonly type: 'object';
|
|
34539
35017
|
readonly required: ["rev", "convoId"];
|
|
34540
35018
|
readonly properties: {
|
|
@@ -34856,7 +35334,7 @@ export declare const schemas: ({
|
|
|
34856
35334
|
readonly defs: {
|
|
34857
35335
|
readonly main: {
|
|
34858
35336
|
readonly type: 'query';
|
|
34859
|
-
readonly description: "
|
|
35337
|
+
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
35338
|
readonly parameters: {
|
|
34861
35339
|
readonly type: 'params';
|
|
34862
35340
|
readonly properties: {
|
|
@@ -34875,11 +35353,11 @@ export declare const schemas: ({
|
|
|
34875
35353
|
readonly properties: {
|
|
34876
35354
|
readonly unreadAcceptedConvos: {
|
|
34877
35355
|
readonly type: 'integer';
|
|
34878
|
-
readonly description: 'Number of unread, unlocked accepted convos. Counts convos with unread messages and unread join requests. Capped at
|
|
35356
|
+
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
35357
|
};
|
|
34880
35358
|
readonly unreadRequestConvos: {
|
|
34881
35359
|
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
|
|
35360
|
+
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
35361
|
};
|
|
34884
35362
|
};
|
|
34885
35363
|
};
|
|
@@ -34934,7 +35412,7 @@ export declare const schemas: ({
|
|
|
34934
35412
|
readonly defs: {
|
|
34935
35413
|
readonly main: {
|
|
34936
35414
|
readonly type: 'query';
|
|
34937
|
-
readonly description: '
|
|
35415
|
+
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
35416
|
readonly parameters: {
|
|
34939
35417
|
readonly type: 'params';
|
|
34940
35418
|
readonly properties: {
|
|
@@ -35037,7 +35515,7 @@ export declare const schemas: ({
|
|
|
35037
35515
|
readonly defs: {
|
|
35038
35516
|
readonly main: {
|
|
35039
35517
|
readonly type: 'procedure';
|
|
35040
|
-
readonly description: '
|
|
35518
|
+
readonly description: 'Locks a group convo so no more content (messages, reactions) can be added to it.';
|
|
35041
35519
|
readonly errors: [{
|
|
35042
35520
|
readonly name: 'ConvoLocked';
|
|
35043
35521
|
}, {
|
|
@@ -35272,7 +35750,7 @@ export declare const schemas: ({
|
|
|
35272
35750
|
readonly defs: {
|
|
35273
35751
|
readonly main: {
|
|
35274
35752
|
readonly type: 'procedure';
|
|
35275
|
-
readonly description: '
|
|
35753
|
+
readonly description: 'Unlocks a group convo so it is able to receive new content.';
|
|
35276
35754
|
readonly errors: [{
|
|
35277
35755
|
readonly name: 'InvalidConvo';
|
|
35278
35756
|
}, {
|
|
@@ -35421,7 +35899,7 @@ export declare const schemas: ({
|
|
|
35421
35899
|
} | {
|
|
35422
35900
|
readonly lexicon: 1;
|
|
35423
35901
|
readonly id: 'chat.bsky.embed.joinLink';
|
|
35424
|
-
readonly description: '
|
|
35902
|
+
readonly description: 'A join link embedded in a chat message.';
|
|
35425
35903
|
readonly defs: {
|
|
35426
35904
|
readonly main: {
|
|
35427
35905
|
readonly type: 'object';
|
|
@@ -35450,7 +35928,7 @@ export declare const schemas: ({
|
|
|
35450
35928
|
readonly defs: {
|
|
35451
35929
|
readonly main: {
|
|
35452
35930
|
readonly type: 'procedure';
|
|
35453
|
-
readonly description: "
|
|
35931
|
+
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
35932
|
readonly errors: [{
|
|
35455
35933
|
readonly name: 'AccountSuspended';
|
|
35456
35934
|
}, {
|
|
@@ -35520,7 +35998,7 @@ export declare const schemas: ({
|
|
|
35520
35998
|
readonly defs: {
|
|
35521
35999
|
readonly main: {
|
|
35522
36000
|
readonly type: 'procedure';
|
|
35523
|
-
readonly description: '
|
|
36001
|
+
readonly description: 'Approves a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
35524
36002
|
readonly errors: [{
|
|
35525
36003
|
readonly name: 'InvalidConvo';
|
|
35526
36004
|
}, {
|
|
@@ -35565,7 +36043,7 @@ export declare const schemas: ({
|
|
|
35565
36043
|
readonly defs: {
|
|
35566
36044
|
readonly main: {
|
|
35567
36045
|
readonly type: 'procedure';
|
|
35568
|
-
readonly description: "
|
|
36046
|
+
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
36047
|
readonly errors: [{
|
|
35570
36048
|
readonly name: 'AccountSuspended';
|
|
35571
36049
|
}, {
|
|
@@ -35625,7 +36103,7 @@ export declare const schemas: ({
|
|
|
35625
36103
|
readonly defs: {
|
|
35626
36104
|
readonly main: {
|
|
35627
36105
|
readonly type: 'procedure';
|
|
35628
|
-
readonly description: '
|
|
36106
|
+
readonly description: 'Creates a join link for the group convo.';
|
|
35629
36107
|
readonly errors: [{
|
|
35630
36108
|
readonly name: 'EnabledJoinLinkAlreadyExists';
|
|
35631
36109
|
}, {
|
|
@@ -35671,7 +36149,6 @@ export declare const schemas: ({
|
|
|
35671
36149
|
} | {
|
|
35672
36150
|
readonly lexicon: 1;
|
|
35673
36151
|
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
36152
|
readonly defs: {
|
|
35676
36153
|
readonly linkEnabledStatus: {
|
|
35677
36154
|
readonly type: 'string';
|
|
@@ -35829,7 +36306,7 @@ export declare const schemas: ({
|
|
|
35829
36306
|
readonly defs: {
|
|
35830
36307
|
readonly main: {
|
|
35831
36308
|
readonly type: 'procedure';
|
|
35832
|
-
readonly description: '
|
|
36309
|
+
readonly description: 'Disables the active join link for the group convo.';
|
|
35833
36310
|
readonly errors: [{
|
|
35834
36311
|
readonly name: 'InvalidConvo';
|
|
35835
36312
|
}, {
|
|
@@ -35870,7 +36347,7 @@ export declare const schemas: ({
|
|
|
35870
36347
|
readonly defs: {
|
|
35871
36348
|
readonly main: {
|
|
35872
36349
|
readonly type: 'procedure';
|
|
35873
|
-
readonly description: '
|
|
36350
|
+
readonly description: 'Edits group settings.';
|
|
35874
36351
|
readonly errors: [{
|
|
35875
36352
|
readonly name: 'ConvoLocked';
|
|
35876
36353
|
}, {
|
|
@@ -35890,8 +36367,8 @@ export declare const schemas: ({
|
|
|
35890
36367
|
readonly name: {
|
|
35891
36368
|
readonly type: 'string';
|
|
35892
36369
|
readonly minLength: 1;
|
|
35893
|
-
readonly maxGraphemes:
|
|
35894
|
-
readonly maxLength:
|
|
36370
|
+
readonly maxGraphemes: 50;
|
|
36371
|
+
readonly maxLength: 500;
|
|
35895
36372
|
};
|
|
35896
36373
|
};
|
|
35897
36374
|
};
|
|
@@ -35917,7 +36394,7 @@ export declare const schemas: ({
|
|
|
35917
36394
|
readonly defs: {
|
|
35918
36395
|
readonly main: {
|
|
35919
36396
|
readonly type: 'procedure';
|
|
35920
|
-
readonly description: '
|
|
36397
|
+
readonly description: 'Edits the existing join link settings for the group convo.';
|
|
35921
36398
|
readonly errors: [{
|
|
35922
36399
|
readonly name: 'InvalidConvo';
|
|
35923
36400
|
}, {
|
|
@@ -35965,7 +36442,7 @@ export declare const schemas: ({
|
|
|
35965
36442
|
readonly defs: {
|
|
35966
36443
|
readonly main: {
|
|
35967
36444
|
readonly type: 'procedure';
|
|
35968
|
-
readonly description: '
|
|
36445
|
+
readonly description: 'Re-enables a previously disabled join link for the group convo.';
|
|
35969
36446
|
readonly errors: [{
|
|
35970
36447
|
readonly name: 'InvalidConvo';
|
|
35971
36448
|
}, {
|
|
@@ -36008,7 +36485,7 @@ export declare const schemas: ({
|
|
|
36008
36485
|
readonly defs: {
|
|
36009
36486
|
readonly main: {
|
|
36010
36487
|
readonly type: 'query';
|
|
36011
|
-
readonly description: "
|
|
36488
|
+
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
36489
|
readonly parameters: {
|
|
36013
36490
|
readonly type: 'params';
|
|
36014
36491
|
readonly required: ["codes"];
|
|
@@ -36047,7 +36524,7 @@ export declare const schemas: ({
|
|
|
36047
36524
|
readonly defs: {
|
|
36048
36525
|
readonly main: {
|
|
36049
36526
|
readonly type: 'query';
|
|
36050
|
-
readonly description: "
|
|
36527
|
+
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
36528
|
readonly errors: [{
|
|
36052
36529
|
readonly name: 'InvalidConvo';
|
|
36053
36530
|
}, {
|
|
@@ -36098,7 +36575,7 @@ export declare const schemas: ({
|
|
|
36098
36575
|
readonly defs: {
|
|
36099
36576
|
readonly main: {
|
|
36100
36577
|
readonly type: 'query';
|
|
36101
|
-
readonly description: '
|
|
36578
|
+
readonly description: 'Returns a page of group conversations that both the requester and the specified actor are members of.';
|
|
36102
36579
|
readonly parameters: {
|
|
36103
36580
|
readonly type: 'params';
|
|
36104
36581
|
readonly required: ["subject"];
|
|
@@ -36145,7 +36622,7 @@ export declare const schemas: ({
|
|
|
36145
36622
|
readonly defs: {
|
|
36146
36623
|
readonly main: {
|
|
36147
36624
|
readonly type: 'procedure';
|
|
36148
|
-
readonly description: '
|
|
36625
|
+
readonly description: 'Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.';
|
|
36149
36626
|
readonly errors: [{
|
|
36150
36627
|
readonly name: 'InvalidConvo';
|
|
36151
36628
|
}, {
|
|
@@ -36183,7 +36660,7 @@ export declare const schemas: ({
|
|
|
36183
36660
|
readonly defs: {
|
|
36184
36661
|
readonly main: {
|
|
36185
36662
|
readonly type: 'procedure';
|
|
36186
|
-
readonly description: "
|
|
36663
|
+
readonly description: "Removes members from a group. This deletes convo memberships, doesn't just set a status.";
|
|
36187
36664
|
readonly errors: [{
|
|
36188
36665
|
readonly name: 'InvalidConvo';
|
|
36189
36666
|
}, {
|
|
@@ -36230,7 +36707,7 @@ export declare const schemas: ({
|
|
|
36230
36707
|
readonly defs: {
|
|
36231
36708
|
readonly main: {
|
|
36232
36709
|
readonly type: 'procedure';
|
|
36233
|
-
readonly description: '
|
|
36710
|
+
readonly description: 'Sends a request to join a group (via join link) to the group owner. Action taken by the prospective group member.';
|
|
36234
36711
|
readonly errors: [{
|
|
36235
36712
|
readonly name: 'ConvoLocked';
|
|
36236
36713
|
}, {
|
|
@@ -36282,7 +36759,7 @@ export declare const schemas: ({
|
|
|
36282
36759
|
readonly defs: {
|
|
36283
36760
|
readonly main: {
|
|
36284
36761
|
readonly type: 'procedure';
|
|
36285
|
-
readonly description: '
|
|
36762
|
+
readonly description: 'Marks all join requests as read for the group owner.';
|
|
36286
36763
|
readonly errors: [{
|
|
36287
36764
|
readonly name: 'InvalidConvo';
|
|
36288
36765
|
}, {
|
|
@@ -36316,7 +36793,7 @@ export declare const schemas: ({
|
|
|
36316
36793
|
readonly defs: {
|
|
36317
36794
|
readonly main: {
|
|
36318
36795
|
readonly type: 'procedure';
|
|
36319
|
-
readonly description: '
|
|
36796
|
+
readonly description: 'Withdraws a pending request to join a group. Action taken by the prospective member who originally requested to join.';
|
|
36320
36797
|
readonly errors: [{
|
|
36321
36798
|
readonly name: 'InvalidJoinRequest';
|
|
36322
36799
|
}];
|
|
@@ -36347,7 +36824,7 @@ export declare const schemas: ({
|
|
|
36347
36824
|
readonly id: 'chat.bsky.moderation.defs';
|
|
36348
36825
|
readonly defs: {
|
|
36349
36826
|
readonly convoView: {
|
|
36350
|
-
readonly description: '
|
|
36827
|
+
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
36828
|
readonly type: 'object';
|
|
36352
36829
|
readonly required: ["id", "rev"];
|
|
36353
36830
|
readonly properties: {
|
|
@@ -36365,12 +36842,12 @@ export declare const schemas: ({
|
|
|
36365
36842
|
};
|
|
36366
36843
|
};
|
|
36367
36844
|
readonly directConvo: {
|
|
36368
|
-
readonly description: '
|
|
36845
|
+
readonly description: 'Data specific to a direct conversation, for moderation purposes.';
|
|
36369
36846
|
readonly type: 'object';
|
|
36370
36847
|
readonly properties: {};
|
|
36371
36848
|
};
|
|
36372
36849
|
readonly groupConvo: {
|
|
36373
|
-
readonly description: '
|
|
36850
|
+
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
36851
|
readonly type: 'object';
|
|
36375
36852
|
readonly required: ["createdAt", "joinRequestCount", "lockStatus", "memberCount", "memberLimit", "name"];
|
|
36376
36853
|
readonly properties: {
|
|
@@ -36402,8 +36879,8 @@ export declare const schemas: ({
|
|
|
36402
36879
|
readonly name: {
|
|
36403
36880
|
readonly type: 'string';
|
|
36404
36881
|
readonly description: 'The display name of the group conversation.';
|
|
36405
|
-
readonly maxGraphemes:
|
|
36406
|
-
readonly maxLength:
|
|
36882
|
+
readonly maxGraphemes: 50;
|
|
36883
|
+
readonly maxLength: 500;
|
|
36407
36884
|
};
|
|
36408
36885
|
};
|
|
36409
36886
|
};
|
|
@@ -36471,7 +36948,7 @@ export declare const schemas: ({
|
|
|
36471
36948
|
readonly defs: {
|
|
36472
36949
|
readonly main: {
|
|
36473
36950
|
readonly type: 'query';
|
|
36474
|
-
readonly description: '
|
|
36951
|
+
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
36952
|
readonly errors: [{
|
|
36476
36953
|
readonly name: 'InvalidConvo';
|
|
36477
36954
|
}];
|
|
@@ -36505,7 +36982,7 @@ export declare const schemas: ({
|
|
|
36505
36982
|
readonly defs: {
|
|
36506
36983
|
readonly main: {
|
|
36507
36984
|
readonly type: 'query';
|
|
36508
|
-
readonly description: '
|
|
36985
|
+
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
36986
|
readonly errors: [{
|
|
36510
36987
|
readonly name: 'InvalidConvo';
|
|
36511
36988
|
}];
|
|
@@ -36554,7 +37031,7 @@ export declare const schemas: ({
|
|
|
36554
37031
|
readonly defs: {
|
|
36555
37032
|
readonly main: {
|
|
36556
37033
|
readonly type: 'query';
|
|
36557
|
-
readonly description: '
|
|
37034
|
+
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
37035
|
readonly parameters: {
|
|
36559
37036
|
readonly type: 'params';
|
|
36560
37037
|
readonly required: ["convoIds"];
|
|
@@ -47807,6 +48284,7 @@ export declare const ids: {
|
|
|
47807
48284
|
readonly AppBskyFeedPostgate: 'app.bsky.feed.postgate';
|
|
47808
48285
|
readonly AppBskyFeedRepost: 'app.bsky.feed.repost';
|
|
47809
48286
|
readonly AppBskyFeedSearchPosts: 'app.bsky.feed.searchPosts';
|
|
48287
|
+
readonly AppBskyFeedSearchPostsV2: 'app.bsky.feed.searchPostsV2';
|
|
47810
48288
|
readonly AppBskyFeedSendInteractions: 'app.bsky.feed.sendInteractions';
|
|
47811
48289
|
readonly AppBskyFeedThreadgate: 'app.bsky.feed.threadgate';
|
|
47812
48290
|
readonly AppBskyGraphBlock: 'app.bsky.graph.block';
|