Skip to content

Commit d8b382b

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

File tree

1 file changed

+3
-34
lines changed

1 file changed

+3
-34
lines changed

packages/lexicons/src/lib/lexicons.ts

Lines changed: 3 additions & 34 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-27T03:30:33.473Z
8+
* Generated on: 2025-03-01T03:33:31.541Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/dc6e4ecb0e09bbf4bc7a79c6ac43fb6da4166200/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/38320191e559f8b928c6e951a9b4a6207240bfc1/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -4196,9 +4196,7 @@ export declare namespace ComAtprotoSyncSubscribeRepos {
41964196
/** The last known event seq number to backfill from. */
41974197
cursor?: number;
41984198
}
4199-
type Message = TypeUnion<
4200-
Account | Commit | Handle | Identity | Info | Migrate | Sync | Tombstone
4201-
>;
4199+
type Message = TypeUnion<Account | Commit | Identity | Info | Sync>;
42024200
interface Errors extends TypedBase {
42034201
FutureCursor: {};
42044202
ConsumerTooSlow: {};
@@ -4259,16 +4257,6 @@ export declare namespace ComAtprotoSyncSubscribeRepos {
42594257
/** The root CID of the MST tree for the previous commit from this repo (indicated by the 'since' revision field in this message). Corresponds to the 'data' field in the repo commit object. NOTE: this field is effectively required for the 'inductive' version of firehose. */
42604258
prevData?: At.CIDLink;
42614259
}
4262-
/**
4263-
* DEPRECATED -- Use #identity event instead
4264-
* \@deprecated
4265-
*/
4266-
interface Handle extends TypedBase {
4267-
did: At.DID;
4268-
handle: At.Handle;
4269-
seq: number;
4270-
time: string;
4271-
}
42724260
/** Represents a change to an account's identity. Could be an updated handle, signing key, or pds hosting endpoint. Serves as a prod to all downstream services to refresh their identity cache. */
42734261
interface Identity extends TypedBase {
42744262
did: At.DID;
@@ -4281,16 +4269,6 @@ export declare namespace ComAtprotoSyncSubscribeRepos {
42814269
name: "OutdatedCursor" | (string & {});
42824270
message?: string;
42834271
}
4284-
/**
4285-
* DEPRECATED -- Use #account event instead
4286-
* \@deprecated
4287-
*/
4288-
interface Migrate extends TypedBase {
4289-
did: At.DID;
4290-
migrateTo: string | null;
4291-
seq: number;
4292-
time: string;
4293-
}
42944272
/** A repo operation, ie a mutation of a single record. */
42954273
interface RepoOp extends TypedBase {
42964274
action: "create" | "delete" | "update" | (string & {});
@@ -4313,15 +4291,6 @@ export declare namespace ComAtprotoSyncSubscribeRepos {
43134291
/** Timestamp of when this message was originally broadcast. */
43144292
time: string;
43154293
}
4316-
/**
4317-
* DEPRECATED -- Use #account event instead
4318-
* \@deprecated
4319-
*/
4320-
interface Tombstone extends TypedBase {
4321-
did: At.DID;
4322-
seq: number;
4323-
time: string;
4324-
}
43254294
}
43264295

43274296
/** Add a handle to the set of reserved handles. */

0 commit comments

Comments
 (0)