Skip to content

Commit c755e79

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

1 file changed

Lines changed: 11 additions & 18 deletions

File tree

packages/lexicons/src/lib/lexicons.ts

Lines changed: 11 additions & 18 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-25T03:29:51.134Z
8+
* Generated on: 2025-02-26T03:31:02.923Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/44f81f2eb9229e21aec4472b3a05e855396dbec5/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/27b0a7be1ed1b6e098114791d84ec9dc844db552/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -1962,6 +1962,12 @@ export declare namespace AppBskyLabelerService {
19621962
createdAt: string;
19631963
policies: AppBskyLabelerDefs.LabelerPolicies;
19641964
labels?: TypeUnion<ComAtprotoLabelDefs.SelfLabels>;
1965+
/** The set of report reason 'codes' which are in-scope for this service to review and action. These usually align to policy categories. If not defined (distinct from empty array), all reason types are allowed. */
1966+
reasonTypes?: ComAtprotoModerationDefs.ReasonType[];
1967+
/** Set of record types (collection NSIDs) which can be reported to this service. If not defined (distinct from empty array), default is any record type. */
1968+
subjectCollections?: string[];
1969+
/** The set of subject types (account, record, etc) this service accepts reports on. */
1970+
subjectTypes?: ComAtprotoModerationDefs.SubjectType[];
19651971
}
19661972
}
19671973

@@ -3192,6 +3198,8 @@ export declare namespace ComAtprotoModerationDefs {
31923198
| "com.atproto.moderation.defs#reasonViolation"
31933199
| (string & {});
31943200
type ReasonViolation = "com.atproto.moderation.defs#reasonViolation";
3201+
/** Tag describing a type of subject that might be reported. */
3202+
type SubjectType = "account" | "chat" | "record" | (string & {});
31953203
}
31963204

31973205
/** Apply a batch transaction of repository creates, updates, and deletes. Requires auth, implemented by PDS. */
@@ -3390,16 +3398,6 @@ export declare namespace ComAtprotoRepoListRecords {
33903398
limit?: number;
33913399
/** Flag to reverse the order of the returned records. */
33923400
reverse?: boolean;
3393-
/**
3394-
* DEPRECATED: The highest sort-ordered rkey to stop at (exclusive)
3395-
* \@deprecated
3396-
*/
3397-
rkeyEnd?: string;
3398-
/**
3399-
* DEPRECATED: The lowest sort-ordered rkey to start from (exclusive)
3400-
* \@deprecated
3401-
*/
3402-
rkeyStart?: string;
34033401
}
34043402
type Input = undefined;
34053403
interface Output extends TypedBase {
@@ -3966,11 +3964,6 @@ export declare namespace ComAtprotoSyncGetRecord {
39663964
did: At.DID;
39673965
/** Record Key */
39683966
rkey: At.RKEY;
3969-
/**
3970-
* DEPRECATED: referenced a repo commit by CID, and retrieved record as of that commit
3971-
* \@deprecated
3972-
*/
3973-
commit?: At.CID;
39743967
}
39753968
type Input = undefined;
39763969
type Output = Uint8Array;
@@ -4113,7 +4106,7 @@ export declare namespace ComAtprotoSyncListReposByCollection {
41134106
}
41144107
}
41154108

4116-
/** 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. */
4109+
/** 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. DEPRECATED: just use com.atproto.sync.requestCrawl */
41174110
export declare namespace ComAtprotoSyncNotifyOfUpdate {
41184111
interface Params extends TypedBase {}
41194112
interface Input extends TypedBase {

0 commit comments

Comments
 (0)