|
5 | 5 | * @module |
6 | 6 | * Contains type declarations for Bluesky lexicons |
7 | 7 | * @generated |
8 | | - * Generated on: 2025-09-25T03:36:53.660Z |
| 8 | + * Generated on: 2025-09-26T03:34:40.912Z |
9 | 9 | * Version: main |
10 | | - * Source: https://github.com/bluesky-social/atproto/tree/8dc4caf55840578c835b4c851d4a599c15627a78/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/1a5d7427bf5811a019e7b50c7c2af711b8f2dd33/lexicons |
11 | 11 | */ |
12 | 12 |
|
13 | 13 | /** Base type with optional type field */ |
@@ -2563,6 +2563,40 @@ export declare namespace AppBskyUnspeccedGetConfig { |
2563 | 2563 | } |
2564 | 2564 | } |
2565 | 2565 |
|
| 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 | + |
2566 | 2600 | /** An unspecced view of globally popular feed generators. */ |
2567 | 2601 | export declare namespace AppBskyUnspeccedGetPopularFeedGenerators { |
2568 | 2602 | interface Params extends TypedBase { |
@@ -7300,6 +7334,14 @@ export declare interface Queries { |
7300 | 7334 | "app.bsky.unspecced.getConfig": { |
7301 | 7335 | output: AppBskyUnspeccedGetConfig.Output; |
7302 | 7336 | }; |
| 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 | + }; |
7303 | 7345 | "app.bsky.unspecced.getPopularFeedGenerators": { |
7304 | 7346 | params: AppBskyUnspeccedGetPopularFeedGenerators.Params; |
7305 | 7347 | output: AppBskyUnspeccedGetPopularFeedGenerators.Output; |
|
0 commit comments