UNPKG

convex

Version:

Client for the Convex Cloud

193 lines 5.37 kB
import type { UserIdentityAttributes } from "../../server/authentication.js"; export type { UserIdentityAttributes } from "../../server/authentication.js"; import { JSONValue } from "../../values/index.js"; import { Long } from "../long.js"; /** * Shared schema */ export declare function u64ToLong(encoded: EncodedU64): U64; export declare function longToU64(raw: U64): EncodedU64; export declare function parseServerMessage(encoded: EncodedServerMessage): ServerMessage; export declare function encodeClientMessage(message: ClientMessage): EncodedClientMessage; type U64 = Long; type EncodedU64 = string; /** * Unique nonnegative integer identifying a single query. */ export type QueryId = number; export type QuerySetVersion = number; export type RequestId = number; export type IdentityVersion = number; /** * A serialized representation of decisions made during a query's execution. * * A journal is produced when a query function first executes and is re-used * when a query is re-executed. * * Currently this is used to store pagination end cursors to ensure * that pages of paginated queries will always end at the same cursor. This * enables gapless, reactive pagination. * * `null` is used to represent empty journals. * @public */ export type QueryJournal = string | null; /** * Client message schema */ type Connect = { type: "Connect"; sessionId: string; connectionCount: number; lastCloseReason: string | null; maxObservedTimestamp?: TS; }; export type AddQuery = { type: "Add"; queryId: QueryId; udfPath: string; args: JSONValue[]; journal?: QueryJournal; }; export type RemoveQuery = { type: "Remove"; queryId: QueryId; }; export type QuerySetModification = { type: "ModifyQuerySet"; baseVersion: QuerySetVersion; newVersion: QuerySetVersion; modifications: (AddQuery | RemoveQuery)[]; }; export type MutationRequest = { type: "Mutation"; requestId: RequestId; udfPath: string; args: JSONValue[]; }; export type ActionRequest = { type: "Action"; requestId: RequestId; udfPath: string; args: JSONValue[]; }; export type AdminAuthentication = { type: "Authenticate"; tokenType: "Admin"; value: string; baseVersion: IdentityVersion; impersonating?: UserIdentityAttributes; }; export type Authenticate = AdminAuthentication | { type: "Authenticate"; tokenType: "User"; value: string; baseVersion: IdentityVersion; } | { type: "Authenticate"; tokenType: "None"; baseVersion: IdentityVersion; }; export type Event = { type: "Event"; eventType: string; event: any; }; export type ClientMessage = Connect | Authenticate | QuerySetModification | MutationRequest | ActionRequest | Event; type EncodedConnect = Omit<Connect, "maxObservedTimestamp"> & { maxObservedTimestamp?: EncodedTS; }; type EncodedClientMessage = EncodedConnect | Authenticate | QuerySetModification | MutationRequest | ActionRequest | Event; /** * Server message schema */ export type TS = U64; type EncodedTS = EncodedU64; type LogLines = string[]; export type StateVersion = { querySet: QuerySetVersion; ts: TS; identity: IdentityVersion; }; type EncodedStateVersion = Omit<StateVersion, "ts"> & { ts: EncodedTS; }; type StateModification = { type: "QueryUpdated"; queryId: QueryId; value: JSONValue; logLines: LogLines; journal?: QueryJournal; } | { type: "QueryFailed"; queryId: QueryId; errorMessage: string; logLines: LogLines; errorData: JSONValue; journal?: QueryJournal; } | { type: "QueryRemoved"; queryId: QueryId; }; export type Transition = { type: "Transition"; startVersion: StateVersion; endVersion: StateVersion; modifications: StateModification[]; }; type MutationSuccess = { type: "MutationResponse"; requestId: RequestId; success: true; result: JSONValue; ts: TS; logLines: LogLines; }; type MutationFailed = { type: "MutationResponse"; requestId: RequestId; success: false; result: string; logLines: LogLines; errorData?: JSONValue; }; export type MutationResponse = MutationSuccess | MutationFailed; type ActionSuccess = { type: "ActionResponse"; requestId: RequestId; success: true; result: JSONValue; logLines: LogLines; }; type ActionFailed = { type: "ActionResponse"; requestId: RequestId; success: false; result: string; logLines: LogLines; errorData?: JSONValue; }; export type ActionResponse = ActionSuccess | ActionFailed; export type AuthError = { type: "AuthError"; error: string; baseVersion?: IdentityVersion; }; type FatalError = { type: "FatalError"; error: string; }; type Ping = { type: "Ping"; }; export type ServerMessage = Transition | MutationResponse | ActionResponse | FatalError | AuthError | Ping; type EncodedTransition = Omit<Transition, "startVersion" | "endVersion"> & { startVersion: EncodedStateVersion; endVersion: EncodedStateVersion; }; type EncodedMutationSuccess = Omit<MutationSuccess, "ts"> & { ts: EncodedTS; }; type EncodedMutationResponse = MutationFailed | EncodedMutationSuccess; type EncodedServerMessage = EncodedTransition | EncodedMutationResponse | ActionResponse | FatalError | AuthError | Ping; //# sourceMappingURL=protocol.d.ts.map