|
5 | 5 | * @module |
6 | 6 | * Contains type declarations for Bluesky lexicons |
7 | 7 | * @generated |
8 | | - * Generated on: 2025-02-25T03:29:51.134Z |
| 8 | + * Generated on: 2025-02-26T03:31:02.923Z |
9 | 9 | * Version: main |
10 | | - * Source: https://github.com/bluesky-social/atproto/tree/44f81f2eb9229e21aec4472b3a05e855396dbec5/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/27b0a7be1ed1b6e098114791d84ec9dc844db552/lexicons |
11 | 11 | */ |
12 | 12 |
|
13 | 13 | /** Base type with optional type field */ |
@@ -1962,6 +1962,12 @@ export declare namespace AppBskyLabelerService { |
1962 | 1962 | createdAt: string; |
1963 | 1963 | policies: AppBskyLabelerDefs.LabelerPolicies; |
1964 | 1964 | 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[]; |
1965 | 1971 | } |
1966 | 1972 | } |
1967 | 1973 |
|
@@ -3192,6 +3198,8 @@ export declare namespace ComAtprotoModerationDefs { |
3192 | 3198 | | "com.atproto.moderation.defs#reasonViolation" |
3193 | 3199 | | (string & {}); |
3194 | 3200 | 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 & {}); |
3195 | 3203 | } |
3196 | 3204 |
|
3197 | 3205 | /** Apply a batch transaction of repository creates, updates, and deletes. Requires auth, implemented by PDS. */ |
@@ -3390,16 +3398,6 @@ export declare namespace ComAtprotoRepoListRecords { |
3390 | 3398 | limit?: number; |
3391 | 3399 | /** Flag to reverse the order of the returned records. */ |
3392 | 3400 | 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; |
3403 | 3401 | } |
3404 | 3402 | type Input = undefined; |
3405 | 3403 | interface Output extends TypedBase { |
@@ -3966,11 +3964,6 @@ export declare namespace ComAtprotoSyncGetRecord { |
3966 | 3964 | did: At.DID; |
3967 | 3965 | /** Record Key */ |
3968 | 3966 | 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; |
3974 | 3967 | } |
3975 | 3968 | type Input = undefined; |
3976 | 3969 | type Output = Uint8Array; |
@@ -4113,7 +4106,7 @@ export declare namespace ComAtprotoSyncListReposByCollection { |
4113 | 4106 | } |
4114 | 4107 | } |
4115 | 4108 |
|
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 */ |
4117 | 4110 | export declare namespace ComAtprotoSyncNotifyOfUpdate { |
4118 | 4111 | interface Params extends TypedBase {} |
4119 | 4112 | interface Input extends TypedBase { |
|
0 commit comments