import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3, Timestamp } from "@bufbuild/protobuf"; /** * @generated from enum bsky.NotificationInclude */ export declare enum NotificationInclude { /** * @generated from enum value: NOTIFICATION_INCLUDE_UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * @generated from enum value: NOTIFICATION_INCLUDE_ALL = 1; */ ALL = 1, /** * @generated from enum value: NOTIFICATION_INCLUDE_FOLLOWS = 2; */ FOLLOWS = 2 } /** * @generated from enum bsky.ChatNotificationInclude */ export declare enum ChatNotificationInclude { /** * @generated from enum value: CHAT_NOTIFICATION_INCLUDE_UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * @generated from enum value: CHAT_NOTIFICATION_INCLUDE_ALL = 1; */ ALL = 1, /** * @generated from enum value: CHAT_NOTIFICATION_INCLUDE_ACCEPTED = 2; */ ACCEPTED = 2 } /** * @generated from enum bsky.FeedType */ export declare enum FeedType { /** * @generated from enum value: FEED_TYPE_UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * @generated from enum value: FEED_TYPE_POSTS_AND_AUTHOR_THREADS = 1; */ POSTS_AND_AUTHOR_THREADS = 1, /** * @generated from enum value: FEED_TYPE_POSTS_NO_REPLIES = 2; */ POSTS_NO_REPLIES = 2, /** * @generated from enum value: FEED_TYPE_POSTS_WITH_MEDIA = 3; */ POSTS_WITH_MEDIA = 3, /** * @generated from enum value: FEED_TYPE_POSTS_WITH_VIDEO = 4; */ POSTS_WITH_VIDEO = 4 } /** * @generated from enum bsky.SitemapPageType */ export declare enum SitemapPageType { /** * @generated from enum value: SITEMAP_PAGE_TYPE_UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * @generated from enum value: SITEMAP_PAGE_TYPE_USER = 1; */ USER = 1 } /** * @generated from message bsky.Record */ export declare class Record extends Message { /** * @generated from field: bytes record = 1; */ record: Uint8Array; /** * @generated from field: string cid = 2; */ cid: string; /** * @generated from field: google.protobuf.Timestamp indexed_at = 4; */ indexedAt?: Timestamp; /** * @generated from field: bool taken_down = 5; */ takenDown: boolean; /** * @generated from field: google.protobuf.Timestamp created_at = 6; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp sorted_at = 7; */ sortedAt?: Timestamp; /** * @generated from field: string takedown_ref = 8; */ takedownRef: string; /** * @generated from field: repeated string tags = 9; */ tags: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.Record"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Record; static fromJson(jsonValue: JsonValue, options?: Partial): Record; static fromJsonString(jsonString: string, options?: Partial): Record; static equals(a: Record | PlainMessage | undefined, b: Record | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlockRecordsRequest */ export declare class GetBlockRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlockRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlockRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlockRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlockRecordsRequest; static equals(a: GetBlockRecordsRequest | PlainMessage | undefined, b: GetBlockRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlockRecordsResponse */ export declare class GetBlockRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlockRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlockRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlockRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlockRecordsResponse; static equals(a: GetBlockRecordsResponse | PlainMessage | undefined, b: GetBlockRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFeedGeneratorRecordsRequest */ export declare class GetFeedGeneratorRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFeedGeneratorRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFeedGeneratorRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFeedGeneratorRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetFeedGeneratorRecordsRequest; static equals(a: GetFeedGeneratorRecordsRequest | PlainMessage | undefined, b: GetFeedGeneratorRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFeedGeneratorRecordsResponse */ export declare class GetFeedGeneratorRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFeedGeneratorRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFeedGeneratorRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFeedGeneratorRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetFeedGeneratorRecordsResponse; static equals(a: GetFeedGeneratorRecordsResponse | PlainMessage | undefined, b: GetFeedGeneratorRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowRecordsRequest */ export declare class GetFollowRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetFollowRecordsRequest; static equals(a: GetFollowRecordsRequest | PlainMessage | undefined, b: GetFollowRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowRecordsResponse */ export declare class GetFollowRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetFollowRecordsResponse; static equals(a: GetFollowRecordsResponse | PlainMessage | undefined, b: GetFollowRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikeRecordsRequest */ export declare class GetLikeRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikeRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikeRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikeRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetLikeRecordsRequest; static equals(a: GetLikeRecordsRequest | PlainMessage | undefined, b: GetLikeRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikeRecordsResponse */ export declare class GetLikeRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikeRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikeRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikeRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetLikeRecordsResponse; static equals(a: GetLikeRecordsResponse | PlainMessage | undefined, b: GetLikeRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListBlockRecordsRequest */ export declare class GetListBlockRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListBlockRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListBlockRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListBlockRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetListBlockRecordsRequest; static equals(a: GetListBlockRecordsRequest | PlainMessage | undefined, b: GetListBlockRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListBlockRecordsResponse */ export declare class GetListBlockRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListBlockRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListBlockRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListBlockRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetListBlockRecordsResponse; static equals(a: GetListBlockRecordsResponse | PlainMessage | undefined, b: GetListBlockRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListItemRecordsRequest */ export declare class GetListItemRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListItemRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListItemRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListItemRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetListItemRecordsRequest; static equals(a: GetListItemRecordsRequest | PlainMessage | undefined, b: GetListItemRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListItemRecordsResponse */ export declare class GetListItemRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListItemRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListItemRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListItemRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetListItemRecordsResponse; static equals(a: GetListItemRecordsResponse | PlainMessage | undefined, b: GetListItemRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListRecordsRequest */ export declare class GetListRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetListRecordsRequest; static equals(a: GetListRecordsRequest | PlainMessage | undefined, b: GetListRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListRecordsResponse */ export declare class GetListRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetListRecordsResponse; static equals(a: GetListRecordsResponse | PlainMessage | undefined, b: GetListRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.PostRecordMeta */ export declare class PostRecordMeta extends Message { /** * @generated from field: bool violates_thread_gate = 1; */ violatesThreadGate: boolean; /** * @generated from field: bool has_media = 2; */ hasMedia: boolean; /** * @generated from field: bool is_reply = 3; */ isReply: boolean; /** * @generated from field: bool violates_embedding_rules = 4; */ violatesEmbeddingRules: boolean; /** * @generated from field: bool has_post_gate = 5; */ hasPostGate: boolean; /** * @generated from field: bool has_thread_gate = 6; */ hasThreadGate: boolean; /** * @generated from field: bool has_video = 7; */ hasVideo: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.PostRecordMeta"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PostRecordMeta; static fromJson(jsonValue: JsonValue, options?: Partial): PostRecordMeta; static fromJsonString(jsonString: string, options?: Partial): PostRecordMeta; static equals(a: PostRecordMeta | PlainMessage | undefined, b: PostRecordMeta | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetPostRecordsRequest */ export declare class GetPostRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: optional string process_dynamic_tags_for_view = 2; */ processDynamicTagsForView?: string; /** * @generated from field: optional string viewer_did = 3; */ viewerDid?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetPostRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPostRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPostRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetPostRecordsRequest; static equals(a: GetPostRecordsRequest | PlainMessage | undefined, b: GetPostRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetPostRecordsResponse */ export declare class GetPostRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; /** * @generated from field: repeated bsky.PostRecordMeta meta = 2; */ meta: PostRecordMeta[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetPostRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPostRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPostRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetPostRecordsResponse; static equals(a: GetPostRecordsResponse | PlainMessage | undefined, b: GetPostRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetProfileRecordsRequest */ export declare class GetProfileRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetProfileRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetProfileRecordsRequest; static equals(a: GetProfileRecordsRequest | PlainMessage | undefined, b: GetProfileRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetProfileRecordsResponse */ export declare class GetProfileRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetProfileRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetProfileRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetProfileRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetProfileRecordsResponse; static equals(a: GetProfileRecordsResponse | PlainMessage | undefined, b: GetProfileRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorChatDeclarationRecordsRequest */ export declare class GetActorChatDeclarationRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorChatDeclarationRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorChatDeclarationRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorChatDeclarationRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorChatDeclarationRecordsRequest; static equals(a: GetActorChatDeclarationRecordsRequest | PlainMessage | undefined, b: GetActorChatDeclarationRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorChatDeclarationRecordsResponse */ export declare class GetActorChatDeclarationRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorChatDeclarationRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorChatDeclarationRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorChatDeclarationRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorChatDeclarationRecordsResponse; static equals(a: GetActorChatDeclarationRecordsResponse | PlainMessage | undefined, b: GetActorChatDeclarationRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationDeclarationRecordsRequest */ export declare class GetNotificationDeclarationRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationDeclarationRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationDeclarationRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationDeclarationRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetNotificationDeclarationRecordsRequest; static equals(a: GetNotificationDeclarationRecordsRequest | PlainMessage | undefined, b: GetNotificationDeclarationRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationDeclarationRecordsResponse */ export declare class GetNotificationDeclarationRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationDeclarationRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationDeclarationRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationDeclarationRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetNotificationDeclarationRecordsResponse; static equals(a: GetNotificationDeclarationRecordsResponse | PlainMessage | undefined, b: GetNotificationDeclarationRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetGermDeclarationRecordsRequest */ export declare class GetGermDeclarationRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetGermDeclarationRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetGermDeclarationRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetGermDeclarationRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetGermDeclarationRecordsRequest; static equals(a: GetGermDeclarationRecordsRequest | PlainMessage | undefined, b: GetGermDeclarationRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetGermDeclarationRecordsResponse */ export declare class GetGermDeclarationRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetGermDeclarationRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetGermDeclarationRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetGermDeclarationRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetGermDeclarationRecordsResponse; static equals(a: GetGermDeclarationRecordsResponse | PlainMessage | undefined, b: GetGermDeclarationRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStatusRecordsRequest */ export declare class GetStatusRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStatusRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStatusRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetStatusRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetStatusRecordsRequest; static equals(a: GetStatusRecordsRequest | PlainMessage | undefined, b: GetStatusRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStatusRecordsResponse */ export declare class GetStatusRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStatusRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStatusRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetStatusRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetStatusRecordsResponse; static equals(a: GetStatusRecordsResponse | PlainMessage | undefined, b: GetStatusRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRepostRecordsRequest */ export declare class GetRepostRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetRepostRecordsRequest; static equals(a: GetRepostRecordsRequest | PlainMessage | undefined, b: GetRepostRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRepostRecordsResponse */ export declare class GetRepostRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetRepostRecordsResponse; static equals(a: GetRepostRecordsResponse | PlainMessage | undefined, b: GetRepostRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetThreadGateRecordsRequest */ export declare class GetThreadGateRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadGateRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadGateRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadGateRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetThreadGateRecordsRequest; static equals(a: GetThreadGateRecordsRequest | PlainMessage | undefined, b: GetThreadGateRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetThreadGateRecordsResponse */ export declare class GetThreadGateRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadGateRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadGateRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadGateRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetThreadGateRecordsResponse; static equals(a: GetThreadGateRecordsResponse | PlainMessage | undefined, b: GetThreadGateRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetPostgateRecordsRequest */ export declare class GetPostgateRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetPostgateRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPostgateRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPostgateRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetPostgateRecordsRequest; static equals(a: GetPostgateRecordsRequest | PlainMessage | undefined, b: GetPostgateRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetPostgateRecordsResponse */ export declare class GetPostgateRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetPostgateRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPostgateRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPostgateRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetPostgateRecordsResponse; static equals(a: GetPostgateRecordsResponse | PlainMessage | undefined, b: GetPostgateRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLabelerRecordsRequest */ export declare class GetLabelerRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLabelerRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLabelerRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLabelerRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetLabelerRecordsRequest; static equals(a: GetLabelerRecordsRequest | PlainMessage | undefined, b: GetLabelerRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLabelerRecordsResponse */ export declare class GetLabelerRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLabelerRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLabelerRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLabelerRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetLabelerRecordsResponse; static equals(a: GetLabelerRecordsResponse | PlainMessage | undefined, b: GetLabelerRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetAllLabelersRequest */ export declare class GetAllLabelersRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetAllLabelersRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAllLabelersRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetAllLabelersRequest; static fromJsonString(jsonString: string, options?: Partial): GetAllLabelersRequest; static equals(a: GetAllLabelersRequest | PlainMessage | undefined, b: GetAllLabelersRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetAllLabelersResponse */ export declare class GetAllLabelersResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: repeated bsky.Record records = 2; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetAllLabelersResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAllLabelersResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetAllLabelersResponse; static fromJsonString(jsonString: string, options?: Partial): GetAllLabelersResponse; static equals(a: GetAllLabelersResponse | PlainMessage | undefined, b: GetAllLabelersResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStarterPackRecordsRequest */ export declare class GetStarterPackRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStarterPackRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStarterPackRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetStarterPackRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetStarterPackRecordsRequest; static equals(a: GetStarterPackRecordsRequest | PlainMessage | undefined, b: GetStarterPackRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStarterPackRecordsResponse */ export declare class GetStarterPackRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStarterPackRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStarterPackRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetStarterPackRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetStarterPackRecordsResponse; static equals(a: GetStarterPackRecordsResponse | PlainMessage | undefined, b: GetStarterPackRecordsResponse | PlainMessage | undefined): boolean; } /** * - Return follow uris where user A follows users B, C, D, … * - E.g. for viewer state on `getProfiles` * * @generated from message bsky.GetActorFollowsActorsRequest */ export declare class GetActorFollowsActorsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string target_dids = 2; */ targetDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorFollowsActorsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorFollowsActorsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorFollowsActorsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorFollowsActorsRequest; static equals(a: GetActorFollowsActorsRequest | PlainMessage | undefined, b: GetActorFollowsActorsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorFollowsActorsResponse */ export declare class GetActorFollowsActorsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorFollowsActorsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorFollowsActorsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorFollowsActorsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorFollowsActorsResponse; static equals(a: GetActorFollowsActorsResponse | PlainMessage | undefined, b: GetActorFollowsActorsResponse | PlainMessage | undefined): boolean; } /** * - Return follow uris of users who follows user A * - For `getFollowers` list * * @generated from message bsky.GetFollowersRequest */ export declare class GetFollowersRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowersRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowersRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowersRequest; static fromJsonString(jsonString: string, options?: Partial): GetFollowersRequest; static equals(a: GetFollowersRequest | PlainMessage | undefined, b: GetFollowersRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.FollowInfo */ export declare class FollowInfo extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string actor_did = 2; */ actorDid: string; /** * @generated from field: string subject_did = 3; */ subjectDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.FollowInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FollowInfo; static fromJson(jsonValue: JsonValue, options?: Partial): FollowInfo; static fromJsonString(jsonString: string, options?: Partial): FollowInfo; static equals(a: FollowInfo | PlainMessage | undefined, b: FollowInfo | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowersResponse */ export declare class GetFollowersResponse extends Message { /** * @generated from field: repeated bsky.FollowInfo followers = 1; */ followers: FollowInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowersResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowersResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowersResponse; static fromJsonString(jsonString: string, options?: Partial): GetFollowersResponse; static equals(a: GetFollowersResponse | PlainMessage | undefined, b: GetFollowersResponse | PlainMessage | undefined): boolean; } /** * - Return follow uris of users A follows * - For `getFollows` list * * @generated from message bsky.GetFollowsRequest */ export declare class GetFollowsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowsRequest; static fromJsonString(jsonString: string, options?: Partial): GetFollowsRequest; static equals(a: GetFollowsRequest | PlainMessage | undefined, b: GetFollowsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowsResponse */ export declare class GetFollowsResponse extends Message { /** * @generated from field: repeated bsky.FollowInfo follows = 1; */ follows: FollowInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowsResponse; static fromJsonString(jsonString: string, options?: Partial): GetFollowsResponse; static equals(a: GetFollowsResponse | PlainMessage | undefined, b: GetFollowsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.VerificationMeta */ export declare class VerificationMeta extends Message { /** * @generated from field: string rkey = 1; */ rkey: string; /** * @generated from field: string handle = 2; */ handle: string; /** * @generated from field: string display_name = 3; */ displayName: string; /** * @generated from field: google.protobuf.Timestamp sorted_at = 4; */ sortedAt?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.VerificationMeta"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): VerificationMeta; static fromJson(jsonValue: JsonValue, options?: Partial): VerificationMeta; static fromJsonString(jsonString: string, options?: Partial): VerificationMeta; static equals(a: VerificationMeta | PlainMessage | undefined, b: VerificationMeta | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationRecordsRequest */ export declare class GetVerificationRecordsRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationRecordsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationRecordsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationRecordsRequest; static fromJsonString(jsonString: string, options?: Partial): GetVerificationRecordsRequest; static equals(a: GetVerificationRecordsRequest | PlainMessage | undefined, b: GetVerificationRecordsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationRecordsResponse */ export declare class GetVerificationRecordsResponse extends Message { /** * @generated from field: repeated bsky.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationRecordsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationRecordsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationRecordsResponse; static fromJsonString(jsonString: string, options?: Partial): GetVerificationRecordsResponse; static equals(a: GetVerificationRecordsResponse | PlainMessage | undefined, b: GetVerificationRecordsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.VerificationIssued */ export declare class VerificationIssued extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string rkey = 2; */ rkey: string; /** * @generated from field: string subject_did = 3; */ subjectDid: string; /** * @generated from field: google.protobuf.Timestamp created_at = 7; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp indexed_at = 8; */ indexedAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp sorted_at = 9; */ sortedAt?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.VerificationIssued"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): VerificationIssued; static fromJson(jsonValue: JsonValue, options?: Partial): VerificationIssued; static fromJsonString(jsonString: string, options?: Partial): VerificationIssued; static equals(a: VerificationIssued | PlainMessage | undefined, b: VerificationIssued | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationsIssuedRequest */ export declare class GetVerificationsIssuedRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationsIssuedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationsIssuedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationsIssuedRequest; static fromJsonString(jsonString: string, options?: Partial): GetVerificationsIssuedRequest; static equals(a: GetVerificationsIssuedRequest | PlainMessage | undefined, b: GetVerificationsIssuedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationsIssuedResponse */ export declare class GetVerificationsIssuedResponse extends Message { /** * @generated from field: repeated bsky.VerificationIssued verifications = 1; */ verifications: VerificationIssued[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationsIssuedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationsIssuedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationsIssuedResponse; static fromJsonString(jsonString: string, options?: Partial): GetVerificationsIssuedResponse; static equals(a: GetVerificationsIssuedResponse | PlainMessage | undefined, b: GetVerificationsIssuedResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.VerificationReceived */ export declare class VerificationReceived extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string rkey = 2; */ rkey: string; /** * @generated from field: string subject_did = 3; */ subjectDid: string; /** * @generated from field: google.protobuf.Timestamp created_at = 7; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp indexed_at = 8; */ indexedAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp sorted_at = 9; */ sortedAt?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.VerificationReceived"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): VerificationReceived; static fromJson(jsonValue: JsonValue, options?: Partial): VerificationReceived; static fromJsonString(jsonString: string, options?: Partial): VerificationReceived; static equals(a: VerificationReceived | PlainMessage | undefined, b: VerificationReceived | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationsReceivedRequest */ export declare class GetVerificationsReceivedRequest extends Message { /** * @generated from field: string subject_did = 1; */ subjectDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationsReceivedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationsReceivedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationsReceivedRequest; static fromJsonString(jsonString: string, options?: Partial): GetVerificationsReceivedRequest; static equals(a: GetVerificationsReceivedRequest | PlainMessage | undefined, b: GetVerificationsReceivedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetVerificationsReceivedResponse */ export declare class GetVerificationsReceivedResponse extends Message { /** * @generated from field: repeated bsky.VerificationReceived verifications = 1; */ verifications: VerificationReceived[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetVerificationsReceivedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetVerificationsReceivedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetVerificationsReceivedResponse; static fromJsonString(jsonString: string, options?: Partial): GetVerificationsReceivedResponse; static equals(a: GetVerificationsReceivedResponse | PlainMessage | undefined, b: GetVerificationsReceivedResponse | PlainMessage | undefined): boolean; } /** * - return like uris where subject uri is subject A * - `getLikes` list for a post * * @generated from message bsky.GetLikesBySubjectRequest */ export declare class GetLikesBySubjectRequest extends Message { /** * @generated from field: bsky.RecordRef subject = 1; */ subject?: RecordRef; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesBySubjectRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesBySubjectRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesBySubjectRequest; static fromJsonString(jsonString: string, options?: Partial): GetLikesBySubjectRequest; static equals(a: GetLikesBySubjectRequest | PlainMessage | undefined, b: GetLikesBySubjectRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikesBySubjectResponse */ export declare class GetLikesBySubjectResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesBySubjectResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesBySubjectResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesBySubjectResponse; static fromJsonString(jsonString: string, options?: Partial): GetLikesBySubjectResponse; static equals(a: GetLikesBySubjectResponse | PlainMessage | undefined, b: GetLikesBySubjectResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikesBySubjectSortedRequest */ export declare class GetLikesBySubjectSortedRequest extends Message { /** * @generated from field: bsky.RecordRef subject = 1; */ subject?: RecordRef; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesBySubjectSortedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesBySubjectSortedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesBySubjectSortedRequest; static fromJsonString(jsonString: string, options?: Partial): GetLikesBySubjectSortedRequest; static equals(a: GetLikesBySubjectSortedRequest | PlainMessage | undefined, b: GetLikesBySubjectSortedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikesBySubjectSortedResponse */ export declare class GetLikesBySubjectSortedResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesBySubjectSortedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesBySubjectSortedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesBySubjectSortedResponse; static fromJsonString(jsonString: string, options?: Partial): GetLikesBySubjectSortedResponse; static equals(a: GetLikesBySubjectSortedResponse | PlainMessage | undefined, b: GetLikesBySubjectSortedResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetQuotesBySubjectSortedRequest */ export declare class GetQuotesBySubjectSortedRequest extends Message { /** * @generated from field: bsky.RecordRef subject = 1; */ subject?: RecordRef; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetQuotesBySubjectSortedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetQuotesBySubjectSortedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetQuotesBySubjectSortedRequest; static fromJsonString(jsonString: string, options?: Partial): GetQuotesBySubjectSortedRequest; static equals(a: GetQuotesBySubjectSortedRequest | PlainMessage | undefined, b: GetQuotesBySubjectSortedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetQuotesBySubjectSortedResponse */ export declare class GetQuotesBySubjectSortedResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetQuotesBySubjectSortedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetQuotesBySubjectSortedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetQuotesBySubjectSortedResponse; static fromJsonString(jsonString: string, options?: Partial): GetQuotesBySubjectSortedResponse; static equals(a: GetQuotesBySubjectSortedResponse | PlainMessage | undefined, b: GetQuotesBySubjectSortedResponse | PlainMessage | undefined): boolean; } /** * - return like uris for user A on subject B, C, D... * - viewer state on posts * * @generated from message bsky.GetLikesByActorAndSubjectsRequest */ export declare class GetLikesByActorAndSubjectsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated bsky.RecordRef refs = 2; */ refs: RecordRef[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesByActorAndSubjectsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesByActorAndSubjectsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesByActorAndSubjectsRequest; static fromJsonString(jsonString: string, options?: Partial): GetLikesByActorAndSubjectsRequest; static equals(a: GetLikesByActorAndSubjectsRequest | PlainMessage | undefined, b: GetLikesByActorAndSubjectsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLikesByActorAndSubjectsResponse */ export declare class GetLikesByActorAndSubjectsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLikesByActorAndSubjectsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLikesByActorAndSubjectsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLikesByActorAndSubjectsResponse; static fromJsonString(jsonString: string, options?: Partial): GetLikesByActorAndSubjectsResponse; static equals(a: GetLikesByActorAndSubjectsResponse | PlainMessage | undefined, b: GetLikesByActorAndSubjectsResponse | PlainMessage | undefined): boolean; } /** * - return recent like uris for user A * - `getActorLikes` list for a user * * @generated from message bsky.GetActorLikesRequest */ export declare class GetActorLikesRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorLikesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorLikesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorLikesRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorLikesRequest; static equals(a: GetActorLikesRequest | PlainMessage | undefined, b: GetActorLikesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.LikeInfo */ export declare class LikeInfo extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string subject = 2; */ subject: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.LikeInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): LikeInfo; static fromJson(jsonValue: JsonValue, options?: Partial): LikeInfo; static fromJsonString(jsonString: string, options?: Partial): LikeInfo; static equals(a: LikeInfo | PlainMessage | undefined, b: LikeInfo | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorLikesResponse */ export declare class GetActorLikesResponse extends Message { /** * @generated from field: repeated bsky.LikeInfo likes = 1; */ likes: LikeInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorLikesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorLikesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorLikesResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorLikesResponse; static equals(a: GetActorLikesResponse | PlainMessage | undefined, b: GetActorLikesResponse | PlainMessage | undefined): boolean; } /** * * Interactions * * * @generated from message bsky.GetInteractionCountsRequest */ export declare class GetInteractionCountsRequest extends Message { /** * @generated from field: repeated bsky.RecordRef refs = 1; */ refs: RecordRef[]; /** * @generated from field: repeated string skip_cache_for_dids = 2; */ skipCacheForDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetInteractionCountsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetInteractionCountsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetInteractionCountsRequest; static fromJsonString(jsonString: string, options?: Partial): GetInteractionCountsRequest; static equals(a: GetInteractionCountsRequest | PlainMessage | undefined, b: GetInteractionCountsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetInteractionCountsResponse */ export declare class GetInteractionCountsResponse extends Message { /** * @generated from field: repeated int32 likes = 1; */ likes: number[]; /** * @generated from field: repeated int32 reposts = 2; */ reposts: number[]; /** * @generated from field: repeated int32 replies = 3; */ replies: number[]; /** * @generated from field: repeated int32 quotes = 4; */ quotes: number[]; /** * @generated from field: repeated int32 bookmarks = 5; */ bookmarks: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetInteractionCountsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetInteractionCountsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetInteractionCountsResponse; static fromJsonString(jsonString: string, options?: Partial): GetInteractionCountsResponse; static equals(a: GetInteractionCountsResponse | PlainMessage | undefined, b: GetInteractionCountsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetCountsForUsersRequest */ export declare class GetCountsForUsersRequest extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetCountsForUsersRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCountsForUsersRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetCountsForUsersRequest; static fromJsonString(jsonString: string, options?: Partial): GetCountsForUsersRequest; static equals(a: GetCountsForUsersRequest | PlainMessage | undefined, b: GetCountsForUsersRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetCountsForUsersResponse */ export declare class GetCountsForUsersResponse extends Message { /** * @generated from field: repeated int32 posts = 1; */ posts: number[]; /** * @generated from field: repeated int32 reposts = 2; */ reposts: number[]; /** * @generated from field: repeated int32 following = 3; */ following: number[]; /** * @generated from field: repeated int32 followers = 4; */ followers: number[]; /** * @generated from field: repeated int32 lists = 5; */ lists: number[]; /** * @generated from field: repeated int32 feeds = 6; */ feeds: number[]; /** * @generated from field: repeated int32 starter_packs = 7; */ starterPacks: number[]; /** * @generated from field: repeated int32 drafts = 8; */ drafts: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetCountsForUsersResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCountsForUsersResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetCountsForUsersResponse; static fromJsonString(jsonString: string, options?: Partial): GetCountsForUsersResponse; static equals(a: GetCountsForUsersResponse | PlainMessage | undefined, b: GetCountsForUsersResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStarterPackCountsRequest */ export declare class GetStarterPackCountsRequest extends Message { /** * @generated from field: repeated bsky.RecordRef refs = 1; */ refs: RecordRef[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStarterPackCountsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStarterPackCountsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetStarterPackCountsRequest; static fromJsonString(jsonString: string, options?: Partial): GetStarterPackCountsRequest; static equals(a: GetStarterPackCountsRequest | PlainMessage | undefined, b: GetStarterPackCountsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetStarterPackCountsResponse */ export declare class GetStarterPackCountsResponse extends Message { /** * @generated from field: repeated int32 joined_week = 1; */ joinedWeek: number[]; /** * @generated from field: repeated int32 joined_all_time = 2; */ joinedAllTime: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetStarterPackCountsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetStarterPackCountsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetStarterPackCountsResponse; static fromJsonString(jsonString: string, options?: Partial): GetStarterPackCountsResponse; static equals(a: GetStarterPackCountsResponse | PlainMessage | undefined, b: GetStarterPackCountsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListCountsRequest */ export declare class GetListCountsRequest extends Message { /** * @generated from field: repeated bsky.RecordRef refs = 1; */ refs: RecordRef[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListCountsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListCountsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListCountsRequest; static fromJsonString(jsonString: string, options?: Partial): GetListCountsRequest; static equals(a: GetListCountsRequest | PlainMessage | undefined, b: GetListCountsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListCountsResponse */ export declare class GetListCountsResponse extends Message { /** * @generated from field: repeated int32 list_items = 1; */ listItems: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListCountsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListCountsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListCountsResponse; static fromJsonString(jsonString: string, options?: Partial): GetListCountsResponse; static equals(a: GetListCountsResponse | PlainMessage | undefined, b: GetListCountsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNewUserCountForRangeRequest */ export declare class GetNewUserCountForRangeRequest extends Message { /** * @generated from field: google.protobuf.Timestamp start = 1; */ start?: Timestamp; /** * @generated from field: google.protobuf.Timestamp end = 2; */ end?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNewUserCountForRangeRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNewUserCountForRangeRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetNewUserCountForRangeRequest; static fromJsonString(jsonString: string, options?: Partial): GetNewUserCountForRangeRequest; static equals(a: GetNewUserCountForRangeRequest | PlainMessage | undefined, b: GetNewUserCountForRangeRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNewUserCountForRangeResponse */ export declare class GetNewUserCountForRangeResponse extends Message { /** * @generated from field: int32 count = 1; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNewUserCountForRangeResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNewUserCountForRangeResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetNewUserCountForRangeResponse; static fromJsonString(jsonString: string, options?: Partial): GetNewUserCountForRangeResponse; static equals(a: GetNewUserCountForRangeResponse | PlainMessage | undefined, b: GetNewUserCountForRangeResponse | PlainMessage | undefined): boolean; } /** * - return repost uris where subject uri is subject A * - `getReposts` list for a post * * @generated from message bsky.GetRepostsBySubjectRequest */ export declare class GetRepostsBySubjectRequest extends Message { /** * @generated from field: bsky.RecordRef subject = 1; */ subject?: RecordRef; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostsBySubjectRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostsBySubjectRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostsBySubjectRequest; static fromJsonString(jsonString: string, options?: Partial): GetRepostsBySubjectRequest; static equals(a: GetRepostsBySubjectRequest | PlainMessage | undefined, b: GetRepostsBySubjectRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRepostsBySubjectResponse */ export declare class GetRepostsBySubjectResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostsBySubjectResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostsBySubjectResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostsBySubjectResponse; static fromJsonString(jsonString: string, options?: Partial): GetRepostsBySubjectResponse; static equals(a: GetRepostsBySubjectResponse | PlainMessage | undefined, b: GetRepostsBySubjectResponse | PlainMessage | undefined): boolean; } /** * - return repost uris for user A on subject B, C, D... * - viewer state on posts * * @generated from message bsky.GetRepostsByActorAndSubjectsRequest */ export declare class GetRepostsByActorAndSubjectsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated bsky.RecordRef refs = 2; */ refs: RecordRef[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostsByActorAndSubjectsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostsByActorAndSubjectsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostsByActorAndSubjectsRequest; static fromJsonString(jsonString: string, options?: Partial): GetRepostsByActorAndSubjectsRequest; static equals(a: GetRepostsByActorAndSubjectsRequest | PlainMessage | undefined, b: GetRepostsByActorAndSubjectsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.RecordRef */ export declare class RecordRef extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string cid = 2; */ cid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.RecordRef"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): RecordRef; static fromJson(jsonValue: JsonValue, options?: Partial): RecordRef; static fromJsonString(jsonString: string, options?: Partial): RecordRef; static equals(a: RecordRef | PlainMessage | undefined, b: RecordRef | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRepostsByActorAndSubjectsResponse */ export declare class GetRepostsByActorAndSubjectsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRepostsByActorAndSubjectsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRepostsByActorAndSubjectsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRepostsByActorAndSubjectsResponse; static fromJsonString(jsonString: string, options?: Partial): GetRepostsByActorAndSubjectsResponse; static equals(a: GetRepostsByActorAndSubjectsResponse | PlainMessage | undefined, b: GetRepostsByActorAndSubjectsResponse | PlainMessage | undefined): boolean; } /** * - return recent repost uris for user A * - `getActorReposts` list for a user * * @generated from message bsky.GetActorRepostsRequest */ export declare class GetActorRepostsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorRepostsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorRepostsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorRepostsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorRepostsRequest; static equals(a: GetActorRepostsRequest | PlainMessage | undefined, b: GetActorRepostsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorRepostsResponse */ export declare class GetActorRepostsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorRepostsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorRepostsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorRepostsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorRepostsResponse; static equals(a: GetActorRepostsResponse | PlainMessage | undefined, b: GetActorRepostsResponse | PlainMessage | undefined): boolean; } /** * - return actor information for dids A, B, C… * - profile hydration * - should this include handles? apply repo takedown? * * @generated from message bsky.GetActorsRequest */ export declare class GetActorsRequest extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; /** * @generated from field: repeated string skip_cache_for_dids = 2; */ skipCacheForDids: string[]; /** * @generated from field: repeated string return_age_assurance_for_dids = 3; */ returnAgeAssuranceForDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorsRequest; static equals(a: GetActorsRequest | PlainMessage | undefined, b: GetActorsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ActorInfo */ export declare class ActorInfo extends Message { /** * @generated from field: bool exists = 1; */ exists: boolean; /** * @generated from field: string handle = 2; */ handle: string; /** * @generated from field: bsky.Record profile = 3; */ profile?: Record; /** * @generated from field: bool taken_down = 4; */ takenDown: boolean; /** * @generated from field: string takedown_ref = 5; */ takedownRef: string; /** * @generated from field: google.protobuf.Timestamp tombstoned_at = 6; */ tombstonedAt?: Timestamp; /** * @generated from field: bool labeler = 7; */ labeler: boolean; /** * @generated from field: string allow_incoming_chats_from = 8; */ allowIncomingChatsFrom: string; /** * @generated from field: string upstream_status = 9; */ upstreamStatus: string; /** * @generated from field: google.protobuf.Timestamp created_at = 10; */ createdAt?: Timestamp; /** * @generated from field: bool priority_notifications = 11; */ priorityNotifications: boolean; /** * @generated from field: double pagerank = 12; */ pagerank: number; /** * @generated from field: bool trusted_verifier = 13; */ trustedVerifier: boolean; /** * @generated from field: map verified_by = 14; */ verifiedBy: { [key: string]: VerificationMeta; }; /** * Tags being applied to the account itself * * @generated from field: repeated string tags = 15; */ tags: string[]; /** * Tags being applied to the profile record * * @generated from field: repeated string profile_tags = 16; */ profileTags: string[]; /** * @generated from field: bsky.Record status_record = 17; */ statusRecord?: Record; /** * @generated from field: string allow_activity_subscriptions_from = 18; */ allowActivitySubscriptionsFrom: string; /** * @generated from field: optional bsky.AgeAssuranceStatus age_assurance_status = 19; */ ageAssuranceStatus?: AgeAssuranceStatus; /** * @generated from field: bsky.Record germ_record = 21; */ germRecord?: Record; /** * @generated from field: string allow_group_chat_invites_from = 22; */ allowGroupChatInvitesFrom: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ActorInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ActorInfo; static fromJson(jsonValue: JsonValue, options?: Partial): ActorInfo; static fromJsonString(jsonString: string, options?: Partial): ActorInfo; static equals(a: ActorInfo | PlainMessage | undefined, b: ActorInfo | PlainMessage | undefined): boolean; } /** * @generated from message bsky.AgeAssuranceStatus */ export declare class AgeAssuranceStatus extends Message { /** * @generated from field: string status = 1; */ status: string; /** * @generated from field: google.protobuf.Timestamp last_initiated_at = 2; */ lastInitiatedAt?: Timestamp; /** * @generated from field: bool override_applied = 3; */ overrideApplied: boolean; /** * @generated from field: string access = 4; */ access: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.AgeAssuranceStatus"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AgeAssuranceStatus; static fromJson(jsonValue: JsonValue, options?: Partial): AgeAssuranceStatus; static fromJsonString(jsonString: string, options?: Partial): AgeAssuranceStatus; static equals(a: AgeAssuranceStatus | PlainMessage | undefined, b: AgeAssuranceStatus | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorsResponse */ export declare class GetActorsResponse extends Message { /** * @generated from field: repeated bsky.ActorInfo actors = 1; */ actors: ActorInfo[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorsResponse; static equals(a: GetActorsResponse | PlainMessage | undefined, b: GetActorsResponse | PlainMessage | undefined): boolean; } /** * - return did for handle A * - `resolveHandle` * - answering queries where the query param is a handle * * @generated from message bsky.GetDidsByHandlesRequest */ export declare class GetDidsByHandlesRequest extends Message { /** * @generated from field: repeated string handles = 1; */ handles: string[]; /** * @generated from field: bool lookup_unidirectional = 2; */ lookupUnidirectional: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetDidsByHandlesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetDidsByHandlesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetDidsByHandlesRequest; static fromJsonString(jsonString: string, options?: Partial): GetDidsByHandlesRequest; static equals(a: GetDidsByHandlesRequest | PlainMessage | undefined, b: GetDidsByHandlesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetDidsByHandlesResponse */ export declare class GetDidsByHandlesResponse extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetDidsByHandlesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetDidsByHandlesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetDidsByHandlesResponse; static fromJsonString(jsonString: string, options?: Partial): GetDidsByHandlesResponse; static equals(a: GetDidsByHandlesResponse | PlainMessage | undefined, b: GetDidsByHandlesResponse | PlainMessage | undefined): boolean; } /** * - return relationships between user A and users B, C, D... * - profile hydration * - block application * * @generated from message bsky.GetRelationshipsRequest */ export declare class GetRelationshipsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string target_dids = 2; */ targetDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRelationshipsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRelationshipsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRelationshipsRequest; static fromJsonString(jsonString: string, options?: Partial): GetRelationshipsRequest; static equals(a: GetRelationshipsRequest | PlainMessage | undefined, b: GetRelationshipsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.Relationships */ export declare class Relationships extends Message { /** * @generated from field: bool muted = 1; */ muted: boolean; /** * @generated from field: string muted_by_list = 2; */ mutedByList: string; /** * @generated from field: string blocked_by = 3; */ blockedBy: string; /** * @generated from field: string blocking = 4; */ blocking: string; /** * @generated from field: string blocked_by_list = 5; */ blockedByList: string; /** * @generated from field: string blocking_by_list = 6; */ blockingByList: string; /** * @generated from field: string following = 7; */ following: string; /** * @generated from field: string followed_by = 8; */ followedBy: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.Relationships"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Relationships; static fromJson(jsonValue: JsonValue, options?: Partial): Relationships; static fromJsonString(jsonString: string, options?: Partial): Relationships; static equals(a: Relationships | PlainMessage | undefined, b: Relationships | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRelationshipsResponse */ export declare class GetRelationshipsResponse extends Message { /** * @generated from field: repeated bsky.Relationships relationships = 1; */ relationships: Relationships[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRelationshipsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRelationshipsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRelationshipsResponse; static fromJsonString(jsonString: string, options?: Partial): GetRelationshipsResponse; static equals(a: GetRelationshipsResponse | PlainMessage | undefined, b: GetRelationshipsResponse | PlainMessage | undefined): boolean; } /** * - return whether a block (bidrectionally and either direct or through a list) exists between two dids * - enforcing 3rd party block violations * * @generated from message bsky.RelationshipPair */ export declare class RelationshipPair extends Message { /** * @generated from field: string a = 1; */ a: string; /** * @generated from field: string b = 2; */ b: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.RelationshipPair"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): RelationshipPair; static fromJson(jsonValue: JsonValue, options?: Partial): RelationshipPair; static fromJsonString(jsonString: string, options?: Partial): RelationshipPair; static equals(a: RelationshipPair | PlainMessage | undefined, b: RelationshipPair | PlainMessage | undefined): boolean; } /** * @generated from message bsky.BlockExistence */ export declare class BlockExistence extends Message { /** * @generated from field: string blocked_by = 1; */ blockedBy: string; /** * @generated from field: string blocking = 2; */ blocking: string; /** * @generated from field: string blocked_by_list = 3; */ blockedByList: string; /** * @generated from field: string blocking_by_list = 4; */ blockingByList: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.BlockExistence"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BlockExistence; static fromJson(jsonValue: JsonValue, options?: Partial): BlockExistence; static fromJsonString(jsonString: string, options?: Partial): BlockExistence; static equals(a: BlockExistence | PlainMessage | undefined, b: BlockExistence | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlockExistenceRequest */ export declare class GetBlockExistenceRequest extends Message { /** * @generated from field: repeated bsky.RelationshipPair pairs = 1; */ pairs: RelationshipPair[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlockExistenceRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlockExistenceRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlockExistenceRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlockExistenceRequest; static equals(a: GetBlockExistenceRequest | PlainMessage | undefined, b: GetBlockExistenceRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlockExistenceResponse */ export declare class GetBlockExistenceResponse extends Message { /** * @generated from field: repeated bool exists = 1; */ exists: boolean[]; /** * @generated from field: repeated bsky.BlockExistence blocks = 2; */ blocks: BlockExistence[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlockExistenceResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlockExistenceResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlockExistenceResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlockExistenceResponse; static equals(a: GetBlockExistenceResponse | PlainMessage | undefined, b: GetBlockExistenceResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ListItemInfo */ export declare class ListItemInfo extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string did = 2; */ did: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ListItemInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ListItemInfo; static fromJson(jsonValue: JsonValue, options?: Partial): ListItemInfo; static fromJsonString(jsonString: string, options?: Partial): ListItemInfo; static equals(a: ListItemInfo | PlainMessage | undefined, b: ListItemInfo | PlainMessage | undefined): boolean; } /** * - Return dids of users in list A * - E.g. to view items in one of your mute lists * * @generated from message bsky.GetListMembersRequest */ export declare class GetListMembersRequest extends Message { /** * @generated from field: string list_uri = 1; */ listUri: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListMembersRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListMembersRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListMembersRequest; static fromJsonString(jsonString: string, options?: Partial): GetListMembersRequest; static equals(a: GetListMembersRequest | PlainMessage | undefined, b: GetListMembersRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListMembersResponse */ export declare class GetListMembersResponse extends Message { /** * @generated from field: repeated bsky.ListItemInfo listitems = 1; */ listitems: ListItemInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListMembersResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListMembersResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListMembersResponse; static fromJsonString(jsonString: string, options?: Partial): GetListMembersResponse; static equals(a: GetListMembersResponse | PlainMessage | undefined, b: GetListMembersResponse | PlainMessage | undefined): boolean; } /** * - Return list uris where user A in list B, C, D… * - Used in thread reply gates * * @generated from message bsky.GetListMembershipRequest */ export declare class GetListMembershipRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string list_uris = 2; */ listUris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListMembershipRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListMembershipRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListMembershipRequest; static fromJsonString(jsonString: string, options?: Partial): GetListMembershipRequest; static equals(a: GetListMembershipRequest | PlainMessage | undefined, b: GetListMembershipRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListMembershipResponse */ export declare class GetListMembershipResponse extends Message { /** * @generated from field: repeated string listitem_uris = 1; */ listitemUris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListMembershipResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListMembershipResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListMembershipResponse; static fromJsonString(jsonString: string, options?: Partial): GetListMembershipResponse; static equals(a: GetListMembershipResponse | PlainMessage | undefined, b: GetListMembershipResponse | PlainMessage | undefined): boolean; } /** * - Return number of items in list A * - For aggregate * * @generated from message bsky.GetListCountRequest */ export declare class GetListCountRequest extends Message { /** * @generated from field: string list_uri = 1; */ listUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListCountRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListCountRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListCountRequest; static fromJsonString(jsonString: string, options?: Partial): GetListCountRequest; static equals(a: GetListCountRequest | PlainMessage | undefined, b: GetListCountRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListCountResponse */ export declare class GetListCountResponse extends Message { /** * @generated from field: int32 count = 1; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListCountResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListCountResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListCountResponse; static fromJsonString(jsonString: string, options?: Partial): GetListCountResponse; static equals(a: GetListCountResponse | PlainMessage | undefined, b: GetListCountResponse | PlainMessage | undefined): boolean; } /** * - return list of uris of lists created by A * - `getLists` * * @generated from message bsky.GetActorListsRequest */ export declare class GetActorListsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorListsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorListsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorListsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorListsRequest; static equals(a: GetActorListsRequest | PlainMessage | undefined, b: GetActorListsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorListsResponse */ export declare class GetActorListsResponse extends Message { /** * @generated from field: repeated string list_uris = 1; */ listUris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorListsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorListsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorListsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorListsResponse; static equals(a: GetActorListsResponse | PlainMessage | undefined, b: GetActorListsResponse | PlainMessage | undefined): boolean; } /** * - return boolean if user A has muted user B * - hydrating mute state onto profiles * * @generated from message bsky.GetActorMutesActorRequest */ export declare class GetActorMutesActorRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string target_did = 2; */ targetDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorMutesActorRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorMutesActorRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorMutesActorRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorMutesActorRequest; static equals(a: GetActorMutesActorRequest | PlainMessage | undefined, b: GetActorMutesActorRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorMutesActorResponse */ export declare class GetActorMutesActorResponse extends Message { /** * @generated from field: bool muted = 1; */ muted: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorMutesActorResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorMutesActorResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorMutesActorResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorMutesActorResponse; static equals(a: GetActorMutesActorResponse | PlainMessage | undefined, b: GetActorMutesActorResponse | PlainMessage | undefined): boolean; } /** * - return list of user dids of users who A mutes * - `getMutes` * * @generated from message bsky.GetMutesRequest */ export declare class GetMutesRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutesRequest; static fromJsonString(jsonString: string, options?: Partial): GetMutesRequest; static equals(a: GetMutesRequest | PlainMessage | undefined, b: GetMutesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetMutesResponse */ export declare class GetMutesResponse extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutesResponse; static fromJsonString(jsonString: string, options?: Partial): GetMutesResponse; static equals(a: GetMutesResponse | PlainMessage | undefined, b: GetMutesResponse | PlainMessage | undefined): boolean; } /** * - return list uri of *any* list through which user A has muted user B * - hydrating mute state onto profiles * - note: we only need *one* uri even if a user is muted by multiple lists * * @generated from message bsky.GetActorMutesActorViaListRequest */ export declare class GetActorMutesActorViaListRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string target_did = 2; */ targetDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorMutesActorViaListRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorMutesActorViaListRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorMutesActorViaListRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorMutesActorViaListRequest; static equals(a: GetActorMutesActorViaListRequest | PlainMessage | undefined, b: GetActorMutesActorViaListRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorMutesActorViaListResponse */ export declare class GetActorMutesActorViaListResponse extends Message { /** * @generated from field: string list_uri = 1; */ listUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorMutesActorViaListResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorMutesActorViaListResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorMutesActorViaListResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorMutesActorViaListResponse; static equals(a: GetActorMutesActorViaListResponse | PlainMessage | undefined, b: GetActorMutesActorViaListResponse | PlainMessage | undefined): boolean; } /** * - return boolean if actor A has subscribed to mutelist B * - list view hydration * * @generated from message bsky.GetMutelistSubscriptionRequest */ export declare class GetMutelistSubscriptionRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string list_uri = 2; */ listUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutelistSubscriptionRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutelistSubscriptionRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutelistSubscriptionRequest; static fromJsonString(jsonString: string, options?: Partial): GetMutelistSubscriptionRequest; static equals(a: GetMutelistSubscriptionRequest | PlainMessage | undefined, b: GetMutelistSubscriptionRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetMutelistSubscriptionResponse */ export declare class GetMutelistSubscriptionResponse extends Message { /** * @generated from field: bool subscribed = 1; */ subscribed: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutelistSubscriptionResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutelistSubscriptionResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutelistSubscriptionResponse; static fromJsonString(jsonString: string, options?: Partial): GetMutelistSubscriptionResponse; static equals(a: GetMutelistSubscriptionResponse | PlainMessage | undefined, b: GetMutelistSubscriptionResponse | PlainMessage | undefined): boolean; } /** * - return list of list uris of mutelists that A subscribes to * - `getListMutes` * * @generated from message bsky.GetMutelistSubscriptionsRequest */ export declare class GetMutelistSubscriptionsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutelistSubscriptionsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutelistSubscriptionsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutelistSubscriptionsRequest; static fromJsonString(jsonString: string, options?: Partial): GetMutelistSubscriptionsRequest; static equals(a: GetMutelistSubscriptionsRequest | PlainMessage | undefined, b: GetMutelistSubscriptionsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetMutelistSubscriptionsResponse */ export declare class GetMutelistSubscriptionsResponse extends Message { /** * @generated from field: repeated string list_uris = 1; */ listUris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetMutelistSubscriptionsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetMutelistSubscriptionsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetMutelistSubscriptionsResponse; static fromJsonString(jsonString: string, options?: Partial): GetMutelistSubscriptionsResponse; static equals(a: GetMutelistSubscriptionsResponse | PlainMessage | undefined, b: GetMutelistSubscriptionsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetThreadMutesOnSubjectsRequest */ export declare class GetThreadMutesOnSubjectsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string thread_roots = 2; */ threadRoots: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadMutesOnSubjectsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadMutesOnSubjectsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadMutesOnSubjectsRequest; static fromJsonString(jsonString: string, options?: Partial): GetThreadMutesOnSubjectsRequest; static equals(a: GetThreadMutesOnSubjectsRequest | PlainMessage | undefined, b: GetThreadMutesOnSubjectsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetThreadMutesOnSubjectsResponse */ export declare class GetThreadMutesOnSubjectsResponse extends Message { /** * @generated from field: repeated bool muted = 1; */ muted: boolean[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadMutesOnSubjectsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadMutesOnSubjectsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadMutesOnSubjectsResponse; static fromJsonString(jsonString: string, options?: Partial): GetThreadMutesOnSubjectsResponse; static equals(a: GetThreadMutesOnSubjectsResponse | PlainMessage | undefined, b: GetThreadMutesOnSubjectsResponse | PlainMessage | undefined): boolean; } /** * - Return block uri if there is a block between users A & B (bidirectional) * - hydrating (& actioning) block state on profiles * - handling 3rd party blocks * * @generated from message bsky.GetBidirectionalBlockRequest */ export declare class GetBidirectionalBlockRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string target_did = 2; */ targetDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBidirectionalBlockRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBidirectionalBlockRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBidirectionalBlockRequest; static fromJsonString(jsonString: string, options?: Partial): GetBidirectionalBlockRequest; static equals(a: GetBidirectionalBlockRequest | PlainMessage | undefined, b: GetBidirectionalBlockRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBidirectionalBlockResponse */ export declare class GetBidirectionalBlockResponse extends Message { /** * @generated from field: string block_uri = 1; */ blockUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBidirectionalBlockResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBidirectionalBlockResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBidirectionalBlockResponse; static fromJsonString(jsonString: string, options?: Partial): GetBidirectionalBlockResponse; static equals(a: GetBidirectionalBlockResponse | PlainMessage | undefined, b: GetBidirectionalBlockResponse | PlainMessage | undefined): boolean; } /** * - Return list of block uris and user dids of users who A blocks * - `getBlocks` * * @generated from message bsky.GetBlocksRequest */ export declare class GetBlocksRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocksRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocksRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocksRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlocksRequest; static equals(a: GetBlocksRequest | PlainMessage | undefined, b: GetBlocksRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlocksResponse */ export declare class GetBlocksResponse extends Message { /** * @generated from field: repeated string block_uris = 1; */ blockUris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocksResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocksResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocksResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlocksResponse; static equals(a: GetBlocksResponse | PlainMessage | undefined, b: GetBlocksResponse | PlainMessage | undefined): boolean; } /** * - Return list uri of ***any*** list through which users A & B have a block (bidirectional) * - hydrating (& actioning) block state on profiles * - handling 3rd party blocks * * @generated from message bsky.GetBidirectionalBlockViaListRequest */ export declare class GetBidirectionalBlockViaListRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string target_did = 2; */ targetDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBidirectionalBlockViaListRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBidirectionalBlockViaListRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBidirectionalBlockViaListRequest; static fromJsonString(jsonString: string, options?: Partial): GetBidirectionalBlockViaListRequest; static equals(a: GetBidirectionalBlockViaListRequest | PlainMessage | undefined, b: GetBidirectionalBlockViaListRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBidirectionalBlockViaListResponse */ export declare class GetBidirectionalBlockViaListResponse extends Message { /** * @generated from field: string list_uri = 1; */ listUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBidirectionalBlockViaListResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBidirectionalBlockViaListResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBidirectionalBlockViaListResponse; static fromJsonString(jsonString: string, options?: Partial): GetBidirectionalBlockViaListResponse; static equals(a: GetBidirectionalBlockViaListResponse | PlainMessage | undefined, b: GetBidirectionalBlockViaListResponse | PlainMessage | undefined): boolean; } /** * - return boolean if user A has subscribed to blocklist B * - list view hydration * * @generated from message bsky.GetBlocklistSubscriptionRequest */ export declare class GetBlocklistSubscriptionRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string list_uri = 2; */ listUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocklistSubscriptionRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocklistSubscriptionRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocklistSubscriptionRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlocklistSubscriptionRequest; static equals(a: GetBlocklistSubscriptionRequest | PlainMessage | undefined, b: GetBlocklistSubscriptionRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlocklistSubscriptionResponse */ export declare class GetBlocklistSubscriptionResponse extends Message { /** * @generated from field: string listblock_uri = 1; */ listblockUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocklistSubscriptionResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocklistSubscriptionResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocklistSubscriptionResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlocklistSubscriptionResponse; static equals(a: GetBlocklistSubscriptionResponse | PlainMessage | undefined, b: GetBlocklistSubscriptionResponse | PlainMessage | undefined): boolean; } /** * - return list of list uris of Blockslists that A subscribes to * - `getListBlocks` * * @generated from message bsky.GetBlocklistSubscriptionsRequest */ export declare class GetBlocklistSubscriptionsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocklistSubscriptionsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocklistSubscriptionsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocklistSubscriptionsRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlocklistSubscriptionsRequest; static equals(a: GetBlocklistSubscriptionsRequest | PlainMessage | undefined, b: GetBlocklistSubscriptionsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlocklistSubscriptionsResponse */ export declare class GetBlocklistSubscriptionsResponse extends Message { /** * @generated from field: repeated string list_uris = 1; */ listUris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlocklistSubscriptionsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlocklistSubscriptionsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlocklistSubscriptionsResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlocklistSubscriptionsResponse; static equals(a: GetBlocklistSubscriptionsResponse | PlainMessage | undefined, b: GetBlocklistSubscriptionsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationPreferencesRequest */ export declare class GetNotificationPreferencesRequest extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationPreferencesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationPreferencesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationPreferencesRequest; static fromJsonString(jsonString: string, options?: Partial): GetNotificationPreferencesRequest; static equals(a: GetNotificationPreferencesRequest | PlainMessage | undefined, b: GetNotificationPreferencesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.NotificationChannelList */ export declare class NotificationChannelList extends Message { /** * @generated from field: bool enabled = 1; */ enabled: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.NotificationChannelList"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): NotificationChannelList; static fromJson(jsonValue: JsonValue, options?: Partial): NotificationChannelList; static fromJsonString(jsonString: string, options?: Partial): NotificationChannelList; static equals(a: NotificationChannelList | PlainMessage | undefined, b: NotificationChannelList | PlainMessage | undefined): boolean; } /** * @generated from message bsky.NotificationChannelPush */ export declare class NotificationChannelPush extends Message { /** * @generated from field: bool enabled = 1; */ enabled: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.NotificationChannelPush"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): NotificationChannelPush; static fromJson(jsonValue: JsonValue, options?: Partial): NotificationChannelPush; static fromJsonString(jsonString: string, options?: Partial): NotificationChannelPush; static equals(a: NotificationChannelPush | PlainMessage | undefined, b: NotificationChannelPush | PlainMessage | undefined): boolean; } /** * @generated from message bsky.FilterableNotificationPreference */ export declare class FilterableNotificationPreference extends Message { /** * @generated from field: bsky.NotificationInclude include = 1; */ include: NotificationInclude; /** * @generated from field: bsky.NotificationChannelList list = 2; */ list?: NotificationChannelList; /** * @generated from field: bsky.NotificationChannelPush push = 3; */ push?: NotificationChannelPush; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.FilterableNotificationPreference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FilterableNotificationPreference; static fromJson(jsonValue: JsonValue, options?: Partial): FilterableNotificationPreference; static fromJsonString(jsonString: string, options?: Partial): FilterableNotificationPreference; static equals(a: FilterableNotificationPreference | PlainMessage | undefined, b: FilterableNotificationPreference | PlainMessage | undefined): boolean; } /** * @generated from message bsky.NotificationPreference */ export declare class NotificationPreference extends Message { /** * @generated from field: bsky.NotificationChannelList list = 1; */ list?: NotificationChannelList; /** * @generated from field: bsky.NotificationChannelPush push = 2; */ push?: NotificationChannelPush; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.NotificationPreference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): NotificationPreference; static fromJson(jsonValue: JsonValue, options?: Partial): NotificationPreference; static fromJsonString(jsonString: string, options?: Partial): NotificationPreference; static equals(a: NotificationPreference | PlainMessage | undefined, b: NotificationPreference | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ChatNotificationPreference */ export declare class ChatNotificationPreference extends Message { /** * @generated from field: bsky.ChatNotificationInclude include = 1; */ include: ChatNotificationInclude; /** * @generated from field: bsky.NotificationChannelPush push = 2; */ push?: NotificationChannelPush; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ChatNotificationPreference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ChatNotificationPreference; static fromJson(jsonValue: JsonValue, options?: Partial): ChatNotificationPreference; static fromJsonString(jsonString: string, options?: Partial): ChatNotificationPreference; static equals(a: ChatNotificationPreference | PlainMessage | undefined, b: ChatNotificationPreference | PlainMessage | undefined): boolean; } /** * @generated from message bsky.NotificationPreferences */ export declare class NotificationPreferences extends Message { /** * @generated from field: bytes entry = 1; */ entry: Uint8Array; /** * @generated from field: bsky.ChatNotificationPreference chat = 2; */ chat?: ChatNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference follow = 3; */ follow?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference like = 4; */ like?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference like_via_repost = 5; */ likeViaRepost?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference mention = 6; */ mention?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference quote = 7; */ quote?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference reply = 8; */ reply?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference repost = 9; */ repost?: FilterableNotificationPreference; /** * @generated from field: bsky.FilterableNotificationPreference repost_via_repost = 10; */ repostViaRepost?: FilterableNotificationPreference; /** * @generated from field: bsky.NotificationPreference starterpack_joined = 11; */ starterpackJoined?: NotificationPreference; /** * @generated from field: bsky.NotificationPreference subscribed_post = 12; */ subscribedPost?: NotificationPreference; /** * @generated from field: bsky.NotificationPreference unverified = 13; */ unverified?: NotificationPreference; /** * @generated from field: bsky.NotificationPreference verified = 14; */ verified?: NotificationPreference; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.NotificationPreferences"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): NotificationPreferences; static fromJson(jsonValue: JsonValue, options?: Partial): NotificationPreferences; static fromJsonString(jsonString: string, options?: Partial): NotificationPreferences; static equals(a: NotificationPreferences | PlainMessage | undefined, b: NotificationPreferences | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationPreferencesResponse */ export declare class GetNotificationPreferencesResponse extends Message { /** * @generated from field: repeated bsky.NotificationPreferences preferences = 1; */ preferences: NotificationPreferences[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationPreferencesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationPreferencesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationPreferencesResponse; static fromJsonString(jsonString: string, options?: Partial): GetNotificationPreferencesResponse; static equals(a: GetNotificationPreferencesResponse | PlainMessage | undefined, b: GetNotificationPreferencesResponse | PlainMessage | undefined): boolean; } /** * - list recent notifications for a user * - notifications should include a uri for the record that caused the notif & a “reason” for the notification (reply, like, quotepost, etc) * - this should include both read & unread notifs * * @generated from message bsky.GetNotificationsRequest */ export declare class GetNotificationsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; /** * @generated from field: bool priority = 4; */ priority: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationsRequest; static fromJsonString(jsonString: string, options?: Partial): GetNotificationsRequest; static equals(a: GetNotificationsRequest | PlainMessage | undefined, b: GetNotificationsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.Notification */ export declare class Notification extends Message { /** * @generated from field: string recipient_did = 1; */ recipientDid: string; /** * @generated from field: string uri = 2; */ uri: string; /** * @generated from field: string reason = 3; */ reason: string; /** * @generated from field: string reason_subject = 4; */ reasonSubject: string; /** * @generated from field: google.protobuf.Timestamp timestamp = 5; */ timestamp?: Timestamp; /** * @generated from field: bool priority = 6; */ priority: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.Notification"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Notification; static fromJson(jsonValue: JsonValue, options?: Partial): Notification; static fromJsonString(jsonString: string, options?: Partial): Notification; static equals(a: Notification | PlainMessage | undefined, b: Notification | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationsResponse */ export declare class GetNotificationsResponse extends Message { /** * @generated from field: repeated bsky.Notification notifications = 1; */ notifications: Notification[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationsResponse; static fromJsonString(jsonString: string, options?: Partial): GetNotificationsResponse; static equals(a: GetNotificationsResponse | PlainMessage | undefined, b: GetNotificationsResponse | PlainMessage | undefined): boolean; } /** * - update a user’s “last seen time” * - `updateSeen` * * @generated from message bsky.UpdateNotificationSeenRequest */ export declare class UpdateNotificationSeenRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: google.protobuf.Timestamp timestamp = 2; */ timestamp?: Timestamp; /** * @generated from field: bool priority = 3; */ priority: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UpdateNotificationSeenRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateNotificationSeenRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateNotificationSeenRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateNotificationSeenRequest; static equals(a: UpdateNotificationSeenRequest | PlainMessage | undefined, b: UpdateNotificationSeenRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UpdateNotificationSeenResponse */ export declare class UpdateNotificationSeenResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UpdateNotificationSeenResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateNotificationSeenResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateNotificationSeenResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateNotificationSeenResponse; static equals(a: UpdateNotificationSeenResponse | PlainMessage | undefined, b: UpdateNotificationSeenResponse | PlainMessage | undefined): boolean; } /** * - get a user’s “last seen time” * - hydrating read state onto notifications * * @generated from message bsky.GetNotificationSeenRequest */ export declare class GetNotificationSeenRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: bool priority = 2; */ priority: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationSeenRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationSeenRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationSeenRequest; static fromJsonString(jsonString: string, options?: Partial): GetNotificationSeenRequest; static equals(a: GetNotificationSeenRequest | PlainMessage | undefined, b: GetNotificationSeenRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetNotificationSeenResponse */ export declare class GetNotificationSeenResponse extends Message { /** * @generated from field: google.protobuf.Timestamp timestamp = 1; */ timestamp?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetNotificationSeenResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetNotificationSeenResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetNotificationSeenResponse; static fromJsonString(jsonString: string, options?: Partial): GetNotificationSeenResponse; static equals(a: GetNotificationSeenResponse | PlainMessage | undefined, b: GetNotificationSeenResponse | PlainMessage | undefined): boolean; } /** * - get a count of all unread notifications (notifications after `updateSeen`) * - `getUnreadCount` * * @generated from message bsky.GetUnreadNotificationCountRequest */ export declare class GetUnreadNotificationCountRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: bool priority = 2; */ priority: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetUnreadNotificationCountRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetUnreadNotificationCountRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetUnreadNotificationCountRequest; static fromJsonString(jsonString: string, options?: Partial): GetUnreadNotificationCountRequest; static equals(a: GetUnreadNotificationCountRequest | PlainMessage | undefined, b: GetUnreadNotificationCountRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetUnreadNotificationCountResponse */ export declare class GetUnreadNotificationCountResponse extends Message { /** * @generated from field: int32 count = 1; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetUnreadNotificationCountResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetUnreadNotificationCountResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetUnreadNotificationCountResponse; static fromJsonString(jsonString: string, options?: Partial): GetUnreadNotificationCountResponse; static equals(a: GetUnreadNotificationCountResponse | PlainMessage | undefined, b: GetUnreadNotificationCountResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActivitySubscriptionDidsRequest */ export declare class GetActivitySubscriptionDidsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActivitySubscriptionDidsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActivitySubscriptionDidsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActivitySubscriptionDidsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActivitySubscriptionDidsRequest; static equals(a: GetActivitySubscriptionDidsRequest | PlainMessage | undefined, b: GetActivitySubscriptionDidsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActivitySubscriptionDidsResponse */ export declare class GetActivitySubscriptionDidsResponse extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActivitySubscriptionDidsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActivitySubscriptionDidsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActivitySubscriptionDidsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActivitySubscriptionDidsResponse; static equals(a: GetActivitySubscriptionDidsResponse | PlainMessage | undefined, b: GetActivitySubscriptionDidsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.PostActivitySubscription */ export declare class PostActivitySubscription extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.PostActivitySubscription"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PostActivitySubscription; static fromJson(jsonValue: JsonValue, options?: Partial): PostActivitySubscription; static fromJsonString(jsonString: string, options?: Partial): PostActivitySubscription; static equals(a: PostActivitySubscription | PlainMessage | undefined, b: PostActivitySubscription | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ReplyActivitySubscription */ export declare class ReplyActivitySubscription extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ReplyActivitySubscription"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ReplyActivitySubscription; static fromJson(jsonValue: JsonValue, options?: Partial): ReplyActivitySubscription; static fromJsonString(jsonString: string, options?: Partial): ReplyActivitySubscription; static equals(a: ReplyActivitySubscription | PlainMessage | undefined, b: ReplyActivitySubscription | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ActivitySubscription */ export declare class ActivitySubscription extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string namespace = 2; */ namespace: string; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: optional bsky.PostActivitySubscription post = 4; */ post?: PostActivitySubscription; /** * @generated from field: optional bsky.ReplyActivitySubscription reply = 5; */ reply?: ReplyActivitySubscription; /** * @generated from field: string subject_did = 6; */ subjectDid: string; /** * @generated from field: google.protobuf.Timestamp indexed_at = 7; */ indexedAt?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ActivitySubscription"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ActivitySubscription; static fromJson(jsonValue: JsonValue, options?: Partial): ActivitySubscription; static fromJsonString(jsonString: string, options?: Partial): ActivitySubscription; static equals(a: ActivitySubscription | PlainMessage | undefined, b: ActivitySubscription | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActivitySubscriptionsByActorAndSubjectsRequest */ export declare class GetActivitySubscriptionsByActorAndSubjectsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string subject_dids = 2; */ subjectDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActivitySubscriptionsByActorAndSubjectsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsRequest; static equals(a: GetActivitySubscriptionsByActorAndSubjectsRequest | PlainMessage | undefined, b: GetActivitySubscriptionsByActorAndSubjectsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActivitySubscriptionsByActorAndSubjectsResponse */ export declare class GetActivitySubscriptionsByActorAndSubjectsResponse extends Message { /** * @generated from field: repeated bsky.ActivitySubscription subscriptions = 1; */ subscriptions: ActivitySubscription[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActivitySubscriptionsByActorAndSubjectsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActivitySubscriptionsByActorAndSubjectsResponse; static equals(a: GetActivitySubscriptionsByActorAndSubjectsResponse | PlainMessage | undefined, b: GetActivitySubscriptionsByActorAndSubjectsResponse | PlainMessage | undefined): boolean; } /** * - Return uris of feed generator records created by user A * - `getActorFeeds` * * @generated from message bsky.GetActorFeedsRequest */ export declare class GetActorFeedsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorFeedsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorFeedsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorFeedsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorFeedsRequest; static equals(a: GetActorFeedsRequest | PlainMessage | undefined, b: GetActorFeedsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorFeedsResponse */ export declare class GetActorFeedsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorFeedsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorFeedsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorFeedsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorFeedsResponse; static equals(a: GetActorFeedsResponse | PlainMessage | undefined, b: GetActorFeedsResponse | PlainMessage | undefined): boolean; } /** * - Returns a list of suggested feed generator uris for an actor, paginated * - `getSuggestedFeeds` * - This is currently just hardcoded in the Appview DB * * @generated from message bsky.GetSuggestedFeedsRequest */ export declare class GetSuggestedFeedsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSuggestedFeedsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSuggestedFeedsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSuggestedFeedsRequest; static fromJsonString(jsonString: string, options?: Partial): GetSuggestedFeedsRequest; static equals(a: GetSuggestedFeedsRequest | PlainMessage | undefined, b: GetSuggestedFeedsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSuggestedFeedsResponse */ export declare class GetSuggestedFeedsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSuggestedFeedsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSuggestedFeedsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSuggestedFeedsResponse; static fromJsonString(jsonString: string, options?: Partial): GetSuggestedFeedsResponse; static equals(a: GetSuggestedFeedsResponse | PlainMessage | undefined, b: GetSuggestedFeedsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SearchFeedGeneratorsRequest */ export declare class SearchFeedGeneratorsRequest extends Message { /** * @generated from field: string query = 1; */ query: string; /** * @generated from field: int32 limit = 2; */ limit: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchFeedGeneratorsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchFeedGeneratorsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): SearchFeedGeneratorsRequest; static fromJsonString(jsonString: string, options?: Partial): SearchFeedGeneratorsRequest; static equals(a: SearchFeedGeneratorsRequest | PlainMessage | undefined, b: SearchFeedGeneratorsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SearchFeedGeneratorsResponse */ export declare class SearchFeedGeneratorsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchFeedGeneratorsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchFeedGeneratorsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): SearchFeedGeneratorsResponse; static fromJsonString(jsonString: string, options?: Partial): SearchFeedGeneratorsResponse; static equals(a: SearchFeedGeneratorsResponse | PlainMessage | undefined, b: SearchFeedGeneratorsResponse | PlainMessage | undefined): boolean; } /** * - Returns feed generator validity and online status with uris A, B, C… * - Not currently being used, but could be worhthwhile. * * @generated from message bsky.GetFeedGeneratorStatusRequest */ export declare class GetFeedGeneratorStatusRequest extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFeedGeneratorStatusRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFeedGeneratorStatusRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFeedGeneratorStatusRequest; static fromJsonString(jsonString: string, options?: Partial): GetFeedGeneratorStatusRequest; static equals(a: GetFeedGeneratorStatusRequest | PlainMessage | undefined, b: GetFeedGeneratorStatusRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFeedGeneratorStatusResponse */ export declare class GetFeedGeneratorStatusResponse extends Message { /** * @generated from field: repeated string status = 1; */ status: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFeedGeneratorStatusResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFeedGeneratorStatusResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFeedGeneratorStatusResponse; static fromJsonString(jsonString: string, options?: Partial): GetFeedGeneratorStatusResponse; static equals(a: GetFeedGeneratorStatusResponse | PlainMessage | undefined, b: GetFeedGeneratorStatusResponse | PlainMessage | undefined): boolean; } /** * - Returns recent posts authored by a given DID, paginated * - `getAuthorFeed` * - Optionally: filter by if a post is/isn’t a reply and if a post has a media object in it * * @generated from message bsky.GetAuthorFeedRequest */ export declare class GetAuthorFeedRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; /** * @generated from field: bsky.FeedType feed_type = 4; */ feedType: FeedType; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetAuthorFeedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAuthorFeedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetAuthorFeedRequest; static fromJsonString(jsonString: string, options?: Partial): GetAuthorFeedRequest; static equals(a: GetAuthorFeedRequest | PlainMessage | undefined, b: GetAuthorFeedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.AuthorFeedItem */ export declare class AuthorFeedItem extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string cid = 2; */ cid: string; /** * @generated from field: string repost = 3; */ repost: string; /** * @generated from field: string repost_cid = 4; */ repostCid: string; /** * @generated from field: bool posts_and_author_threads = 5; */ postsAndAuthorThreads: boolean; /** * @generated from field: bool posts_no_replies = 6; */ postsNoReplies: boolean; /** * @generated from field: bool posts_with_media = 7; */ postsWithMedia: boolean; /** * @generated from field: bool is_reply = 8; */ isReply: boolean; /** * @generated from field: bool is_repost = 9; */ isRepost: boolean; /** * @generated from field: bool is_quote_post = 10; */ isQuotePost: boolean; /** * @generated from field: bool posts_with_video = 11; */ postsWithVideo: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.AuthorFeedItem"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AuthorFeedItem; static fromJson(jsonValue: JsonValue, options?: Partial): AuthorFeedItem; static fromJsonString(jsonString: string, options?: Partial): AuthorFeedItem; static equals(a: AuthorFeedItem | PlainMessage | undefined, b: AuthorFeedItem | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetAuthorFeedResponse */ export declare class GetAuthorFeedResponse extends Message { /** * @generated from field: repeated bsky.AuthorFeedItem items = 1; */ items: AuthorFeedItem[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetAuthorFeedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAuthorFeedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetAuthorFeedResponse; static fromJsonString(jsonString: string, options?: Partial): GetAuthorFeedResponse; static equals(a: GetAuthorFeedResponse | PlainMessage | undefined, b: GetAuthorFeedResponse | PlainMessage | undefined): boolean; } /** * - Returns recent posts authored by users followed by a given DID, paginated * - `getTimeline` * * @generated from message bsky.GetTimelineRequest */ export declare class GetTimelineRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; /** * @generated from field: bool exclude_replies = 4; */ excludeReplies: boolean; /** * @generated from field: bool exclude_reposts = 5; */ excludeReposts: boolean; /** * @generated from field: bool exclude_quotes = 6; */ excludeQuotes: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetTimelineRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetTimelineRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetTimelineRequest; static fromJsonString(jsonString: string, options?: Partial): GetTimelineRequest; static equals(a: GetTimelineRequest | PlainMessage | undefined, b: GetTimelineRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetTimelineResponse */ export declare class GetTimelineResponse extends Message { /** * @generated from field: repeated bsky.TimelineFeedItem items = 1; */ items: TimelineFeedItem[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetTimelineResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetTimelineResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetTimelineResponse; static fromJsonString(jsonString: string, options?: Partial): GetTimelineResponse; static equals(a: GetTimelineResponse | PlainMessage | undefined, b: GetTimelineResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TimelineFeedItem */ export declare class TimelineFeedItem extends Message { /** * @generated from field: string uri = 1; */ uri: string; /** * @generated from field: string cid = 2; */ cid: string; /** * @generated from field: string repost = 3; */ repost: string; /** * @generated from field: string repost_cid = 4; */ repostCid: string; /** * @generated from field: bool is_reply = 5; */ isReply: boolean; /** * @generated from field: bool is_repost = 6; */ isRepost: boolean; /** * @generated from field: bool is_quote_post = 7; */ isQuotePost: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TimelineFeedItem"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TimelineFeedItem; static fromJson(jsonValue: JsonValue, options?: Partial): TimelineFeedItem; static fromJsonString(jsonString: string, options?: Partial): TimelineFeedItem; static equals(a: TimelineFeedItem | PlainMessage | undefined, b: TimelineFeedItem | PlainMessage | undefined): boolean; } /** * - Return recent post uris from users in list A * - `getListFeed` * - (This is essentially the same as `getTimeline` but instead of follows of a did, it is list items of a list) * * @generated from message bsky.GetListFeedRequest */ export declare class GetListFeedRequest extends Message { /** * @generated from field: string list_uri = 1; */ listUri: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; /** * @generated from field: bool exclude_replies = 4; */ excludeReplies: boolean; /** * @generated from field: bool exclude_reposts = 5; */ excludeReposts: boolean; /** * @generated from field: bool exclude_quotes = 6; */ excludeQuotes: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListFeedRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListFeedRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetListFeedRequest; static fromJsonString(jsonString: string, options?: Partial): GetListFeedRequest; static equals(a: GetListFeedRequest | PlainMessage | undefined, b: GetListFeedRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetListFeedResponse */ export declare class GetListFeedResponse extends Message { /** * @generated from field: repeated bsky.TimelineFeedItem items = 1; */ items: TimelineFeedItem[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetListFeedResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetListFeedResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetListFeedResponse; static fromJsonString(jsonString: string, options?: Partial): GetListFeedResponse; static equals(a: GetListFeedResponse | PlainMessage | undefined, b: GetListFeedResponse | PlainMessage | undefined): boolean; } /** * Return posts uris of any replies N levels above or M levels below post A * * @generated from message bsky.GetThreadRequest */ export declare class GetThreadRequest extends Message { /** * @generated from field: string post_uri = 1; */ postUri: string; /** * @generated from field: int32 above = 2; */ above: number; /** * @generated from field: int32 below = 3; */ below: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadRequest; static fromJsonString(jsonString: string, options?: Partial): GetThreadRequest; static equals(a: GetThreadRequest | PlainMessage | undefined, b: GetThreadRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetThreadResponse */ export declare class GetThreadResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetThreadResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetThreadResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetThreadResponse; static fromJsonString(jsonString: string, options?: Partial): GetThreadResponse; static equals(a: GetThreadResponse | PlainMessage | undefined, b: GetThreadResponse | PlainMessage | undefined): boolean; } /** * - Return DIDs of actors matching term, paginated * - `searchActors` skeleton * * @generated from message bsky.SearchActorsRequest */ export declare class SearchActorsRequest extends Message { /** * @generated from field: string term = 1; */ term: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchActorsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchActorsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): SearchActorsRequest; static fromJsonString(jsonString: string, options?: Partial): SearchActorsRequest; static equals(a: SearchActorsRequest | PlainMessage | undefined, b: SearchActorsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SearchActorsResponse */ export declare class SearchActorsResponse extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchActorsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchActorsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): SearchActorsResponse; static fromJsonString(jsonString: string, options?: Partial): SearchActorsResponse; static equals(a: SearchActorsResponse | PlainMessage | undefined, b: SearchActorsResponse | PlainMessage | undefined): boolean; } /** * - Return uris of posts matching term, paginated * - `searchPosts` skeleton * * @generated from message bsky.SearchPostsRequest */ export declare class SearchPostsRequest extends Message { /** * @generated from field: string term = 1; */ term: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchPostsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchPostsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): SearchPostsRequest; static fromJsonString(jsonString: string, options?: Partial): SearchPostsRequest; static equals(a: SearchPostsRequest | PlainMessage | undefined, b: SearchPostsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SearchPostsResponse */ export declare class SearchPostsResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchPostsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchPostsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): SearchPostsResponse; static fromJsonString(jsonString: string, options?: Partial): SearchPostsResponse; static equals(a: SearchPostsResponse | PlainMessage | undefined, b: SearchPostsResponse | PlainMessage | undefined): boolean; } /** * - Return uris of starter packs matching term, paginated * - `searchStarterPacks` skeleton * * @generated from message bsky.SearchStarterPacksRequest */ export declare class SearchStarterPacksRequest extends Message { /** * @generated from field: string term = 1; */ term: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchStarterPacksRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchStarterPacksRequest; static fromJson(jsonValue: JsonValue, options?: Partial): SearchStarterPacksRequest; static fromJsonString(jsonString: string, options?: Partial): SearchStarterPacksRequest; static equals(a: SearchStarterPacksRequest | PlainMessage | undefined, b: SearchStarterPacksRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SearchStarterPacksResponse */ export declare class SearchStarterPacksResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SearchStarterPacksResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SearchStarterPacksResponse; static fromJson(jsonValue: JsonValue, options?: Partial): SearchStarterPacksResponse; static fromJsonString(jsonString: string, options?: Partial): SearchStarterPacksResponse; static equals(a: SearchStarterPacksResponse | PlainMessage | undefined, b: SearchStarterPacksResponse | PlainMessage | undefined): boolean; } /** * - Return DIDs of suggested follows for a user, excluding anyone they already follow * - `getSuggestions`, `getSuggestedFollowsByActor` * * @generated from message bsky.GetFollowSuggestionsRequest */ export declare class GetFollowSuggestionsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string relative_to_did = 2; */ relativeToDid: string; /** * @generated from field: int32 limit = 3; */ limit: number; /** * @generated from field: string cursor = 4; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowSuggestionsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowSuggestionsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowSuggestionsRequest; static fromJsonString(jsonString: string, options?: Partial): GetFollowSuggestionsRequest; static equals(a: GetFollowSuggestionsRequest | PlainMessage | undefined, b: GetFollowSuggestionsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowSuggestionsResponse */ export declare class GetFollowSuggestionsResponse extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowSuggestionsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowSuggestionsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowSuggestionsResponse; static fromJsonString(jsonString: string, options?: Partial): GetFollowSuggestionsResponse; static equals(a: GetFollowSuggestionsResponse | PlainMessage | undefined, b: GetFollowSuggestionsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.SuggestedEntity */ export declare class SuggestedEntity extends Message { /** * @generated from field: string tag = 1; */ tag: string; /** * @generated from field: string subject = 2; */ subject: string; /** * @generated from field: string subject_type = 3; */ subjectType: string; /** * @generated from field: int64 priority = 4; */ priority: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SuggestedEntity"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SuggestedEntity; static fromJson(jsonValue: JsonValue, options?: Partial): SuggestedEntity; static fromJsonString(jsonString: string, options?: Partial): SuggestedEntity; static equals(a: SuggestedEntity | PlainMessage | undefined, b: SuggestedEntity | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSuggestedEntitiesRequest */ export declare class GetSuggestedEntitiesRequest extends Message { /** * @generated from field: int32 limit = 1; */ limit: number; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSuggestedEntitiesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSuggestedEntitiesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSuggestedEntitiesRequest; static fromJsonString(jsonString: string, options?: Partial): GetSuggestedEntitiesRequest; static equals(a: GetSuggestedEntitiesRequest | PlainMessage | undefined, b: GetSuggestedEntitiesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSuggestedEntitiesResponse */ export declare class GetSuggestedEntitiesResponse extends Message { /** * @generated from field: repeated bsky.SuggestedEntity entities = 1; */ entities: SuggestedEntity[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSuggestedEntitiesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSuggestedEntitiesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSuggestedEntitiesResponse; static fromJsonString(jsonString: string, options?: Partial): GetSuggestedEntitiesResponse; static equals(a: GetSuggestedEntitiesResponse | PlainMessage | undefined, b: GetSuggestedEntitiesResponse | PlainMessage | undefined): boolean; } /** * - Get all labels on a subjects A, B, C (uri or did) issued by dids D, E, F… * - label hydration on nearly every view * * @generated from message bsky.GetLabelsRequest */ export declare class GetLabelsRequest extends Message { /** * @generated from field: repeated string subjects = 1; */ subjects: string[]; /** * @generated from field: repeated string issuers = 2; */ issuers: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLabelsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLabelsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLabelsRequest; static fromJsonString(jsonString: string, options?: Partial): GetLabelsRequest; static equals(a: GetLabelsRequest | PlainMessage | undefined, b: GetLabelsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLabelsResponse */ export declare class GetLabelsResponse extends Message { /** * @generated from field: repeated bytes labels = 1; */ labels: Uint8Array[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLabelsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLabelsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLabelsResponse; static fromJsonString(jsonString: string, options?: Partial): GetLabelsResponse; static equals(a: GetLabelsResponse | PlainMessage | undefined, b: GetLabelsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorStarterPacksRequest */ export declare class GetActorStarterPacksRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorStarterPacksRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorStarterPacksRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorStarterPacksRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorStarterPacksRequest; static equals(a: GetActorStarterPacksRequest | PlainMessage | undefined, b: GetActorStarterPacksRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorStarterPacksResponse */ export declare class GetActorStarterPacksResponse extends Message { /** * @generated from field: repeated string uris = 1; */ uris: string[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorStarterPacksResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorStarterPacksResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorStarterPacksResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorStarterPacksResponse; static equals(a: GetActorStarterPacksResponse | PlainMessage | undefined, b: GetActorStarterPacksResponse | PlainMessage | undefined): boolean; } /** * - Latest repo rev of user w/ DID * - Read-after-write header in`getProfile`, `getProfiles`, `getActorLikes`, `getAuthorFeed`, `getListFeed`, `getPostThread`, `getTimeline`. Could it be view dependent? * * @generated from message bsky.GetLatestRevRequest */ export declare class GetLatestRevRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLatestRevRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLatestRevRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetLatestRevRequest; static fromJsonString(jsonString: string, options?: Partial): GetLatestRevRequest; static equals(a: GetLatestRevRequest | PlainMessage | undefined, b: GetLatestRevRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetLatestRevResponse */ export declare class GetLatestRevResponse extends Message { /** * @generated from field: string rev = 1; */ rev: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetLatestRevResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetLatestRevResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetLatestRevResponse; static fromJsonString(jsonString: string, options?: Partial): GetLatestRevResponse; static equals(a: GetLatestRevResponse | PlainMessage | undefined, b: GetLatestRevResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetIdentityByDidRequest */ export declare class GetIdentityByDidRequest extends Message { /** * @generated from field: string did = 1; */ did: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetIdentityByDidRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetIdentityByDidRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetIdentityByDidRequest; static fromJsonString(jsonString: string, options?: Partial): GetIdentityByDidRequest; static equals(a: GetIdentityByDidRequest | PlainMessage | undefined, b: GetIdentityByDidRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetIdentityByDidResponse */ export declare class GetIdentityByDidResponse extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: string handle = 2; */ handle: string; /** * @generated from field: bytes keys = 3; */ keys: Uint8Array; /** * @generated from field: bytes services = 4; */ services: Uint8Array; /** * @generated from field: google.protobuf.Timestamp updated = 5; */ updated?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetIdentityByDidResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetIdentityByDidResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetIdentityByDidResponse; static fromJsonString(jsonString: string, options?: Partial): GetIdentityByDidResponse; static equals(a: GetIdentityByDidResponse | PlainMessage | undefined, b: GetIdentityByDidResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetIdentityByHandleRequest */ export declare class GetIdentityByHandleRequest extends Message { /** * @generated from field: string handle = 1; */ handle: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetIdentityByHandleRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetIdentityByHandleRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetIdentityByHandleRequest; static fromJsonString(jsonString: string, options?: Partial): GetIdentityByHandleRequest; static equals(a: GetIdentityByHandleRequest | PlainMessage | undefined, b: GetIdentityByHandleRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetIdentityByHandleResponse */ export declare class GetIdentityByHandleResponse extends Message { /** * @generated from field: string handle = 1; */ handle: string; /** * @generated from field: string did = 2; */ did: string; /** * @generated from field: bytes keys = 3; */ keys: Uint8Array; /** * @generated from field: bytes services = 4; */ services: Uint8Array; /** * @generated from field: google.protobuf.Timestamp updated = 5; */ updated?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetIdentityByHandleResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetIdentityByHandleResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetIdentityByHandleResponse; static fromJsonString(jsonString: string, options?: Partial): GetIdentityByHandleResponse; static equals(a: GetIdentityByHandleResponse | PlainMessage | undefined, b: GetIdentityByHandleResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlobTakedownRequest */ export declare class GetBlobTakedownRequest extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: string cid = 2; */ cid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlobTakedownRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlobTakedownRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlobTakedownRequest; static fromJsonString(jsonString: string, options?: Partial): GetBlobTakedownRequest; static equals(a: GetBlobTakedownRequest | PlainMessage | undefined, b: GetBlobTakedownRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBlobTakedownResponse */ export declare class GetBlobTakedownResponse extends Message { /** * @generated from field: bool taken_down = 1; */ takenDown: boolean; /** * @generated from field: string takedown_ref = 2; */ takedownRef: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBlobTakedownResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBlobTakedownResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBlobTakedownResponse; static fromJsonString(jsonString: string, options?: Partial): GetBlobTakedownResponse; static equals(a: GetBlobTakedownResponse | PlainMessage | undefined, b: GetBlobTakedownResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorTakedownRequest */ export declare class GetActorTakedownRequest extends Message { /** * @generated from field: string did = 1; */ did: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorTakedownRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorTakedownRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorTakedownRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorTakedownRequest; static equals(a: GetActorTakedownRequest | PlainMessage | undefined, b: GetActorTakedownRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorTakedownResponse */ export declare class GetActorTakedownResponse extends Message { /** * @generated from field: bool taken_down = 1; */ takenDown: boolean; /** * @generated from field: string takedown_ref = 2; */ takedownRef: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorTakedownResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorTakedownResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorTakedownResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorTakedownResponse; static equals(a: GetActorTakedownResponse | PlainMessage | undefined, b: GetActorTakedownResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRecordTakedownRequest */ export declare class GetRecordTakedownRequest extends Message { /** * @generated from field: string record_uri = 1; */ recordUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRecordTakedownRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRecordTakedownRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRecordTakedownRequest; static fromJsonString(jsonString: string, options?: Partial): GetRecordTakedownRequest; static equals(a: GetRecordTakedownRequest | PlainMessage | undefined, b: GetRecordTakedownRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetRecordTakedownResponse */ export declare class GetRecordTakedownResponse extends Message { /** * @generated from field: bool taken_down = 1; */ takenDown: boolean; /** * @generated from field: string takedown_ref = 2; */ takedownRef: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetRecordTakedownResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRecordTakedownResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRecordTakedownResponse; static fromJsonString(jsonString: string, options?: Partial): GetRecordTakedownResponse; static equals(a: GetRecordTakedownResponse | PlainMessage | undefined, b: GetRecordTakedownResponse | PlainMessage | undefined): boolean; } /** * * Bookmarks * * * @generated from message bsky.Bookmark */ export declare class Bookmark extends Message { /** * @generated from field: bsky.StashRef ref = 1; */ ref?: StashRef; /** * @generated from field: string subject_uri = 2; */ subjectUri: string; /** * @generated from field: string subject_cid = 3; */ subjectCid: string; /** * @generated from field: google.protobuf.Timestamp indexed_at = 4; */ indexedAt?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.Bookmark"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Bookmark; static fromJson(jsonValue: JsonValue, options?: Partial): Bookmark; static fromJsonString(jsonString: string, options?: Partial): Bookmark; static equals(a: Bookmark | PlainMessage | undefined, b: Bookmark | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBookmarksByActorAndSubjectsRequest */ export declare class GetBookmarksByActorAndSubjectsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string uris = 2; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBookmarksByActorAndSubjectsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBookmarksByActorAndSubjectsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetBookmarksByActorAndSubjectsRequest; static fromJsonString(jsonString: string, options?: Partial): GetBookmarksByActorAndSubjectsRequest; static equals(a: GetBookmarksByActorAndSubjectsRequest | PlainMessage | undefined, b: GetBookmarksByActorAndSubjectsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetBookmarksByActorAndSubjectsResponse */ export declare class GetBookmarksByActorAndSubjectsResponse extends Message { /** * @generated from field: repeated bsky.Bookmark bookmarks = 1; */ bookmarks: Bookmark[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetBookmarksByActorAndSubjectsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetBookmarksByActorAndSubjectsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetBookmarksByActorAndSubjectsResponse; static fromJsonString(jsonString: string, options?: Partial): GetBookmarksByActorAndSubjectsResponse; static equals(a: GetBookmarksByActorAndSubjectsResponse | PlainMessage | undefined, b: GetBookmarksByActorAndSubjectsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorBookmarksRequest */ export declare class GetActorBookmarksRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorBookmarksRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorBookmarksRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorBookmarksRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorBookmarksRequest; static equals(a: GetActorBookmarksRequest | PlainMessage | undefined, b: GetActorBookmarksRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.BookmarkInfo */ export declare class BookmarkInfo extends Message { /** * stash key * * @generated from field: string key = 1; */ key: string; /** * @generated from field: string subject = 2; */ subject: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.BookmarkInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BookmarkInfo; static fromJson(jsonValue: JsonValue, options?: Partial): BookmarkInfo; static fromJsonString(jsonString: string, options?: Partial): BookmarkInfo; static equals(a: BookmarkInfo | PlainMessage | undefined, b: BookmarkInfo | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorBookmarksResponse */ export declare class GetActorBookmarksResponse extends Message { /** * @generated from field: repeated bsky.BookmarkInfo bookmarks = 1; */ bookmarks: BookmarkInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorBookmarksResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorBookmarksResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorBookmarksResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorBookmarksResponse; static equals(a: GetActorBookmarksResponse | PlainMessage | undefined, b: GetActorBookmarksResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorDraftsRequest */ export declare class GetActorDraftsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: int32 limit = 2; */ limit: number; /** * @generated from field: string cursor = 3; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorDraftsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorDraftsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorDraftsRequest; static fromJsonString(jsonString: string, options?: Partial): GetActorDraftsRequest; static equals(a: GetActorDraftsRequest | PlainMessage | undefined, b: GetActorDraftsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DraftInfo */ export declare class DraftInfo extends Message { /** * stash key * * @generated from field: string key = 1; */ key: string; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: bytes payload = 4; */ payload: Uint8Array; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DraftInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DraftInfo; static fromJson(jsonValue: JsonValue, options?: Partial): DraftInfo; static fromJsonString(jsonString: string, options?: Partial): DraftInfo; static equals(a: DraftInfo | PlainMessage | undefined, b: DraftInfo | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetActorDraftsResponse */ export declare class GetActorDraftsResponse extends Message { /** * @generated from field: repeated bsky.DraftInfo drafts = 1; */ drafts: DraftInfo[]; /** * @generated from field: string cursor = 2; */ cursor: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetActorDraftsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetActorDraftsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetActorDraftsResponse; static fromJsonString(jsonString: string, options?: Partial): GetActorDraftsResponse; static equals(a: GetActorDraftsResponse | PlainMessage | undefined, b: GetActorDraftsResponse | PlainMessage | undefined): boolean; } /** * GetFollowsFollowing gets the list of DIDs that the actor follows that also follow the targets * * @generated from message bsky.GetFollowsFollowingRequest */ export declare class GetFollowsFollowingRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: repeated string target_dids = 2; */ targetDids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowsFollowingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowsFollowingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowsFollowingRequest; static fromJsonString(jsonString: string, options?: Partial): GetFollowsFollowingRequest; static equals(a: GetFollowsFollowingRequest | PlainMessage | undefined, b: GetFollowsFollowingRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.FollowsFollowing */ export declare class FollowsFollowing extends Message { /** * @generated from field: string target_did = 1; */ targetDid: string; /** * @generated from field: repeated string dids = 2; */ dids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.FollowsFollowing"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FollowsFollowing; static fromJson(jsonValue: JsonValue, options?: Partial): FollowsFollowing; static fromJsonString(jsonString: string, options?: Partial): FollowsFollowing; static equals(a: FollowsFollowing | PlainMessage | undefined, b: FollowsFollowing | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetFollowsFollowingResponse */ export declare class GetFollowsFollowingResponse extends Message { /** * @generated from field: repeated bsky.FollowsFollowing results = 1; */ results: FollowsFollowing[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetFollowsFollowingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetFollowsFollowingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetFollowsFollowingResponse; static fromJsonString(jsonString: string, options?: Partial): GetFollowsFollowingResponse; static equals(a: GetFollowsFollowingResponse | PlainMessage | undefined, b: GetFollowsFollowingResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSitemapIndexRequest */ export declare class GetSitemapIndexRequest extends Message { /** * @generated from field: bsky.SitemapPageType type = 1; */ type: SitemapPageType; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSitemapIndexRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSitemapIndexRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSitemapIndexRequest; static fromJsonString(jsonString: string, options?: Partial): GetSitemapIndexRequest; static equals(a: GetSitemapIndexRequest | PlainMessage | undefined, b: GetSitemapIndexRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSitemapIndexResponse */ export declare class GetSitemapIndexResponse extends Message { /** * GZIP compressed XML sitemap * * @generated from field: bytes sitemap = 1; */ sitemap: Uint8Array; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSitemapIndexResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSitemapIndexResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSitemapIndexResponse; static fromJsonString(jsonString: string, options?: Partial): GetSitemapIndexResponse; static equals(a: GetSitemapIndexResponse | PlainMessage | undefined, b: GetSitemapIndexResponse | PlainMessage | undefined): boolean; } /** * Sitemap HTTP paths are typically of the form `/type/yyyy-mm-dd/N.xml.gz`, i.e. `/users/2025-01-01/1.xml.gz` * * @generated from message bsky.GetSitemapPageRequest */ export declare class GetSitemapPageRequest extends Message { /** * @generated from field: bsky.SitemapPageType type = 1; */ type: SitemapPageType; /** * @generated from field: google.protobuf.Timestamp date = 2; */ date?: Timestamp; /** * One-indexed * * @generated from field: int32 bucket = 3; */ bucket: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSitemapPageRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSitemapPageRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSitemapPageRequest; static fromJsonString(jsonString: string, options?: Partial): GetSitemapPageRequest; static equals(a: GetSitemapPageRequest | PlainMessage | undefined, b: GetSitemapPageRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSitemapPageResponse */ export declare class GetSitemapPageResponse extends Message { /** * GZIP compressed XML sitemap * * @generated from field: bytes sitemap = 1; */ sitemap: Uint8Array; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSitemapPageResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSitemapPageResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSitemapPageResponse; static fromJsonString(jsonString: string, options?: Partial): GetSitemapPageResponse; static equals(a: GetSitemapPageResponse | PlainMessage | undefined, b: GetSitemapPageResponse | PlainMessage | undefined): boolean; } /** * Ping * * @generated from message bsky.PingRequest */ export declare class PingRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.PingRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PingRequest; static fromJson(jsonValue: JsonValue, options?: Partial): PingRequest; static fromJsonString(jsonString: string, options?: Partial): PingRequest; static equals(a: PingRequest | PlainMessage | undefined, b: PingRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.PingResponse */ export declare class PingResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.PingResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PingResponse; static fromJson(jsonValue: JsonValue, options?: Partial): PingResponse; static fromJsonString(jsonString: string, options?: Partial): PingResponse; static equals(a: PingResponse | PlainMessage | undefined, b: PingResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.StashRef */ export declare class StashRef extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string namespace = 2; */ namespace: string; /** * @generated from field: string key = 3; */ key: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.StashRef"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StashRef; static fromJson(jsonValue: JsonValue, options?: Partial): StashRef; static fromJsonString(jsonString: string, options?: Partial): StashRef; static equals(a: StashRef | PlainMessage | undefined, b: StashRef | PlainMessage | undefined): boolean; } /** * Standard.site records * * @generated from message bsky.GetSiteStandardRecordsByURIRequest */ export declare class GetSiteStandardRecordsByURIRequest extends Message { /** * Mixed list of site.standard.document and site.standard.publication AT-URIs. * URIs of other collections (or unparseable strings) are silently skipped. * * @generated from field: repeated string uris = 1; */ uris: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSiteStandardRecordsByURIRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSiteStandardRecordsByURIRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSiteStandardRecordsByURIRequest; static fromJsonString(jsonString: string, options?: Partial): GetSiteStandardRecordsByURIRequest; static equals(a: GetSiteStandardRecordsByURIRequest | PlainMessage | undefined, b: GetSiteStandardRecordsByURIRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSiteStandardRecordsByURIResponse */ export declare class GetSiteStandardRecordsByURIResponse extends Message { /** * Latest indexed version of each requested document. * * @generated from field: repeated bsky.SiteStandardRecord documents = 1; */ documents: SiteStandardRecord[]; /** * Latest indexed version of each requested publication AND each publication * resolved from a document's `site` field. Each publication appears at most * once across the two sources. * * @generated from field: repeated bsky.SiteStandardRecord publications = 2; */ publications: SiteStandardRecord[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSiteStandardRecordsByURIResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSiteStandardRecordsByURIResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSiteStandardRecordsByURIResponse; static fromJsonString(jsonString: string, options?: Partial): GetSiteStandardRecordsByURIResponse; static equals(a: GetSiteStandardRecordsByURIResponse | PlainMessage | undefined, b: GetSiteStandardRecordsByURIResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSiteStandardRecordsByRefRequest */ export declare class GetSiteStandardRecordsByRefRequest extends Message { /** * Mixed list of site.standard.document and site.standard.publication refs * (uri + cid). Refs whose URI is not a SiteStandard collection (or doesn't * parse) are silently skipped. * * @generated from field: repeated bsky.RecordRef refs = 1; */ refs: RecordRef[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSiteStandardRecordsByRefRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSiteStandardRecordsByRefRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSiteStandardRecordsByRefRequest; static fromJsonString(jsonString: string, options?: Partial): GetSiteStandardRecordsByRefRequest; static equals(a: GetSiteStandardRecordsByRefRequest | PlainMessage | undefined, b: GetSiteStandardRecordsByRefRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.GetSiteStandardRecordsByRefResponse */ export declare class GetSiteStandardRecordsByRefResponse extends Message { /** * Document version exactly matching each requested doc ref. * * @generated from field: repeated bsky.SiteStandardRecord documents = 1; */ documents: SiteStandardRecord[]; /** * Publication version exactly matching each requested pub ref. This RPC * does NOT auto-resolve publications referenced by documents — callers who * want a paired publication should pass its ref explicitly. * * @generated from field: repeated bsky.SiteStandardRecord publications = 2; */ publications: SiteStandardRecord[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.GetSiteStandardRecordsByRefResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSiteStandardRecordsByRefResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSiteStandardRecordsByRefResponse; static fromJsonString(jsonString: string, options?: Partial): GetSiteStandardRecordsByRefResponse; static equals(a: GetSiteStandardRecordsByRefResponse | PlainMessage | undefined, b: GetSiteStandardRecordsByRefResponse | PlainMessage | undefined): boolean; } /** * SiteStandardRecord pairs a record with its addressing ref so callers can * build a uri- or (uri,cid)-keyed lookup without server-side encoding. * * @generated from message bsky.SiteStandardRecord */ export declare class SiteStandardRecord extends Message { /** * @generated from field: bsky.RecordRef ref = 1; */ ref?: RecordRef; /** * @generated from field: bsky.Record record = 2; */ record?: Record; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.SiteStandardRecord"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SiteStandardRecord; static fromJson(jsonValue: JsonValue, options?: Partial): SiteStandardRecord; static fromJsonString(jsonString: string, options?: Partial): SiteStandardRecord; static equals(a: SiteStandardRecord | PlainMessage | undefined, b: SiteStandardRecord | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UpdateActorUpstreamStatusRequest */ export declare class UpdateActorUpstreamStatusRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: bool active = 2; */ active: boolean; /** * @generated from field: string upstream_status = 3; */ upstreamStatus: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UpdateActorUpstreamStatusRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateActorUpstreamStatusRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateActorUpstreamStatusRequest; static fromJsonString(jsonString: string, options?: Partial): UpdateActorUpstreamStatusRequest; static equals(a: UpdateActorUpstreamStatusRequest | PlainMessage | undefined, b: UpdateActorUpstreamStatusRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UpdateActorUpstreamStatusResponse */ export declare class UpdateActorUpstreamStatusResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UpdateActorUpstreamStatusResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UpdateActorUpstreamStatusResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UpdateActorUpstreamStatusResponse; static fromJsonString(jsonString: string, options?: Partial): UpdateActorUpstreamStatusResponse; static equals(a: UpdateActorUpstreamStatusResponse | PlainMessage | undefined, b: UpdateActorUpstreamStatusResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownActorRequest */ export declare class TakedownActorRequest extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: string ref = 2; */ ref: string; /** * @generated from field: google.protobuf.Timestamp seen = 3; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownActorRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownActorRequest; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownActorRequest; static fromJsonString(jsonString: string, options?: Partial): TakedownActorRequest; static equals(a: TakedownActorRequest | PlainMessage | undefined, b: TakedownActorRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownActorResponse */ export declare class TakedownActorResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownActorResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownActorResponse; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownActorResponse; static fromJsonString(jsonString: string, options?: Partial): TakedownActorResponse; static equals(a: TakedownActorResponse | PlainMessage | undefined, b: TakedownActorResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownActorRequest */ export declare class UntakedownActorRequest extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: google.protobuf.Timestamp seen = 2; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownActorRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownActorRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownActorRequest; static fromJsonString(jsonString: string, options?: Partial): UntakedownActorRequest; static equals(a: UntakedownActorRequest | PlainMessage | undefined, b: UntakedownActorRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownActorResponse */ export declare class UntakedownActorResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownActorResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownActorResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownActorResponse; static fromJsonString(jsonString: string, options?: Partial): UntakedownActorResponse; static equals(a: UntakedownActorResponse | PlainMessage | undefined, b: UntakedownActorResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownBlobRequest */ export declare class TakedownBlobRequest extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: string cid = 2; */ cid: string; /** * @generated from field: string ref = 3; */ ref: string; /** * @generated from field: google.protobuf.Timestamp seen = 4; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownBlobRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownBlobRequest; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownBlobRequest; static fromJsonString(jsonString: string, options?: Partial): TakedownBlobRequest; static equals(a: TakedownBlobRequest | PlainMessage | undefined, b: TakedownBlobRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownBlobResponse */ export declare class TakedownBlobResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownBlobResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownBlobResponse; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownBlobResponse; static fromJsonString(jsonString: string, options?: Partial): TakedownBlobResponse; static equals(a: TakedownBlobResponse | PlainMessage | undefined, b: TakedownBlobResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownBlobRequest */ export declare class UntakedownBlobRequest extends Message { /** * @generated from field: string did = 1; */ did: string; /** * @generated from field: string cid = 2; */ cid: string; /** * @generated from field: google.protobuf.Timestamp seen = 3; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownBlobRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownBlobRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownBlobRequest; static fromJsonString(jsonString: string, options?: Partial): UntakedownBlobRequest; static equals(a: UntakedownBlobRequest | PlainMessage | undefined, b: UntakedownBlobRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownBlobResponse */ export declare class UntakedownBlobResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownBlobResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownBlobResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownBlobResponse; static fromJsonString(jsonString: string, options?: Partial): UntakedownBlobResponse; static equals(a: UntakedownBlobResponse | PlainMessage | undefined, b: UntakedownBlobResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownRecordRequest */ export declare class TakedownRecordRequest extends Message { /** * @generated from field: string record_uri = 1; */ recordUri: string; /** * @generated from field: string ref = 2; */ ref: string; /** * @generated from field: google.protobuf.Timestamp seen = 3; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownRecordRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownRecordRequest; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownRecordRequest; static fromJsonString(jsonString: string, options?: Partial): TakedownRecordRequest; static equals(a: TakedownRecordRequest | PlainMessage | undefined, b: TakedownRecordRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.TakedownRecordResponse */ export declare class TakedownRecordResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.TakedownRecordResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TakedownRecordResponse; static fromJson(jsonValue: JsonValue, options?: Partial): TakedownRecordResponse; static fromJsonString(jsonString: string, options?: Partial): TakedownRecordResponse; static equals(a: TakedownRecordResponse | PlainMessage | undefined, b: TakedownRecordResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownRecordRequest */ export declare class UntakedownRecordRequest extends Message { /** * @generated from field: string record_uri = 1; */ recordUri: string; /** * @generated from field: google.protobuf.Timestamp seen = 2; */ seen?: Timestamp; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownRecordRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownRecordRequest; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownRecordRequest; static fromJsonString(jsonString: string, options?: Partial): UntakedownRecordRequest; static equals(a: UntakedownRecordRequest | PlainMessage | undefined, b: UntakedownRecordRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.UntakedownRecordResponse */ export declare class UntakedownRecordResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.UntakedownRecordResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): UntakedownRecordResponse; static fromJson(jsonValue: JsonValue, options?: Partial): UntakedownRecordResponse; static fromJsonString(jsonString: string, options?: Partial): UntakedownRecordResponse; static equals(a: UntakedownRecordResponse | PlainMessage | undefined, b: UntakedownRecordResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateActorMuteRequest */ export declare class CreateActorMuteRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string subject_did = 2; */ subjectDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateActorMuteRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateActorMuteRequest; static fromJson(jsonValue: JsonValue, options?: Partial): CreateActorMuteRequest; static fromJsonString(jsonString: string, options?: Partial): CreateActorMuteRequest; static equals(a: CreateActorMuteRequest | PlainMessage | undefined, b: CreateActorMuteRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateActorMuteResponse */ export declare class CreateActorMuteResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateActorMuteResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateActorMuteResponse; static fromJson(jsonValue: JsonValue, options?: Partial): CreateActorMuteResponse; static fromJsonString(jsonString: string, options?: Partial): CreateActorMuteResponse; static equals(a: CreateActorMuteResponse | PlainMessage | undefined, b: CreateActorMuteResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteActorMuteRequest */ export declare class DeleteActorMuteRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string subject_did = 2; */ subjectDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteActorMuteRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteActorMuteRequest; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteActorMuteRequest; static fromJsonString(jsonString: string, options?: Partial): DeleteActorMuteRequest; static equals(a: DeleteActorMuteRequest | PlainMessage | undefined, b: DeleteActorMuteRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteActorMuteResponse */ export declare class DeleteActorMuteResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteActorMuteResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteActorMuteResponse; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteActorMuteResponse; static fromJsonString(jsonString: string, options?: Partial): DeleteActorMuteResponse; static equals(a: DeleteActorMuteResponse | PlainMessage | undefined, b: DeleteActorMuteResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearActorMutesRequest */ export declare class ClearActorMutesRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearActorMutesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearActorMutesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): ClearActorMutesRequest; static fromJsonString(jsonString: string, options?: Partial): ClearActorMutesRequest; static equals(a: ClearActorMutesRequest | PlainMessage | undefined, b: ClearActorMutesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearActorMutesResponse */ export declare class ClearActorMutesResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearActorMutesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearActorMutesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): ClearActorMutesResponse; static fromJsonString(jsonString: string, options?: Partial): ClearActorMutesResponse; static equals(a: ClearActorMutesResponse | PlainMessage | undefined, b: ClearActorMutesResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateActorMutelistSubscriptionRequest */ export declare class CreateActorMutelistSubscriptionRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string subject_uri = 2; */ subjectUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateActorMutelistSubscriptionRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateActorMutelistSubscriptionRequest; static fromJson(jsonValue: JsonValue, options?: Partial): CreateActorMutelistSubscriptionRequest; static fromJsonString(jsonString: string, options?: Partial): CreateActorMutelistSubscriptionRequest; static equals(a: CreateActorMutelistSubscriptionRequest | PlainMessage | undefined, b: CreateActorMutelistSubscriptionRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateActorMutelistSubscriptionResponse */ export declare class CreateActorMutelistSubscriptionResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateActorMutelistSubscriptionResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateActorMutelistSubscriptionResponse; static fromJson(jsonValue: JsonValue, options?: Partial): CreateActorMutelistSubscriptionResponse; static fromJsonString(jsonString: string, options?: Partial): CreateActorMutelistSubscriptionResponse; static equals(a: CreateActorMutelistSubscriptionResponse | PlainMessage | undefined, b: CreateActorMutelistSubscriptionResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteActorMutelistSubscriptionRequest */ export declare class DeleteActorMutelistSubscriptionRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string subject_uri = 2; */ subjectUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteActorMutelistSubscriptionRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteActorMutelistSubscriptionRequest; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteActorMutelistSubscriptionRequest; static fromJsonString(jsonString: string, options?: Partial): DeleteActorMutelistSubscriptionRequest; static equals(a: DeleteActorMutelistSubscriptionRequest | PlainMessage | undefined, b: DeleteActorMutelistSubscriptionRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteActorMutelistSubscriptionResponse */ export declare class DeleteActorMutelistSubscriptionResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteActorMutelistSubscriptionResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteActorMutelistSubscriptionResponse; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteActorMutelistSubscriptionResponse; static fromJsonString(jsonString: string, options?: Partial): DeleteActorMutelistSubscriptionResponse; static equals(a: DeleteActorMutelistSubscriptionResponse | PlainMessage | undefined, b: DeleteActorMutelistSubscriptionResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearActorMutelistSubscriptionsRequest */ export declare class ClearActorMutelistSubscriptionsRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearActorMutelistSubscriptionsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearActorMutelistSubscriptionsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): ClearActorMutelistSubscriptionsRequest; static fromJsonString(jsonString: string, options?: Partial): ClearActorMutelistSubscriptionsRequest; static equals(a: ClearActorMutelistSubscriptionsRequest | PlainMessage | undefined, b: ClearActorMutelistSubscriptionsRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearActorMutelistSubscriptionsResponse */ export declare class ClearActorMutelistSubscriptionsResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearActorMutelistSubscriptionsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearActorMutelistSubscriptionsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): ClearActorMutelistSubscriptionsResponse; static fromJsonString(jsonString: string, options?: Partial): ClearActorMutelistSubscriptionsResponse; static equals(a: ClearActorMutelistSubscriptionsResponse | PlainMessage | undefined, b: ClearActorMutelistSubscriptionsResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateThreadMuteRequest */ export declare class CreateThreadMuteRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string thread_root = 2; */ threadRoot: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateThreadMuteRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateThreadMuteRequest; static fromJson(jsonValue: JsonValue, options?: Partial): CreateThreadMuteRequest; static fromJsonString(jsonString: string, options?: Partial): CreateThreadMuteRequest; static equals(a: CreateThreadMuteRequest | PlainMessage | undefined, b: CreateThreadMuteRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.CreateThreadMuteResponse */ export declare class CreateThreadMuteResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.CreateThreadMuteResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CreateThreadMuteResponse; static fromJson(jsonValue: JsonValue, options?: Partial): CreateThreadMuteResponse; static fromJsonString(jsonString: string, options?: Partial): CreateThreadMuteResponse; static equals(a: CreateThreadMuteResponse | PlainMessage | undefined, b: CreateThreadMuteResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteThreadMuteRequest */ export declare class DeleteThreadMuteRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; /** * @generated from field: string thread_root = 2; */ threadRoot: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteThreadMuteRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteThreadMuteRequest; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteThreadMuteRequest; static fromJsonString(jsonString: string, options?: Partial): DeleteThreadMuteRequest; static equals(a: DeleteThreadMuteRequest | PlainMessage | undefined, b: DeleteThreadMuteRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.DeleteThreadMuteResponse */ export declare class DeleteThreadMuteResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.DeleteThreadMuteResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DeleteThreadMuteResponse; static fromJson(jsonValue: JsonValue, options?: Partial): DeleteThreadMuteResponse; static fromJsonString(jsonString: string, options?: Partial): DeleteThreadMuteResponse; static equals(a: DeleteThreadMuteResponse | PlainMessage | undefined, b: DeleteThreadMuteResponse | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearThreadMutesRequest */ export declare class ClearThreadMutesRequest extends Message { /** * @generated from field: string actor_did = 1; */ actorDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearThreadMutesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearThreadMutesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): ClearThreadMutesRequest; static fromJsonString(jsonString: string, options?: Partial): ClearThreadMutesRequest; static equals(a: ClearThreadMutesRequest | PlainMessage | undefined, b: ClearThreadMutesRequest | PlainMessage | undefined): boolean; } /** * @generated from message bsky.ClearThreadMutesResponse */ export declare class ClearThreadMutesResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "bsky.ClearThreadMutesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ClearThreadMutesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): ClearThreadMutesResponse; static fromJsonString(jsonString: string, options?: Partial): ClearThreadMutesResponse; static equals(a: ClearThreadMutesResponse | PlainMessage | undefined, b: ClearThreadMutesResponse | PlainMessage | undefined): boolean; } //# sourceMappingURL=bsky_pb.d.ts.map