import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3, Timestamp } from "@bufbuild/protobuf"; /** * @generated from message clio.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 = 3; */ indexedAt?: Timestamp; /** * @generated from field: bool taken_down = 4; */ takenDown: boolean; /** * @generated from field: google.protobuf.Timestamp created_at = 5; */ createdAt?: Timestamp; /** * @generated from field: string takedown_ref = 6; */ takedownRef: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.Song */ export declare class Song extends Message { /** * @generated from field: string track_name = 1; */ trackName: string; /** * @generated from field: string track_mb_id = 2; */ trackMbId: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.Song"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Song; static fromJson(jsonValue: JsonValue, options?: Partial): Song; static fromJsonString(jsonString: string, options?: Partial): Song; static equals(a: Song | PlainMessage | undefined, b: Song | PlainMessage | undefined): boolean; } /** * @generated from message clio.Playlist */ export declare class Playlist extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: string name = 2; */ name: string; /** * @generated from field: repeated clio.Song songs = 3; */ songs: Song[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.Playlist"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Playlist; static fromJson(jsonValue: JsonValue, options?: Partial): Playlist; static fromJsonString(jsonString: string, options?: Partial): Playlist; static equals(a: Playlist | PlainMessage | undefined, b: Playlist | PlainMessage | undefined): boolean; } /** * @generated from message clio.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 = "clio.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 clio.GetProfileRecordsResponse */ export declare class GetProfileRecordsResponse extends Message { /** * @generated from field: repeated clio.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.GetRecommendedPlaylistsForPlaylistIdeaRequest */ export declare class GetRecommendedPlaylistsForPlaylistIdeaRequest extends Message { /** * @generated from field: string playlist_idea_uri = 1; */ playlistIdeaUri: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.GetRecommendedPlaylistsForPlaylistIdeaRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaRequest; static fromJsonString(jsonString: string, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaRequest; static equals(a: GetRecommendedPlaylistsForPlaylistIdeaRequest | PlainMessage | undefined, b: GetRecommendedPlaylistsForPlaylistIdeaRequest | PlainMessage | undefined): boolean; } /** * @generated from message clio.GetRecommendedPlaylistsForPlaylistIdeaResponse */ export declare class GetRecommendedPlaylistsForPlaylistIdeaResponse extends Message { /** * @generated from field: repeated clio.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.GetRecommendedPlaylistsForPlaylistIdeaResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaResponse; static fromJsonString(jsonString: string, options?: Partial): GetRecommendedPlaylistsForPlaylistIdeaResponse; static equals(a: GetRecommendedPlaylistsForPlaylistIdeaResponse | PlainMessage | undefined, b: GetRecommendedPlaylistsForPlaylistIdeaResponse | PlainMessage | undefined): boolean; } /** * @generated from message clio.GetSongRecommendationRecordsByUserRequest */ export declare class GetSongRecommendationRecordsByUserRequest extends Message { /** * @generated from field: string user_did = 1; */ userDid: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.GetSongRecommendationRecordsByUserRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSongRecommendationRecordsByUserRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetSongRecommendationRecordsByUserRequest; static fromJsonString(jsonString: string, options?: Partial): GetSongRecommendationRecordsByUserRequest; static equals(a: GetSongRecommendationRecordsByUserRequest | PlainMessage | undefined, b: GetSongRecommendationRecordsByUserRequest | PlainMessage | undefined): boolean; } /** * @generated from message clio.GetSongRecommendationRecordsByUserResponse */ export declare class GetSongRecommendationRecordsByUserResponse extends Message { /** * @generated from field: repeated clio.Record records = 1; */ records: Record[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.GetSongRecommendationRecordsByUserResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetSongRecommendationRecordsByUserResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetSongRecommendationRecordsByUserResponse; static fromJsonString(jsonString: string, options?: Partial): GetSongRecommendationRecordsByUserResponse; static equals(a: GetSongRecommendationRecordsByUserResponse | PlainMessage | undefined, b: GetSongRecommendationRecordsByUserResponse | PlainMessage | undefined): boolean; } /** * - return actor information for dids A, B, C… * - profile hydration * - should this include handles? apply repo takedown? * * @generated from message clio.GetActorsRequest */ export declare class GetActorsRequest extends Message { /** * @generated from field: repeated string dids = 1; */ dids: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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: clio.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; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.GetActorsResponse */ export declare class GetActorsResponse extends Message { /** * @generated from field: repeated clio.ActorInfo actors = 1; */ actors: ActorInfo[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.GetDidsByHandlesRequest */ export declare class GetDidsByHandlesRequest extends Message { /** * @generated from field: repeated string handles = 1; */ handles: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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; } /** * - Latest repo rev of user w/ DID * * @generated from message clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.TakedownActorResponse */ export declare class TakedownActorResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.UntakedownActorResponse */ export declare class UntakedownActorResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.TakedownBlobResponse */ export declare class TakedownBlobResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.UntakedownBlobResponse */ export declare class UntakedownBlobResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.TakedownRecordResponse */ export declare class TakedownRecordResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.UntakedownRecordResponse */ export declare class UntakedownRecordResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.UpdateActorUpstreamStatusResponse */ export declare class UpdateActorUpstreamStatusResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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 clio.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 = "clio.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; } /** * @generated from message clio.HealthCheckRequest */ export declare class HealthCheckRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.HealthCheckRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): HealthCheckRequest; static fromJson(jsonValue: JsonValue, options?: Partial): HealthCheckRequest; static fromJsonString(jsonString: string, options?: Partial): HealthCheckRequest; static equals(a: HealthCheckRequest | PlainMessage | undefined, b: HealthCheckRequest | PlainMessage | undefined): boolean; } /** * @generated from message clio.HealthCheck */ export declare class HealthCheck extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.HealthCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): HealthCheck; static fromJson(jsonValue: JsonValue, options?: Partial): HealthCheck; static fromJsonString(jsonString: string, options?: Partial): HealthCheck; static equals(a: HealthCheck | PlainMessage | undefined, b: HealthCheck | PlainMessage | undefined): boolean; } /** * @generated from message clio.HealthCheckResponse */ export declare class HealthCheckResponse extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "clio.HealthCheckResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): HealthCheckResponse; static fromJson(jsonValue: JsonValue, options?: Partial): HealthCheckResponse; static fromJsonString(jsonString: string, options?: Partial): HealthCheckResponse; static equals(a: HealthCheckResponse | PlainMessage | undefined, b: HealthCheckResponse | PlainMessage | undefined): boolean; }