Skip to content

Commit b73641e

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

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

packages/lexicons/src/lib/lexicons.ts

Lines changed: 29 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-02-17T22:14:45.665Z
8+
* Generated on: 2025-02-18T04:46:48.978Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/b41ff4b4e309f5c1594a79d64f4090eaa4587a3c/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/010f10c6f212f699ad42c0349a58bbcf2172e3cc/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -4018,6 +4018,29 @@ export declare namespace ComAtprotoSyncListRepos {
40184018
}
40194019
}
40204020

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+
40214044
/** 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. */
40224045
export declare namespace ComAtprotoSyncNotifyOfUpdate {
40234046
interface Params extends TypedBase {}
@@ -5707,6 +5730,10 @@ export declare interface Queries {
57075730
params: ComAtprotoSyncListRepos.Params;
57085731
output: ComAtprotoSyncListRepos.Output;
57095732
};
5733+
"com.atproto.sync.listReposByCollection": {
5734+
params: ComAtprotoSyncListReposByCollection.Params;
5735+
output: ComAtprotoSyncListReposByCollection.Output;
5736+
};
57105737
"com.atproto.temp.checkSignupQueue": {
57115738
output: ComAtprotoTempCheckSignupQueue.Output;
57125739
};

0 commit comments

Comments
 (0)