Skip to content

Commit b321bc8

Browse files
chore: Update lexicons (#104)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 86db337 commit b321bc8

1 file changed

Lines changed: 44 additions & 2 deletions

File tree

packages/lexicons/src/lib/lexicons.ts

Lines changed: 44 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-09-25T03:36:53.660Z
8+
* Generated on: 2025-09-26T03:34:40.912Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/8dc4caf55840578c835b4c851d4a599c15627a78/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/1a5d7427bf5811a019e7b50c7c2af711b8f2dd33/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -2563,6 +2563,40 @@ export declare namespace AppBskyUnspeccedGetConfig {
25632563
}
25642564
}
25652565

2566+
/** Get a list of suggested starterpacks for onboarding */
2567+
export declare namespace AppBskyUnspeccedGetOnboardingSuggestedStarterPacks {
2568+
interface Params extends TypedBase {
2569+
/**
2570+
* Minimum: 1
2571+
* Maximum: 25
2572+
* \@default 10
2573+
*/
2574+
limit?: number;
2575+
}
2576+
type Input = undefined;
2577+
interface Output extends TypedBase {
2578+
starterPacks: AppBskyGraphDefs.StarterPackView[];
2579+
}
2580+
}
2581+
2582+
/** Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks */
2583+
export declare namespace AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton {
2584+
interface Params extends TypedBase {
2585+
/**
2586+
* Minimum: 1
2587+
* Maximum: 25
2588+
* \@default 10
2589+
*/
2590+
limit?: number;
2591+
/** DID of the account making the request (not included for public/unauthenticated queries). */
2592+
viewer?: At.DID;
2593+
}
2594+
type Input = undefined;
2595+
interface Output extends TypedBase {
2596+
starterPacks: At.Uri[];
2597+
}
2598+
}
2599+
25662600
/** An unspecced view of globally popular feed generators. */
25672601
export declare namespace AppBskyUnspeccedGetPopularFeedGenerators {
25682602
interface Params extends TypedBase {
@@ -7300,6 +7334,14 @@ export declare interface Queries {
73007334
"app.bsky.unspecced.getConfig": {
73017335
output: AppBskyUnspeccedGetConfig.Output;
73027336
};
7337+
"app.bsky.unspecced.getOnboardingSuggestedStarterPacks": {
7338+
params: AppBskyUnspeccedGetOnboardingSuggestedStarterPacks.Params;
7339+
output: AppBskyUnspeccedGetOnboardingSuggestedStarterPacks.Output;
7340+
};
7341+
"app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton": {
7342+
params: AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton.Params;
7343+
output: AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton.Output;
7344+
};
73037345
"app.bsky.unspecced.getPopularFeedGenerators": {
73047346
params: AppBskyUnspeccedGetPopularFeedGenerators.Params;
73057347
output: AppBskyUnspeccedGetPopularFeedGenerators.Output;

0 commit comments

Comments
 (0)