|
5 | 5 | * @module |
6 | 6 | * Contains type declarations for Bluesky lexicons |
7 | 7 | * @generated |
8 | | - * Generated on: 2025-01-09T12:45:41.061Z |
| 8 | + * Generated on: 2025-01-17T07:29:49.080Z |
9 | 9 | * Version: main |
10 | | - * Source: https://github.com/bluesky-social/atproto/tree/53621f8e100a3aa3c1caff10a08d3f4ea919875a/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/07f11d3e0c46739bea93415fcd1439be35a6a266/lexicons |
11 | 11 | */ |
12 | 12 |
|
13 | 13 | /** Base type with optional type field */ |
@@ -368,6 +368,8 @@ export declare namespace AppBskyActorGetSuggestions { |
368 | 368 | interface Output extends TypedBase { |
369 | 369 | actors: AppBskyActorDefs.ProfileView[]; |
370 | 370 | cursor?: string; |
| 371 | + /** Snowflake for this recommendation, use when submitting recommendation events. */ |
| 372 | + recId?: number; |
371 | 373 | } |
372 | 374 | } |
373 | 375 |
|
@@ -1703,6 +1705,8 @@ export declare namespace AppBskyGraphGetSuggestedFollowsByActor { |
1703 | 1705 | * \@default false |
1704 | 1706 | */ |
1705 | 1707 | isFallback?: boolean; |
| 1708 | + /** Snowflake for this recommendation, use when submitting recommendation events. */ |
| 1709 | + recId?: number; |
1706 | 1710 | } |
1707 | 1711 | } |
1708 | 1712 |
|
@@ -2097,6 +2101,8 @@ export declare namespace AppBskyUnspeccedGetSuggestionsSkeleton { |
2097 | 2101 | interface Output extends TypedBase { |
2098 | 2102 | actors: AppBskyUnspeccedDefs.SkeletonSearchActor[]; |
2099 | 2103 | cursor?: string; |
| 2104 | + /** Snowflake for this recommendation, use when submitting recommendation events. */ |
| 2105 | + recId?: number; |
2100 | 2106 | /** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */ |
2101 | 2107 | relativeToDid?: At.DID; |
2102 | 2108 | } |
@@ -3021,6 +3027,15 @@ export declare namespace ComAtprotoLabelSubscribeLabels { |
3021 | 3027 | } |
3022 | 3028 | } |
3023 | 3029 |
|
| 3030 | +export declare namespace ComAtprotoLexiconSchema { |
| 3031 | + /** Representation of Lexicon schemas themselves, when published as atproto records. Note that the schema language is not defined in Lexicon; this meta schema currently only includes a single version field ('lexicon'). See the atproto specifications for description of the other expected top-level fields ('id', 'defs', etc). */ |
| 3032 | + interface Record extends RecordBase { |
| 3033 | + $type: "com.atproto.lexicon.schema"; |
| 3034 | + /** Indicates the 'version' of the Lexicon language. Must be '1' for the current atproto/Lexicon schema system. */ |
| 3035 | + lexicon: number; |
| 3036 | + } |
| 3037 | +} |
| 3038 | + |
3024 | 3039 | /** Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth. */ |
3025 | 3040 | export declare namespace ComAtprotoModerationCreateReport { |
3026 | 3041 | interface Params extends TypedBase {} |
@@ -5204,6 +5219,7 @@ export declare interface Records extends RecordBase { |
5204 | 5219 | "app.bsky.graph.starterpack": AppBskyGraphStarterpack.Record; |
5205 | 5220 | "app.bsky.labeler.service": AppBskyLabelerService.Record; |
5206 | 5221 | "chat.bsky.actor.declaration": ChatBskyActorDeclaration.Record; |
| 5222 | + "com.atproto.lexicon.schema": ComAtprotoLexiconSchema.Record; |
5207 | 5223 | } |
5208 | 5224 |
|
5209 | 5225 | export declare interface Queries { |
|
0 commit comments