Skip to content

Commit d0da928

Browse files
chore: Update lexicons (#42)
1 parent 223f720 commit d0da928

1 file changed

Lines changed: 18 additions & 2 deletions

File tree

packages/lexicons/src/lib/lexicons.ts

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* @module
66
* Contains type declarations for Bluesky lexicons
77
* @generated
8-
* Generated on: 2025-01-09T12:45:41.061Z
8+
* Generated on: 2025-01-17T07:29:49.080Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/53621f8e100a3aa3c1caff10a08d3f4ea919875a/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/07f11d3e0c46739bea93415fcd1439be35a6a266/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -368,6 +368,8 @@ export declare namespace AppBskyActorGetSuggestions {
368368
interface Output extends TypedBase {
369369
actors: AppBskyActorDefs.ProfileView[];
370370
cursor?: string;
371+
/** Snowflake for this recommendation, use when submitting recommendation events. */
372+
recId?: number;
371373
}
372374
}
373375

@@ -1703,6 +1705,8 @@ export declare namespace AppBskyGraphGetSuggestedFollowsByActor {
17031705
* \@default false
17041706
*/
17051707
isFallback?: boolean;
1708+
/** Snowflake for this recommendation, use when submitting recommendation events. */
1709+
recId?: number;
17061710
}
17071711
}
17081712

@@ -2097,6 +2101,8 @@ export declare namespace AppBskyUnspeccedGetSuggestionsSkeleton {
20972101
interface Output extends TypedBase {
20982102
actors: AppBskyUnspeccedDefs.SkeletonSearchActor[];
20992103
cursor?: string;
2104+
/** Snowflake for this recommendation, use when submitting recommendation events. */
2105+
recId?: number;
21002106
/** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
21012107
relativeToDid?: At.DID;
21022108
}
@@ -3021,6 +3027,15 @@ export declare namespace ComAtprotoLabelSubscribeLabels {
30213027
}
30223028
}
30233029

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+
30243039
/** Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth. */
30253040
export declare namespace ComAtprotoModerationCreateReport {
30263041
interface Params extends TypedBase {}
@@ -5204,6 +5219,7 @@ export declare interface Records extends RecordBase {
52045219
"app.bsky.graph.starterpack": AppBskyGraphStarterpack.Record;
52055220
"app.bsky.labeler.service": AppBskyLabelerService.Record;
52065221
"chat.bsky.actor.declaration": ChatBskyActorDeclaration.Record;
5222+
"com.atproto.lexicon.schema": ComAtprotoLexiconSchema.Record;
52075223
}
52085224

52095225
export declare interface Queries {

0 commit comments

Comments
 (0)