@atproto/ozone 0.2.6 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/lexicon/index.d.ts +2 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +4 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +602 -140
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +304 -69
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts +87 -0
  11. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.d.ts.map +1 -0
  12. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js +5 -0
  13. package/dist/lexicon/types/app/bsky/feed/searchPostsV2.js.map +1 -0
  14. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts +1 -1
  15. package/dist/lexicon/types/chat/bsky/actor/declaration.d.ts.map +1 -1
  16. package/dist/lexicon/types/chat/bsky/actor/declaration.js.map +1 -1
  17. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +2 -3
  18. package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
  19. package/dist/lexicon/types/chat/bsky/actor/defs.js.map +1 -1
  20. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +39 -36
  21. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  22. package/dist/lexicon/types/chat/bsky/convo/defs.js +7 -0
  23. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  24. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts +2 -2
  25. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.d.ts.map +1 -1
  26. package/dist/lexicon/types/chat/bsky/convo/getUnreadCounts.js.map +1 -1
  27. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts +3 -3
  28. package/dist/lexicon/types/chat/bsky/moderation/defs.d.ts.map +1 -1
  29. package/dist/lexicon/types/chat/bsky/moderation/defs.js.map +1 -1
  30. package/package.json +13 -13
  31. package/tsconfig.build.tsbuildinfo +1 -1
@@ -0,0 +1,87 @@
1
+ import type * as AppBskyFeedDefs from './defs.js';
2
+ export type QueryParams = {
3
+ /** Optional pagination cursor. */
4
+ cursor?: string;
5
+ /** Maximum number of results to return. */
6
+ limit: number;
7
+ /** Search query string. A query or at least one filter is required. */
8
+ query?: string;
9
+ /** Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking. */
10
+ sort?: 'recent' | 'top' | (string & {});
11
+ /** Include posts by any of these authors. Handles are resolved to DIDs before searching. */
12
+ authors?: string[];
13
+ /** Include posts that mention any of these accounts. Handles are resolved to DIDs before searching. */
14
+ mentions?: string[];
15
+ /** Include posts that link to any of these domains. */
16
+ domains?: string[];
17
+ /** Include posts that link to any of these URLs. */
18
+ urls?: string[];
19
+ /** Include posts that embed any of these AT URIs. */
20
+ embeddedAtUris?: string[];
21
+ /** Include posts tagged with any of these hashtags. Do not include the hash (#) prefix. */
22
+ hashtags?: string[];
23
+ /** Exclude posts by any of these authors. Handles are resolved to DIDs before searching. */
24
+ excludeAuthors?: string[];
25
+ /** Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching. */
26
+ excludeMentions?: string[];
27
+ /** Exclude posts that link to any of these domains. */
28
+ excludeDomains?: string[];
29
+ /** Exclude posts that link to any of these URLs. */
30
+ excludeUrls?: string[];
31
+ /** Exclude posts that embed any of these AT URIs. */
32
+ excludeEmbeddedAtUris?: string[];
33
+ /** Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix. */
34
+ excludeHashtags?: string[];
35
+ /** Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
36
+ since?: string;
37
+ /** Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD). */
38
+ until?: string;
39
+ /** Search the full index instead of the recent-post window. */
40
+ allTime?: boolean;
41
+ /** Include posts whose language matches any of these language codes. */
42
+ languages?: string[];
43
+ /** Exclude posts whose language matches any of these language codes. */
44
+ excludeLanguages?: string[];
45
+ /** Include only posts with media. */
46
+ hasMedia?: boolean;
47
+ /** Include only posts with video. */
48
+ hasVideo?: boolean;
49
+ /** Include only direct replies to this parent post URI. */
50
+ replyParentUri?: string;
51
+ /** Include only posts in the thread rooted at this post URI. */
52
+ threadRootUri?: string;
53
+ /** Exclude replies from results. Mutually exclusive with repliesOnly. */
54
+ excludeReplies?: boolean;
55
+ /** Include only replies. Mutually exclusive with excludeReplies. */
56
+ repliesOnly?: boolean;
57
+ /** Include only posts from accounts followed by the viewer. */
58
+ following?: boolean;
59
+ /** Language analyzer hint for the query text. If unset, the server auto-detects when possible. */
60
+ queryLanguage?: 'ja' | 'zh' | 'ko' | 'th' | 'ar' | (string & {});
61
+ };
62
+ export type InputSchema = undefined;
63
+ export interface OutputSchema {
64
+ /** Cursor for the next page of results. */
65
+ cursor?: string;
66
+ /** Estimated total number of matching hits. May be rounded or truncated. */
67
+ hitsTotal?: number;
68
+ /** Hydrated views of matching posts. */
69
+ posts: AppBskyFeedDefs.PostView[];
70
+ /** Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts. */
71
+ detectedQueryLanguages?: ('ja' | 'zh' | 'ko' | 'th' | 'ar' | (string & {}))[];
72
+ }
73
+ export type HandlerInput = void;
74
+ export interface HandlerSuccess {
75
+ encoding: 'application/json';
76
+ body: OutputSchema;
77
+ headers?: {
78
+ [key: string]: string;
79
+ };
80
+ }
81
+ export interface HandlerError {
82
+ status: number;
83
+ message?: string;
84
+ error?: 'BadQueryString';
85
+ }
86
+ export type HandlerOutput = HandlerError | HandlerSuccess;
87
+ //# sourceMappingURL=searchPostsV2.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"searchPostsV2.d.ts","sourceRoot":"","sources":["../../../../../../src/lexicon/types/app/bsky/feed/searchPostsV2.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,KAAK,eAAe,MAAM,WAAW,CAAA;AAMjD,MAAM,MAAM,WAAW,GAAG;IACxB,kCAAkC;IAClC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,2CAA2C;IAC3C,KAAK,EAAE,MAAM,CAAA;IACb,uEAAuE;IACvE,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,uFAAuF;IACvF,IAAI,CAAC,EAAE,QAAQ,GAAG,KAAK,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;IACvC,4FAA4F;IAC5F,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,uGAAuG;IACvG,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,uDAAuD;IACvD,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;IACf,qDAAqD;IACrD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,2FAA2F;IAC3F,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,4FAA4F;IAC5F,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,uGAAuG;IACvG,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;IAC1B,uDAAuD;IACvD,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,oDAAoD;IACpD,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;IACtB,qDAAqD;IACrD,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAA;IAChC,2FAA2F;IAC3F,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;IAC1B,6GAA6G;IAC7G,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,sIAAsI;IACtI,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,+DAA+D;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,wEAAwE;IACxE,SAAS,CAAC,EAAE,MAAM,EAAE,CAAA;IACpB,wEAAwE;IACxE,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC3B,qCAAqC;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,qCAAqC;IACrC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,2DAA2D;IAC3D,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,gEAAgE;IAChE,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,yEAAyE;IACzE,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,oEAAoE;IACpE,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,+DAA+D;IAC/D,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kGAAkG;IAClG,aAAa,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;CACjE,CAAA;AACD,MAAM,MAAM,WAAW,GAAG,SAAS,CAAA;AAEnC,MAAM,WAAW,YAAY;IAC3B,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,4EAA4E;IAC5E,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wCAAwC;IACxC,KAAK,EAAE,eAAe,CAAC,QAAQ,EAAE,CAAA;IACjC,kGAAkG;IAClG,sBAAsB,CAAC,EAAE,CAAC,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,EAAE,CAAA;CAC9E;AAED,MAAM,MAAM,YAAY,GAAG,IAAI,CAAA;AAE/B,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,kBAAkB,CAAA;IAC5B,IAAI,EAAE,YAAY,CAAA;IAClB,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;CACpC;AAED,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,gBAAgB,CAAA;CACzB;AAED,MAAM,MAAM,aAAa,GAAG,YAAY,GAAG,cAAc,CAAA"}
@@ -0,0 +1,5 @@
1
+ import { validate as _validate } from '../../../../lexicons.js';
2
+ import { is$typed as _is$typed, } from '../../../../util.js';
3
+ const is$typed = _is$typed, validate = _validate;
4
+ const id = 'app.bsky.feed.searchPostsV2';
5
+ //# sourceMappingURL=searchPostsV2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"searchPostsV2.js","sourceRoot":"","sources":["../../../../../../src/lexicon/types/app/bsky/feed/searchPostsV2.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAEL,QAAQ,IAAI,SAAS,GAEtB,MAAM,qBAAqB,CAAA;AAG5B,MAAM,QAAQ,GAAG,SAAS,EACxB,QAAQ,GAAG,SAAS,CAAA;AACtB,MAAM,EAAE,GAAG,6BAA6B,CAAA","sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons.js'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util.js'\nimport type * as AppBskyFeedDefs from './defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'app.bsky.feed.searchPostsV2'\n\nexport type QueryParams = {\n /** Optional pagination cursor. */\n cursor?: string\n /** Maximum number of results to return. */\n limit: number\n /** Search query string. A query or at least one filter is required. */\n query?: string\n /** Ranking order for results. 'recent' sorts by recency; 'top' uses search ranking. */\n sort?: 'recent' | 'top' | (string & {})\n /** Include posts by any of these authors. Handles are resolved to DIDs before searching. */\n authors?: string[]\n /** Include posts that mention any of these accounts. Handles are resolved to DIDs before searching. */\n mentions?: string[]\n /** Include posts that link to any of these domains. */\n domains?: string[]\n /** Include posts that link to any of these URLs. */\n urls?: string[]\n /** Include posts that embed any of these AT URIs. */\n embeddedAtUris?: string[]\n /** Include posts tagged with any of these hashtags. Do not include the hash (#) prefix. */\n hashtags?: string[]\n /** Exclude posts by any of these authors. Handles are resolved to DIDs before searching. */\n excludeAuthors?: string[]\n /** Exclude posts that mention any of these accounts. Handles are resolved to DIDs before searching. */\n excludeMentions?: string[]\n /** Exclude posts that link to any of these domains. */\n excludeDomains?: string[]\n /** Exclude posts that link to any of these URLs. */\n excludeUrls?: string[]\n /** Exclude posts that embed any of these AT URIs. */\n excludeEmbeddedAtUris?: string[]\n /** Exclude posts tagged with any of these hashtags. Do not include the hash (#) prefix. */\n excludeHashtags?: string[]\n /** Include posts indexed at or after this timestamp. Can be a datetime, or just an ISO date (YYYY-MM-DD). */\n since?: string\n /** Include posts indexed before this timestamp. Defaults to the current time. Can be a datetime, or just an ISO date (YYYY-MM-DD). */\n until?: string\n /** Search the full index instead of the recent-post window. */\n allTime?: boolean\n /** Include posts whose language matches any of these language codes. */\n languages?: string[]\n /** Exclude posts whose language matches any of these language codes. */\n excludeLanguages?: string[]\n /** Include only posts with media. */\n hasMedia?: boolean\n /** Include only posts with video. */\n hasVideo?: boolean\n /** Include only direct replies to this parent post URI. */\n replyParentUri?: string\n /** Include only posts in the thread rooted at this post URI. */\n threadRootUri?: string\n /** Exclude replies from results. Mutually exclusive with repliesOnly. */\n excludeReplies?: boolean\n /** Include only replies. Mutually exclusive with excludeReplies. */\n repliesOnly?: boolean\n /** Include only posts from accounts followed by the viewer. */\n following?: boolean\n /** Language analyzer hint for the query text. If unset, the server auto-detects when possible. */\n queryLanguage?: 'ja' | 'zh' | 'ko' | 'th' | 'ar' | (string & {})\n}\nexport type InputSchema = undefined\n\nexport interface OutputSchema {\n /** Cursor for the next page of results. */\n cursor?: string\n /** Estimated total number of matching hits. May be rounded or truncated. */\n hitsTotal?: number\n /** Hydrated views of matching posts. */\n posts: AppBskyFeedDefs.PostView[]\n /** Query languages detected for CJK, Thai, or Arabic text. Empty or omitted for other scripts. */\n detectedQueryLanguages?: ('ja' | 'zh' | 'ko' | 'th' | 'ar' | (string & {}))[]\n}\n\nexport type HandlerInput = void\n\nexport interface HandlerSuccess {\n encoding: 'application/json'\n body: OutputSchema\n headers?: { [key: string]: string }\n}\n\nexport interface HandlerError {\n status: number\n message?: string\n error?: 'BadQueryString'\n}\n\nexport type HandlerOutput = HandlerError | HandlerSuccess\n"]}
@@ -5,7 +5,7 @@ import { type ValidationResult } from '@atproto/lexicon';
5
5
  export interface Main {
6
6
  $type: 'chat.bsky.actor.declaration';
7
7
  allowIncoming: 'all' | 'none' | 'following' | (string & {});
8
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Declaration about group chat invitation preferences for the record owner. */
8
+ /** Declaration about group chat invitation preferences for the record owner. */
9
9
  allowGroupInvites?: 'all' | 'none' | 'following' | (string & {});
10
10
  [k: string]: unknown;
11
11
  }
@@ -1 +1 @@
1
- {"version":3,"file":"declaration.d.ts","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/declaration.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAajE,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,6BAA6B,CAAA;IACpC,aAAa,EAAE,KAAK,GAAG,MAAM,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;IAC3D,oLAAoL;IACpL,iBAAiB,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;IAChE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CACrB;AAID,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,6FAE7B;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,8BAEnC;AAED,OAAO,EACL,KAAK,IAAI,IAAI,MAAM,EACnB,MAAM,IAAI,QAAQ,EAClB,YAAY,IAAI,cAAc,GAC/B,CAAA"}
1
+ {"version":3,"file":"declaration.d.ts","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/declaration.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAajE,MAAM,WAAW,IAAI;IACnB,KAAK,EAAE,6BAA6B,CAAA;IACpC,aAAa,EAAE,KAAK,GAAG,MAAM,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;IAC3D,gFAAgF;IAChF,iBAAiB,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;IAChE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;CACrB;AAID,wBAAgB,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,6FAE7B;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,8BAEnC;AAED,OAAO,EACL,KAAK,IAAI,IAAI,MAAM,EACnB,MAAM,IAAI,QAAQ,EAClB,YAAY,IAAI,cAAc,GAC/B,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"declaration.js","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/declaration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAEL,QAAQ,IAAI,SAAS,GAEtB,MAAM,qBAAqB,CAAA;AAE5B,MAAM,QAAQ,GAAG,SAAS,EACxB,QAAQ,GAAG,SAAS,CAAA;AACtB,MAAM,EAAE,GAAG,6BAA6B,CAAA;AAUxC,MAAM,QAAQ,GAAG,MAAM,CAAA;AAEvB,MAAM,UAAU,MAAM,CAAI,CAAI;IAC5B,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAA;AAClC,CAAC;AAED,MAAM,UAAU,YAAY,CAAI,CAAI;IAClC,OAAO,QAAQ,CAAW,CAAC,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;AAClD,CAAC;AAED,OAAO,EAEL,MAAM,IAAI,QAAQ,EAClB,YAAY,IAAI,cAAc,GAC/B,CAAA","sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons.js'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'chat.bsky.actor.declaration'\n\nexport interface Main {\n $type: 'chat.bsky.actor.declaration'\n allowIncoming: 'all' | 'none' | 'following' | (string & {})\n /** [NOTE: This is under active development and should be considered unstable while this note is here]. Declaration about group chat invitation preferences for the record owner. */\n allowGroupInvites?: 'all' | 'none' | 'following' | (string & {})\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n"]}
1
+ {"version":3,"file":"declaration.js","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/declaration.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAEL,QAAQ,IAAI,SAAS,GAEtB,MAAM,qBAAqB,CAAA;AAE5B,MAAM,QAAQ,GAAG,SAAS,EACxB,QAAQ,GAAG,SAAS,CAAA;AACtB,MAAM,EAAE,GAAG,6BAA6B,CAAA;AAUxC,MAAM,QAAQ,GAAG,MAAM,CAAA;AAEvB,MAAM,UAAU,MAAM,CAAI,CAAI;IAC5B,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,QAAQ,CAAC,CAAA;AAClC,CAAC;AAED,MAAM,UAAU,YAAY,CAAI,CAAI;IAClC,OAAO,QAAQ,CAAW,CAAC,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAA;AAClD,CAAC;AAED,OAAO,EAEL,MAAM,IAAI,QAAQ,EAClB,YAAY,IAAI,cAAc,GAC/B,CAAA","sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons.js'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'chat.bsky.actor.declaration'\n\nexport interface Main {\n $type: 'chat.bsky.actor.declaration'\n allowIncoming: 'all' | 'none' | 'following' | (string & {})\n /** Declaration about group chat invitation preferences for the record owner. */\n allowGroupInvites?: 'all' | 'none' | 'following' | (string & {})\n [k: string]: unknown\n}\n\nconst hashMain = 'main'\n\nexport function isMain<V>(v: V) {\n return is$typed(v, id, hashMain)\n}\n\nexport function validateMain<V>(v: V) {\n return validate<Main & V>(v, id, hashMain, true)\n}\n\nexport {\n type Main as Record,\n isMain as isRecord,\n validateMain as validateRecord,\n}\n"]}
@@ -25,13 +25,12 @@ export interface ProfileViewBasic {
25
25
  }
26
26
  export declare function isProfileViewBasic<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.actor.defs", "profileViewBasic">;
27
27
  export declare function validateProfileViewBasic<V>(v: V): ValidationResult<ProfileViewBasic & V>;
28
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
29
28
  export interface DirectConvoMember {
30
29
  $type?: 'chat.bsky.actor.defs#directConvoMember';
31
30
  }
32
31
  export declare function isDirectConvoMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.actor.defs", "directConvoMember">;
33
32
  export declare function validateDirectConvoMember<V>(v: V): ValidationResult<DirectConvoMember & V>;
34
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member. */
33
+ /** A current group convo member. */
35
34
  export interface GroupConvoMember {
36
35
  $type?: 'chat.bsky.actor.defs#groupConvoMember';
37
36
  addedBy?: ProfileViewBasic;
@@ -39,7 +38,7 @@ export interface GroupConvoMember {
39
38
  }
40
39
  export declare function isGroupConvoMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.actor.defs", "groupConvoMember">;
41
40
  export declare function validateGroupConvoMember<V>(v: V): ValidationResult<GroupConvoMember & V>;
42
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member. */
41
+ /** A past group convo member. */
43
42
  export interface PastGroupConvoMember {
44
43
  $type?: 'chat.bsky.actor.defs#pastGroupConvoMember';
45
44
  }
@@ -1 +1 @@
1
- {"version":3,"file":"defs.d.ts","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/defs.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAGjE,OAAO,EACL,KAAK,MAAM,EAGZ,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,KAAK,gBAAgB,MAAM,iCAAiC,CAAA;AACxE,OAAO,KAAK,KAAK,mBAAmB,MAAM,oCAAoC,CAAA;AAM9E,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,UAAU,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;AAE7D,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,uCAAuC,CAAA;IAC/C,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,gBAAgB,CAAC,iBAAiB,CAAA;IAC/C,MAAM,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAA;IACrC,MAAM,CAAC,EAAE,mBAAmB,CAAC,KAAK,EAAE,CAAA;IACpC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,YAAY,CAAC,EAAE,gBAAgB,CAAC,iBAAiB,CAAA;IACjD,IAAI,CAAC,EACD,MAAM,CAAC,iBAAiB,CAAC,GACzB,MAAM,CAAC,gBAAgB,CAAC,GACxB,MAAM,CAAC,oBAAoB,CAAC,GAC5B;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;CACtB;AAID,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,kGAEzC;AAED,wBAAgB,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,0CAE/C;AAED,0GAA0G;AAC1G,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,wCAAwC,CAAA;CACjD;AAID,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,mGAE1C;AAED,wBAAgB,yBAAyB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,2CAEhD;AAED,wIAAwI;AACxI,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,uCAAuC,CAAA;IAC/C,OAAO,CAAC,EAAE,gBAAgB,CAAA;IAC1B,IAAI,EAAE,UAAU,CAAA;CACjB;AAID,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,kGAEzC;AAED,wBAAgB,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,0CAE/C;AAED,qIAAqI;AACrI,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,2CAA2C,CAAA;CACpD;AAID,wBAAgB,sBAAsB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,sGAE7C;AAED,wBAAgB,4BAA4B,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,8CAEnD"}
1
+ {"version":3,"file":"defs.d.ts","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/defs.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,gBAAgB,EAAW,MAAM,kBAAkB,CAAA;AAGjE,OAAO,EACL,KAAK,MAAM,EAGZ,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,KAAK,gBAAgB,MAAM,iCAAiC,CAAA;AACxE,OAAO,KAAK,KAAK,mBAAmB,MAAM,oCAAoC,CAAA;AAM9E,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,UAAU,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAA;AAE7D,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,uCAAuC,CAAA;IAC/C,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,gBAAgB,CAAC,iBAAiB,CAAA;IAC/C,MAAM,CAAC,EAAE,gBAAgB,CAAC,WAAW,CAAA;IACrC,MAAM,CAAC,EAAE,mBAAmB,CAAC,KAAK,EAAE,CAAA;IACpC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,YAAY,CAAC,EAAE,gBAAgB,CAAC,iBAAiB,CAAA;IACjD,IAAI,CAAC,EACD,MAAM,CAAC,iBAAiB,CAAC,GACzB,MAAM,CAAC,gBAAgB,CAAC,GACxB,MAAM,CAAC,oBAAoB,CAAC,GAC5B;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAA;CACtB;AAID,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,kGAEzC;AAED,wBAAgB,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,0CAE/C;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,wCAAwC,CAAA;CACjD;AAID,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,mGAE1C;AAED,wBAAgB,yBAAyB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,2CAEhD;AAED,oCAAoC;AACpC,MAAM,WAAW,gBAAgB;IAC/B,KAAK,CAAC,EAAE,uCAAuC,CAAA;IAC/C,OAAO,CAAC,EAAE,gBAAgB,CAAA;IAC1B,IAAI,EAAE,UAAU,CAAA;CACjB;AAID,wBAAgB,kBAAkB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,kGAEzC;AAED,wBAAgB,wBAAwB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,0CAE/C;AAED,iCAAiC;AACjC,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,2CAA2C,CAAA;CACpD;AAID,wBAAgB,sBAAsB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,sGAE7C;AAED,wBAAgB,4BAA4B,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,8CAEnD"}
@@ -1 +1 @@
1
- {"version":3,"file":"defs.js","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/defs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAEL,QAAQ,IAAI,SAAS,GAEtB,MAAM,qBAAqB,CAAA;AAI5B,MAAM,QAAQ,GAAG,SAAS,EACxB,QAAQ,GAAG,SAAS,CAAA;AACtB,MAAM,EAAE,GAAG,sBAAsB,CAAA;AAwBjC,MAAM,oBAAoB,GAAG,kBAAkB,CAAA;AAE/C,MAAM,UAAU,kBAAkB,CAAI,CAAI;IACxC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AAC9C,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAI,CAAI;IAC9C,OAAO,QAAQ,CAAuB,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AACpE,CAAC;AAOD,MAAM,qBAAqB,GAAG,mBAAmB,CAAA;AAEjD,MAAM,UAAU,mBAAmB,CAAI,CAAI;IACzC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,qBAAqB,CAAC,CAAA;AAC/C,CAAC;AAED,MAAM,UAAU,yBAAyB,CAAI,CAAI;IAC/C,OAAO,QAAQ,CAAwB,CAAC,EAAE,EAAE,EAAE,qBAAqB,CAAC,CAAA;AACtE,CAAC;AASD,MAAM,oBAAoB,GAAG,kBAAkB,CAAA;AAE/C,MAAM,UAAU,kBAAkB,CAAI,CAAI;IACxC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AAC9C,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAI,CAAI;IAC9C,OAAO,QAAQ,CAAuB,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AACpE,CAAC;AAOD,MAAM,wBAAwB,GAAG,sBAAsB,CAAA;AAEvD,MAAM,UAAU,sBAAsB,CAAI,CAAI;IAC5C,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,wBAAwB,CAAC,CAAA;AAClD,CAAC;AAED,MAAM,UAAU,4BAA4B,CAAI,CAAI;IAClD,OAAO,QAAQ,CAA2B,CAAC,EAAE,EAAE,EAAE,wBAAwB,CAAC,CAAA;AAC5E,CAAC","sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons.js'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util.js'\nimport type * as AppBskyActorDefs from '../../../app/bsky/actor/defs.js'\nimport type * as ComAtprotoLabelDefs from '../../../com/atproto/label/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'chat.bsky.actor.defs'\n\nexport type MemberRole = 'owner' | 'standard' | (string & {})\n\nexport interface ProfileViewBasic {\n $type?: 'chat.bsky.actor.defs#profileViewBasic'\n did: string\n handle: string\n displayName?: string\n avatar?: string\n associated?: AppBskyActorDefs.ProfileAssociated\n viewer?: AppBskyActorDefs.ViewerState\n labels?: ComAtprotoLabelDefs.Label[]\n createdAt?: string\n /** Set to true when the actor cannot actively participate in conversations */\n chatDisabled?: boolean\n verification?: AppBskyActorDefs.VerificationState\n kind?:\n | $Typed<DirectConvoMember>\n | $Typed<GroupConvoMember>\n | $Typed<PastGroupConvoMember>\n | { $type: string }\n}\n\nconst hashProfileViewBasic = 'profileViewBasic'\n\nexport function isProfileViewBasic<V>(v: V) {\n return is$typed(v, id, hashProfileViewBasic)\n}\n\nexport function validateProfileViewBasic<V>(v: V) {\n return validate<ProfileViewBasic & V>(v, id, hashProfileViewBasic)\n}\n\n/** [NOTE: This is under active development and should be considered unstable while this note is here]. */\nexport interface DirectConvoMember {\n $type?: 'chat.bsky.actor.defs#directConvoMember'\n}\n\nconst hashDirectConvoMember = 'directConvoMember'\n\nexport function isDirectConvoMember<V>(v: V) {\n return is$typed(v, id, hashDirectConvoMember)\n}\n\nexport function validateDirectConvoMember<V>(v: V) {\n return validate<DirectConvoMember & V>(v, id, hashDirectConvoMember)\n}\n\n/** [NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member. */\nexport interface GroupConvoMember {\n $type?: 'chat.bsky.actor.defs#groupConvoMember'\n addedBy?: ProfileViewBasic\n role: MemberRole\n}\n\nconst hashGroupConvoMember = 'groupConvoMember'\n\nexport function isGroupConvoMember<V>(v: V) {\n return is$typed(v, id, hashGroupConvoMember)\n}\n\nexport function validateGroupConvoMember<V>(v: V) {\n return validate<GroupConvoMember & V>(v, id, hashGroupConvoMember)\n}\n\n/** [NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member. */\nexport interface PastGroupConvoMember {\n $type?: 'chat.bsky.actor.defs#pastGroupConvoMember'\n}\n\nconst hashPastGroupConvoMember = 'pastGroupConvoMember'\n\nexport function isPastGroupConvoMember<V>(v: V) {\n return is$typed(v, id, hashPastGroupConvoMember)\n}\n\nexport function validatePastGroupConvoMember<V>(v: V) {\n return validate<PastGroupConvoMember & V>(v, id, hashPastGroupConvoMember)\n}\n"]}
1
+ {"version":3,"file":"defs.js","sourceRoot":"","sources":["../../../../../../src/lexicon/types/chat/bsky/actor/defs.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,IAAI,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAEL,QAAQ,IAAI,SAAS,GAEtB,MAAM,qBAAqB,CAAA;AAI5B,MAAM,QAAQ,GAAG,SAAS,EACxB,QAAQ,GAAG,SAAS,CAAA;AACtB,MAAM,EAAE,GAAG,sBAAsB,CAAA;AAwBjC,MAAM,oBAAoB,GAAG,kBAAkB,CAAA;AAE/C,MAAM,UAAU,kBAAkB,CAAI,CAAI;IACxC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AAC9C,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAI,CAAI;IAC9C,OAAO,QAAQ,CAAuB,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AACpE,CAAC;AAMD,MAAM,qBAAqB,GAAG,mBAAmB,CAAA;AAEjD,MAAM,UAAU,mBAAmB,CAAI,CAAI;IACzC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,qBAAqB,CAAC,CAAA;AAC/C,CAAC;AAED,MAAM,UAAU,yBAAyB,CAAI,CAAI;IAC/C,OAAO,QAAQ,CAAwB,CAAC,EAAE,EAAE,EAAE,qBAAqB,CAAC,CAAA;AACtE,CAAC;AASD,MAAM,oBAAoB,GAAG,kBAAkB,CAAA;AAE/C,MAAM,UAAU,kBAAkB,CAAI,CAAI;IACxC,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AAC9C,CAAC;AAED,MAAM,UAAU,wBAAwB,CAAI,CAAI;IAC9C,OAAO,QAAQ,CAAuB,CAAC,EAAE,EAAE,EAAE,oBAAoB,CAAC,CAAA;AACpE,CAAC;AAOD,MAAM,wBAAwB,GAAG,sBAAsB,CAAA;AAEvD,MAAM,UAAU,sBAAsB,CAAI,CAAI;IAC5C,OAAO,QAAQ,CAAC,CAAC,EAAE,EAAE,EAAE,wBAAwB,CAAC,CAAA;AAClD,CAAC;AAED,MAAM,UAAU,4BAA4B,CAAI,CAAI;IAClD,OAAO,QAAQ,CAA2B,CAAC,EAAE,EAAE,EAAE,wBAAwB,CAAC,CAAA;AAC5E,CAAC","sourcesContent":["/**\n * GENERATED CODE - DO NOT MODIFY\n */\nimport { type ValidationResult, BlobRef } from '@atproto/lexicon'\nimport { CID } from 'multiformats/cid'\nimport { validate as _validate } from '../../../../lexicons.js'\nimport {\n type $Typed,\n is$typed as _is$typed,\n type OmitKey,\n} from '../../../../util.js'\nimport type * as AppBskyActorDefs from '../../../app/bsky/actor/defs.js'\nimport type * as ComAtprotoLabelDefs from '../../../com/atproto/label/defs.js'\n\nconst is$typed = _is$typed,\n validate = _validate\nconst id = 'chat.bsky.actor.defs'\n\nexport type MemberRole = 'owner' | 'standard' | (string & {})\n\nexport interface ProfileViewBasic {\n $type?: 'chat.bsky.actor.defs#profileViewBasic'\n did: string\n handle: string\n displayName?: string\n avatar?: string\n associated?: AppBskyActorDefs.ProfileAssociated\n viewer?: AppBskyActorDefs.ViewerState\n labels?: ComAtprotoLabelDefs.Label[]\n createdAt?: string\n /** Set to true when the actor cannot actively participate in conversations */\n chatDisabled?: boolean\n verification?: AppBskyActorDefs.VerificationState\n kind?:\n | $Typed<DirectConvoMember>\n | $Typed<GroupConvoMember>\n | $Typed<PastGroupConvoMember>\n | { $type: string }\n}\n\nconst hashProfileViewBasic = 'profileViewBasic'\n\nexport function isProfileViewBasic<V>(v: V) {\n return is$typed(v, id, hashProfileViewBasic)\n}\n\nexport function validateProfileViewBasic<V>(v: V) {\n return validate<ProfileViewBasic & V>(v, id, hashProfileViewBasic)\n}\n\nexport interface DirectConvoMember {\n $type?: 'chat.bsky.actor.defs#directConvoMember'\n}\n\nconst hashDirectConvoMember = 'directConvoMember'\n\nexport function isDirectConvoMember<V>(v: V) {\n return is$typed(v, id, hashDirectConvoMember)\n}\n\nexport function validateDirectConvoMember<V>(v: V) {\n return validate<DirectConvoMember & V>(v, id, hashDirectConvoMember)\n}\n\n/** A current group convo member. */\nexport interface GroupConvoMember {\n $type?: 'chat.bsky.actor.defs#groupConvoMember'\n addedBy?: ProfileViewBasic\n role: MemberRole\n}\n\nconst hashGroupConvoMember = 'groupConvoMember'\n\nexport function isGroupConvoMember<V>(v: V) {\n return is$typed(v, id, hashGroupConvoMember)\n}\n\nexport function validateGroupConvoMember<V>(v: V) {\n return validate<GroupConvoMember & V>(v, id, hashGroupConvoMember)\n}\n\n/** A past group convo member. */\nexport interface PastGroupConvoMember {\n $type?: 'chat.bsky.actor.defs#pastGroupConvoMember'\n}\n\nconst hashPastGroupConvoMember = 'pastGroupConvoMember'\n\nexport function isPastGroupConvoMember<V>(v: V) {\n return is$typed(v, id, hashPastGroupConvoMember)\n}\n\nexport function validatePastGroupConvoMember<V>(v: V) {\n return validate<PastGroupConvoMember & V>(v, id, hashPastGroupConvoMember)\n}\n"]}
@@ -57,7 +57,7 @@ export interface MessageView {
57
57
  };
58
58
  /** Reactions to this message, in ascending order of creation time. */
59
59
  reactions?: ReactionView[];
60
- replyTo?: $Typed<MessageView> | $Typed<DeletedMessageView> | {
60
+ replyTo?: $Typed<MessageView> | $Typed<DeletedMessageView> | $Typed<MessageBeforeUserJoinedGroupView> | {
61
61
  $type: string;
62
62
  };
63
63
  sender: MessageViewSender;
@@ -71,7 +71,6 @@ export interface SystemMessageReferredUser {
71
71
  }
72
72
  export declare function isSystemMessageReferredUser<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageReferredUser">;
73
73
  export declare function validateSystemMessageReferredUser<V>(v: V): ValidationResult<SystemMessageReferredUser & V>;
74
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
75
74
  export interface SystemMessageView {
76
75
  $type?: 'chat.bsky.convo.defs#systemMessageView';
77
76
  id: string;
@@ -83,7 +82,7 @@ export interface SystemMessageView {
83
82
  }
84
83
  export declare function isSystemMessageView<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageView">;
85
84
  export declare function validateSystemMessageView<V>(v: V): ValidationResult<SystemMessageView & V>;
86
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was added to the group convo. */
85
+ /** System message indicating a user was added to the group convo. */
87
86
  export interface SystemMessageDataAddMember {
88
87
  $type?: 'chat.bsky.convo.defs#systemMessageDataAddMember';
89
88
  member: SystemMessageReferredUser;
@@ -92,7 +91,7 @@ export interface SystemMessageDataAddMember {
92
91
  }
93
92
  export declare function isSystemMessageDataAddMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataAddMember">;
94
93
  export declare function validateSystemMessageDataAddMember<V>(v: V): ValidationResult<SystemMessageDataAddMember & V>;
95
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user was removed from the group convo. */
94
+ /** System message indicating a user was removed from the group convo. */
96
95
  export interface SystemMessageDataRemoveMember {
97
96
  $type?: 'chat.bsky.convo.defs#systemMessageDataRemoveMember';
98
97
  member: SystemMessageReferredUser;
@@ -100,7 +99,7 @@ export interface SystemMessageDataRemoveMember {
100
99
  }
101
100
  export declare function isSystemMessageDataRemoveMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataRemoveMember">;
102
101
  export declare function validateSystemMessageDataRemoveMember<V>(v: V): ValidationResult<SystemMessageDataRemoveMember & V>;
103
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user joined the group convo via join link. */
102
+ /** System message indicating a user joined the group convo via join link. */
104
103
  export interface SystemMessageDataMemberJoin {
105
104
  $type?: 'chat.bsky.convo.defs#systemMessageDataMemberJoin';
106
105
  member: SystemMessageReferredUser;
@@ -109,35 +108,35 @@ export interface SystemMessageDataMemberJoin {
109
108
  }
110
109
  export declare function isSystemMessageDataMemberJoin<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataMemberJoin">;
111
110
  export declare function validateSystemMessageDataMemberJoin<V>(v: V): ValidationResult<SystemMessageDataMemberJoin & V>;
112
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating a user voluntarily left the group convo. */
111
+ /** System message indicating a user voluntarily left the group convo. */
113
112
  export interface SystemMessageDataMemberLeave {
114
113
  $type?: 'chat.bsky.convo.defs#systemMessageDataMemberLeave';
115
114
  member: SystemMessageReferredUser;
116
115
  }
117
116
  export declare function isSystemMessageDataMemberLeave<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataMemberLeave">;
118
117
  export declare function validateSystemMessageDataMemberLeave<V>(v: V): ValidationResult<SystemMessageDataMemberLeave & V>;
119
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked. */
118
+ /** System message indicating the group convo was locked. */
120
119
  export interface SystemMessageDataLockConvo {
121
120
  $type?: 'chat.bsky.convo.defs#systemMessageDataLockConvo';
122
121
  lockedBy: SystemMessageReferredUser;
123
122
  }
124
123
  export declare function isSystemMessageDataLockConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataLockConvo">;
125
124
  export declare function validateSystemMessageDataLockConvo<V>(v: V): ValidationResult<SystemMessageDataLockConvo & V>;
126
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was unlocked. */
125
+ /** System message indicating the group convo was unlocked. */
127
126
  export interface SystemMessageDataUnlockConvo {
128
127
  $type?: 'chat.bsky.convo.defs#systemMessageDataUnlockConvo';
129
128
  unlockedBy: SystemMessageReferredUser;
130
129
  }
131
130
  export declare function isSystemMessageDataUnlockConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataUnlockConvo">;
132
131
  export declare function validateSystemMessageDataUnlockConvo<V>(v: V): ValidationResult<SystemMessageDataUnlockConvo & V>;
133
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group convo was locked permanently. */
132
+ /** System message indicating the group convo was locked permanently. */
134
133
  export interface SystemMessageDataLockConvoPermanently {
135
134
  $type?: 'chat.bsky.convo.defs#systemMessageDataLockConvoPermanently';
136
135
  lockedBy: SystemMessageReferredUser;
137
136
  }
138
137
  export declare function isSystemMessageDataLockConvoPermanently<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataLockConvoPermanently">;
139
138
  export declare function validateSystemMessageDataLockConvoPermanently<V>(v: V): ValidationResult<SystemMessageDataLockConvoPermanently & V>;
140
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group info was edited. */
139
+ /** System message indicating the group info was edited. */
141
140
  export interface SystemMessageDataEditGroup {
142
141
  $type?: 'chat.bsky.convo.defs#systemMessageDataEditGroup';
143
142
  /** Group name that was replaced. */
@@ -147,25 +146,25 @@ export interface SystemMessageDataEditGroup {
147
146
  }
148
147
  export declare function isSystemMessageDataEditGroup<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataEditGroup">;
149
148
  export declare function validateSystemMessageDataEditGroup<V>(v: V): ValidationResult<SystemMessageDataEditGroup & V>;
150
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was created. */
149
+ /** System message indicating the group join link was created. */
151
150
  export interface SystemMessageDataCreateJoinLink {
152
151
  $type?: 'chat.bsky.convo.defs#systemMessageDataCreateJoinLink';
153
152
  }
154
153
  export declare function isSystemMessageDataCreateJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataCreateJoinLink">;
155
154
  export declare function validateSystemMessageDataCreateJoinLink<V>(v: V): ValidationResult<SystemMessageDataCreateJoinLink & V>;
156
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was edited. */
155
+ /** System message indicating the group join link was edited. */
157
156
  export interface SystemMessageDataEditJoinLink {
158
157
  $type?: 'chat.bsky.convo.defs#systemMessageDataEditJoinLink';
159
158
  }
160
159
  export declare function isSystemMessageDataEditJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataEditJoinLink">;
161
160
  export declare function validateSystemMessageDataEditJoinLink<V>(v: V): ValidationResult<SystemMessageDataEditJoinLink & V>;
162
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was enabled. */
161
+ /** System message indicating the group join link was enabled. */
163
162
  export interface SystemMessageDataEnableJoinLink {
164
163
  $type?: 'chat.bsky.convo.defs#systemMessageDataEnableJoinLink';
165
164
  }
166
165
  export declare function isSystemMessageDataEnableJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "systemMessageDataEnableJoinLink">;
167
166
  export declare function validateSystemMessageDataEnableJoinLink<V>(v: V): ValidationResult<SystemMessageDataEnableJoinLink & V>;
168
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. System message indicating the group join link was disabled. */
167
+ /** System message indicating the group join link was disabled. */
169
168
  export interface SystemMessageDataDisableJoinLink {
170
169
  $type?: 'chat.bsky.convo.defs#systemMessageDataDisableJoinLink';
171
170
  }
@@ -180,6 +179,12 @@ export interface DeletedMessageView {
180
179
  }
181
180
  export declare function isDeletedMessageView<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "deletedMessageView">;
182
181
  export declare function validateDeletedMessageView<V>(v: V): ValidationResult<DeletedMessageView & V>;
182
+ /** 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. */
183
+ export interface MessageBeforeUserJoinedGroupView {
184
+ $type?: 'chat.bsky.convo.defs#messageBeforeUserJoinedGroupView';
185
+ }
186
+ export declare function isMessageBeforeUserJoinedGroupView<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "messageBeforeUserJoinedGroupView">;
187
+ export declare function validateMessageBeforeUserJoinedGroupView<V>(v: V): ValidationResult<MessageBeforeUserJoinedGroupView & V>;
183
188
  export interface MessageViewSender {
184
189
  $type?: 'chat.bsky.convo.defs#messageViewSender';
185
190
  did: string;
@@ -228,13 +233,11 @@ export interface ConvoView {
228
233
  }
229
234
  export declare function isConvoView<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "convoView">;
230
235
  export declare function validateConvoView<V>(v: V): ValidationResult<ConvoView & V>;
231
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
232
236
  export interface DirectConvo {
233
237
  $type?: 'chat.bsky.convo.defs#directConvo';
234
238
  }
235
239
  export declare function isDirectConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "directConvo">;
236
240
  export declare function validateDirectConvo<V>(v: V): ValidationResult<DirectConvo & V>;
237
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. */
238
241
  export interface GroupConvo {
239
242
  $type?: 'chat.bsky.convo.defs#groupConvo';
240
243
  createdAt: string;
@@ -358,7 +361,7 @@ export interface LogRemoveReaction {
358
361
  }
359
362
  export declare function isLogRemoveReaction<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logRemoveReaction">;
360
363
  export declare function validateLogRemoveReaction<V>(v: V): ValidationResult<LogRemoveReaction & V>;
361
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a convo was read up to a certain message. */
364
+ /** Event indicating a convo was read up to a certain message. */
362
365
  export interface LogReadConvo {
363
366
  $type?: 'chat.bsky.convo.defs#logReadConvo';
364
367
  rev: string;
@@ -369,7 +372,7 @@ export interface LogReadConvo {
369
372
  }
370
373
  export declare function isLogReadConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logReadConvo">;
371
374
  export declare function validateLogReadConvo<V>(v: V): ValidationResult<LogReadConvo & V>;
372
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. 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). */
375
+ /** 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). */
373
376
  export interface LogAddMember {
374
377
  $type?: 'chat.bsky.convo.defs#logAddMember';
375
378
  rev: string;
@@ -380,7 +383,7 @@ export interface LogAddMember {
380
383
  }
381
384
  export declare function isLogAddMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logAddMember">;
382
385
  export declare function validateLogAddMember<V>(v: V): ValidationResult<LogAddMember & V>;
383
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. 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). */
386
+ /** 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). */
384
387
  export interface LogRemoveMember {
385
388
  $type?: 'chat.bsky.convo.defs#logRemoveMember';
386
389
  rev: string;
@@ -391,7 +394,7 @@ export interface LogRemoveMember {
391
394
  }
392
395
  export declare function isLogRemoveMember<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logRemoveMember">;
393
396
  export declare function validateLogRemoveMember<V>(v: V): ValidationResult<LogRemoveMember & V>;
394
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. 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). */
397
+ /** 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). */
395
398
  export interface LogMemberJoin {
396
399
  $type?: 'chat.bsky.convo.defs#logMemberJoin';
397
400
  rev: string;
@@ -402,7 +405,7 @@ export interface LogMemberJoin {
402
405
  }
403
406
  export declare function isLogMemberJoin<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logMemberJoin">;
404
407
  export declare function validateLogMemberJoin<V>(v: V): ValidationResult<LogMemberJoin & V>;
405
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. 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). */
408
+ /** 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). */
406
409
  export interface LogMemberLeave {
407
410
  $type?: 'chat.bsky.convo.defs#logMemberLeave';
408
411
  rev: string;
@@ -413,7 +416,7 @@ export interface LogMemberLeave {
413
416
  }
414
417
  export declare function isLogMemberLeave<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logMemberLeave">;
415
418
  export declare function validateLogMemberLeave<V>(v: V): ValidationResult<LogMemberLeave & V>;
416
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked. */
419
+ /** Event indicating a group convo was locked. */
417
420
  export interface LogLockConvo {
418
421
  $type?: 'chat.bsky.convo.defs#logLockConvo';
419
422
  rev: string;
@@ -424,7 +427,7 @@ export interface LogLockConvo {
424
427
  }
425
428
  export declare function isLogLockConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logLockConvo">;
426
429
  export declare function validateLogLockConvo<V>(v: V): ValidationResult<LogLockConvo & V>;
427
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was unlocked. */
430
+ /** Event indicating a group convo was unlocked. */
428
431
  export interface LogUnlockConvo {
429
432
  $type?: 'chat.bsky.convo.defs#logUnlockConvo';
430
433
  rev: string;
@@ -435,7 +438,7 @@ export interface LogUnlockConvo {
435
438
  }
436
439
  export declare function isLogUnlockConvo<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logUnlockConvo">;
437
440
  export declare function validateLogUnlockConvo<V>(v: V): ValidationResult<LogUnlockConvo & V>;
438
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a group convo was locked permanently. */
441
+ /** Event indicating a group convo was locked permanently. */
439
442
  export interface LogLockConvoPermanently {
440
443
  $type?: 'chat.bsky.convo.defs#logLockConvoPermanently';
441
444
  rev: string;
@@ -446,7 +449,7 @@ export interface LogLockConvoPermanently {
446
449
  }
447
450
  export declare function isLogLockConvoPermanently<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logLockConvoPermanently">;
448
451
  export declare function validateLogLockConvoPermanently<V>(v: V): ValidationResult<LogLockConvoPermanently & V>;
449
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating info about group convo was edited. */
452
+ /** Event indicating info about group convo was edited. */
450
453
  export interface LogEditGroup {
451
454
  $type?: 'chat.bsky.convo.defs#logEditGroup';
452
455
  rev: string;
@@ -455,7 +458,7 @@ export interface LogEditGroup {
455
458
  }
456
459
  export declare function isLogEditGroup<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logEditGroup">;
457
460
  export declare function validateLogEditGroup<V>(v: V): ValidationResult<LogEditGroup & V>;
458
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was created for a group convo. */
461
+ /** Event indicating a join link was created for a group convo. */
459
462
  export interface LogCreateJoinLink {
460
463
  $type?: 'chat.bsky.convo.defs#logCreateJoinLink';
461
464
  rev: string;
@@ -464,7 +467,7 @@ export interface LogCreateJoinLink {
464
467
  }
465
468
  export declare function isLogCreateJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logCreateJoinLink">;
466
469
  export declare function validateLogCreateJoinLink<V>(v: V): ValidationResult<LogCreateJoinLink & V>;
467
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a settings about a join link for a group convo were edited. */
470
+ /** Event indicating a settings about a join link for a group convo were edited. */
468
471
  export interface LogEditJoinLink {
469
472
  $type?: 'chat.bsky.convo.defs#logEditJoinLink';
470
473
  rev: string;
@@ -473,7 +476,7 @@ export interface LogEditJoinLink {
473
476
  }
474
477
  export declare function isLogEditJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logEditJoinLink">;
475
478
  export declare function validateLogEditJoinLink<V>(v: V): ValidationResult<LogEditJoinLink & V>;
476
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was enabled for a group convo. */
479
+ /** Event indicating a join link was enabled for a group convo. */
477
480
  export interface LogEnableJoinLink {
478
481
  $type?: 'chat.bsky.convo.defs#logEnableJoinLink';
479
482
  rev: string;
@@ -482,7 +485,7 @@ export interface LogEnableJoinLink {
482
485
  }
483
486
  export declare function isLogEnableJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logEnableJoinLink">;
484
487
  export declare function validateLogEnableJoinLink<V>(v: V): ValidationResult<LogEnableJoinLink & V>;
485
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join link was disabled for a group convo. */
488
+ /** Event indicating a join link was disabled for a group convo. */
486
489
  export interface LogDisableJoinLink {
487
490
  $type?: 'chat.bsky.convo.defs#logDisableJoinLink';
488
491
  rev: string;
@@ -491,7 +494,7 @@ export interface LogDisableJoinLink {
491
494
  }
492
495
  export declare function isLogDisableJoinLink<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logDisableJoinLink">;
493
496
  export declare function validateLogDisableJoinLink<V>(v: V): ValidationResult<LogDisableJoinLink & V>;
494
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made to a group the viewer owns. Only the owner gets this. */
497
+ /** Event indicating a join request was made to a group the viewer owns. Only the owner gets this. */
495
498
  export interface LogIncomingJoinRequest {
496
499
  $type?: 'chat.bsky.convo.defs#logIncomingJoinRequest';
497
500
  rev: string;
@@ -500,7 +503,7 @@ export interface LogIncomingJoinRequest {
500
503
  }
501
504
  export declare function isLogIncomingJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logIncomingJoinRequest">;
502
505
  export declare function validateLogIncomingJoinRequest<V>(v: V): ValidationResult<LogIncomingJoinRequest & V>;
503
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo. */
506
+ /** Event indicating a join request was approved by the viewer. Only the owner gets this. The approved member gets a logBeginConvo. */
504
507
  export interface LogApproveJoinRequest {
505
508
  $type?: 'chat.bsky.convo.defs#logApproveJoinRequest';
506
509
  rev: string;
@@ -509,7 +512,7 @@ export interface LogApproveJoinRequest {
509
512
  }
510
513
  export declare function isLogApproveJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logApproveJoinRequest">;
511
514
  export declare function validateLogApproveJoinRequest<V>(v: V): ValidationResult<LogApproveJoinRequest & V>;
512
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was rejected by the viewer. Only the owner gets this. */
515
+ /** Event indicating a join request was rejected by the viewer. Only the owner gets this. */
513
516
  export interface LogRejectJoinRequest {
514
517
  $type?: 'chat.bsky.convo.defs#logRejectJoinRequest';
515
518
  rev: string;
@@ -518,7 +521,7 @@ export interface LogRejectJoinRequest {
518
521
  }
519
522
  export declare function isLogRejectJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logRejectJoinRequest">;
520
523
  export declare function validateLogRejectJoinRequest<V>(v: V): ValidationResult<LogRejectJoinRequest & V>;
521
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a join request was made by the requester. Only requester actor gets this. */
524
+ /** Event indicating a join request was made by the requester. Only requester actor gets this. */
522
525
  export interface LogOutgoingJoinRequest {
523
526
  $type?: 'chat.bsky.convo.defs#logOutgoingJoinRequest';
524
527
  rev: string;
@@ -526,7 +529,7 @@ export interface LogOutgoingJoinRequest {
526
529
  }
527
530
  export declare function isLogOutgoingJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logOutgoingJoinRequest">;
528
531
  export declare function validateLogOutgoingJoinRequest<V>(v: V): ValidationResult<LogOutgoingJoinRequest & V>;
529
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating a prospective member withdrew their join request. Only the owner gets this. */
532
+ /** Event indicating a prospective member withdrew their join request. Only the owner gets this. */
530
533
  export interface LogWithdrawIncomingJoinRequest {
531
534
  $type?: 'chat.bsky.convo.defs#logWithdrawIncomingJoinRequest';
532
535
  rev: string;
@@ -535,7 +538,7 @@ export interface LogWithdrawIncomingJoinRequest {
535
538
  }
536
539
  export declare function isLogWithdrawIncomingJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logWithdrawIncomingJoinRequest">;
537
540
  export declare function validateLogWithdrawIncomingJoinRequest<V>(v: V): ValidationResult<LogWithdrawIncomingJoinRequest & V>;
538
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the viewer withdrew their own join request. Only requester actor gets this. */
541
+ /** Event indicating the viewer withdrew their own join request. Only requester actor gets this. */
539
542
  export interface LogWithdrawOutgoingJoinRequest {
540
543
  $type?: 'chat.bsky.convo.defs#logWithdrawOutgoingJoinRequest';
541
544
  rev: string;
@@ -543,7 +546,7 @@ export interface LogWithdrawOutgoingJoinRequest {
543
546
  }
544
547
  export declare function isLogWithdrawOutgoingJoinRequest<V>(v: V): v is import("../../../../util.js").$TypedObject<V, "chat.bsky.convo.defs", "logWithdrawOutgoingJoinRequest">;
545
548
  export declare function validateLogWithdrawOutgoingJoinRequest<V>(v: V): ValidationResult<LogWithdrawOutgoingJoinRequest & V>;
546
- /** [NOTE: This is under active development and should be considered unstable while this note is here]. Event indicating the group owner marked join requests as read. Only the owner gets this. */
549
+ /** Event indicating the group owner marked join requests as read. Only the owner gets this. */
547
550
  export interface LogReadJoinRequests {
548
551
  $type?: 'chat.bsky.convo.defs#logReadJoinRequests';
549
552
  rev: string;