|
5 | 5 | * @module
|
6 | 6 | * Contains type declarations for Bluesky lexicons
|
7 | 7 | * @generated
|
8 |
| - * Generated on: 2025-02-17T22:14:45.665Z |
| 8 | + * Generated on: 2025-02-18T04:46:48.978Z |
9 | 9 | * Version: main
|
10 |
| - * Source: https://github.com/bluesky-social/atproto/tree/b41ff4b4e309f5c1594a79d64f4090eaa4587a3c/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/010f10c6f212f699ad42c0349a58bbcf2172e3cc/lexicons |
11 | 11 | */
|
12 | 12 |
|
13 | 13 | /** Base type with optional type field */
|
@@ -4018,6 +4018,29 @@ export declare namespace ComAtprotoSyncListRepos {
|
4018 | 4018 | }
|
4019 | 4019 | }
|
4020 | 4020 |
|
| 4021 | +/** Enumerates all the DIDs which have records with the given collection NSID. */ |
| 4022 | +export declare namespace ComAtprotoSyncListReposByCollection { |
| 4023 | + interface Params extends TypedBase { |
| 4024 | + collection: string; |
| 4025 | + cursor?: string; |
| 4026 | + /** |
| 4027 | + * Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists. |
| 4028 | + * Minimum: 1 |
| 4029 | + * Maximum: 2000 |
| 4030 | + * \@default 500 |
| 4031 | + */ |
| 4032 | + limit?: number; |
| 4033 | + } |
| 4034 | + type Input = undefined; |
| 4035 | + interface Output extends TypedBase { |
| 4036 | + repos: Repo[]; |
| 4037 | + cursor?: string; |
| 4038 | + } |
| 4039 | + interface Repo extends TypedBase { |
| 4040 | + did: At.DID; |
| 4041 | + } |
| 4042 | +} |
| 4043 | + |
4021 | 4044 | /** Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. */
|
4022 | 4045 | export declare namespace ComAtprotoSyncNotifyOfUpdate {
|
4023 | 4046 | interface Params extends TypedBase {}
|
@@ -5707,6 +5730,10 @@ export declare interface Queries {
|
5707 | 5730 | params: ComAtprotoSyncListRepos.Params;
|
5708 | 5731 | output: ComAtprotoSyncListRepos.Output;
|
5709 | 5732 | };
|
| 5733 | + "com.atproto.sync.listReposByCollection": { |
| 5734 | + params: ComAtprotoSyncListReposByCollection.Params; |
| 5735 | + output: ComAtprotoSyncListReposByCollection.Output; |
| 5736 | + }; |
5710 | 5737 | "com.atproto.temp.checkSignupQueue": {
|
5711 | 5738 | output: ComAtprotoTempCheckSignupQueue.Output;
|
5712 | 5739 | };
|
|
0 commit comments