Skip to content

Commit 8309e4e

Browse files
chore: Update lexicons (#119)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a7e57ef commit 8309e4e

File tree

1 file changed

+67
-7
lines changed

1 file changed

+67
-7
lines changed

packages/lexicons/src/lib/lexicons.ts

Lines changed: 67 additions & 7 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: 2026-01-31T04:40:27.185Z
8+
* Generated on: 2026-02-23T05:05:53.078Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/4f5c4001271bbf38b30506efd30ebdabb969878f/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/978a99efad8393247449bebd88af1ac5b602842e/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -1119,9 +1119,9 @@ export declare namespace AppBskyDraftDefs {
11191119
/** One of the posts that compose a draft. */
11201120
interface DraftPost extends TypedBase {
11211121
/**
1122-
* The primary post content.
1123-
* Maximum string length: 3000
1124-
* Maximum grapheme length: 300
1122+
* The primary post content. It has a higher limit than post contents to allow storing a larger text that can later be refined into smaller posts.
1123+
* Maximum string length: 10000
1124+
* Maximum grapheme length: 1000
11251125
*/
11261126
text: string;
11271127
/** Maximum array length: 1 */
@@ -2560,8 +2560,13 @@ export declare namespace AppBskyGraphGetSuggestedFollowsByActor {
25602560
* \@default false
25612561
*/
25622562
isFallback?: boolean;
2563-
/** Snowflake for this recommendation, use when submitting recommendation events. */
2563+
/**
2564+
* DEPRECATED: use recIdStr instead.
2565+
* \@deprecated
2566+
*/
25642567
recId?: number;
2568+
/** Snowflake for this recommendation, use when submitting recommendation events. */
2569+
recIdStr?: string;
25652570
}
25662571
}
25672572

@@ -3194,6 +3199,28 @@ export declare namespace AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkele
31943199
}
31953200
}
31963201

3202+
/** Get a skeleton of suggested users for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedOnboardingUsers */
3203+
export declare namespace AppBskyUnspeccedGetOnboardingSuggestedUsersSkeleton {
3204+
interface Params extends TypedBase {
3205+
/** Category of users to get suggestions for. */
3206+
category?: string;
3207+
/**
3208+
* Minimum: 1
3209+
* Maximum: 50
3210+
* \@default 25
3211+
*/
3212+
limit?: number;
3213+
/** DID of the account making the request (not included for public/unauthenticated queries). */
3214+
viewer?: At.DID;
3215+
}
3216+
type Input = undefined;
3217+
interface Output extends TypedBase {
3218+
dids: At.DID[];
3219+
/** Snowflake for this recommendation, use when submitting recommendation events. */
3220+
recId?: string;
3221+
}
3222+
}
3223+
31973224
/** An unspecced view of globally popular feed generators. */
31983225
export declare namespace AppBskyUnspeccedGetPopularFeedGenerators {
31993226
interface Params extends TypedBase {
@@ -3317,6 +3344,26 @@ export declare namespace AppBskyUnspeccedGetSuggestedFeedsSkeleton {
33173344
}
33183345
}
33193346

3347+
/** Get a list of suggested users for onboarding */
3348+
export declare namespace AppBskyUnspeccedGetSuggestedOnboardingUsers {
3349+
interface Params extends TypedBase {
3350+
/** Category of users to get suggestions for. */
3351+
category?: string;
3352+
/**
3353+
* Minimum: 1
3354+
* Maximum: 50
3355+
* \@default 25
3356+
*/
3357+
limit?: number;
3358+
}
3359+
type Input = undefined;
3360+
interface Output extends TypedBase {
3361+
actors: AppBskyActorDefs.ProfileView[];
3362+
/** Snowflake for this recommendation, use when submitting recommendation events. */
3363+
recId?: string;
3364+
}
3365+
}
3366+
33203367
/** Get a list of suggested starterpacks */
33213368
export declare namespace AppBskyUnspeccedGetSuggestedStarterPacks {
33223369
interface Params extends TypedBase {
@@ -3412,8 +3459,13 @@ export declare namespace AppBskyUnspeccedGetSuggestionsSkeleton {
34123459
interface Output extends TypedBase {
34133460
actors: AppBskyUnspeccedDefs.SkeletonSearchActor[];
34143461
cursor?: string;
3415-
/** Snowflake for this recommendation, use when submitting recommendation events. */
3462+
/**
3463+
* DEPRECATED: use recIdStr instead.
3464+
* \@deprecated
3465+
*/
34163466
recId?: number;
3467+
/** Snowflake for this recommendation, use when submitting recommendation events. */
3468+
recIdStr?: string;
34173469
/** DID of the account these suggestions are relative to. If this is returned undefined, suggestions are based on the viewer. */
34183470
relativeToDid?: At.DID;
34193471
}
@@ -8206,6 +8258,10 @@ export declare interface Queries {
82068258
params: AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton.Params;
82078259
output: AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton.Output;
82088260
};
8261+
"app.bsky.unspecced.getOnboardingSuggestedUsersSkeleton": {
8262+
params: AppBskyUnspeccedGetOnboardingSuggestedUsersSkeleton.Params;
8263+
output: AppBskyUnspeccedGetOnboardingSuggestedUsersSkeleton.Output;
8264+
};
82098265
"app.bsky.unspecced.getPopularFeedGenerators": {
82108266
params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
82118267
output: AppBskyUnspeccedGetPopularFeedGenerators.Output;
@@ -8226,6 +8282,10 @@ export declare interface Queries {
82268282
params: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Params;
82278283
output: AppBskyUnspeccedGetSuggestedFeedsSkeleton.Output;
82288284
};
8285+
"app.bsky.unspecced.getSuggestedOnboardingUsers": {
8286+
params: AppBskyUnspeccedGetSuggestedOnboardingUsers.Params;
8287+
output: AppBskyUnspeccedGetSuggestedOnboardingUsers.Output;
8288+
};
82298289
"app.bsky.unspecced.getSuggestedStarterPacks": {
82308290
params: AppBskyUnspeccedGetSuggestedStarterPacks.Params;
82318291
output: AppBskyUnspeccedGetSuggestedStarterPacks.Output;

0 commit comments

Comments
 (0)