@kurrent/kurrentdb-client
Version:
KurrentDB gRPC NodeJS Client SDK
59 lines (58 loc) • 2.21 kB
TypeScript
export declare const ANY = "any";
export declare const STREAM_EXISTS = "stream_exists";
export declare const NO_STREAM = "no_stream";
export declare const START = "start";
export declare const END = "end";
export declare const FORWARDS = "forwards";
export declare const BACKWARDS = "backwards";
export declare const RANDOM = "random";
export declare const FOLLOWER = "follower";
export declare const LEADER = "leader";
export declare const READ_ONLY_REPLICA = "read_only_replica";
export declare const DISPATCH_TO_SINGLE = "DispatchToSingle";
export declare const ROUND_ROBIN = "RoundRobin";
export declare const PINNED = "Pinned";
export declare const PARK = "park";
export declare const RETRY = "retry";
export declare const SKIP = "skip";
export declare const STOP = "stop";
export declare const CREATING = "Creating";
export declare const LOADING = "Loading";
export declare const LOADED = "Loaded";
export declare const PREPARING = "Preparing";
export declare const PREPARED = "Prepared";
export declare const STARTING = "Starting";
export declare const LOADING_STOPPED = "LoadingStopped";
export declare const RUNNING = "Running";
export declare const STOPPING = "Stopping";
export declare const ABORTING = "Aborting";
export declare const STOPPED = "Stopped";
export declare const COMPLETED = "Completed";
export declare const ABORTED = "Aborted";
export declare const FAULTED = "Faulted";
export declare const DELETING = "Deleting";
export declare const PAUSED = "Paused";
export declare const WRITING_RESULTS = "Writing results";
export declare const STREAM_NAME = "streamName";
export declare const EVENT_TYPE = "eventType";
export declare const UNBOUNDED = "unbounded";
/**
* A stream containing links pointing to each stream in the KurrentDB.
*/
export declare const STREAMS_STREAM = "$streams";
/**
* A stream containing system settings.
*/
export declare const SETTINGS_STREAM = "$settings";
/**
* A stream containing statistics.
*/
export declare const STATS_STREAM_PREFIX = "$stats";
/**
* The user default acl stream.
*/
export declare const USER_STREAM_ACL = "$userStreamAcl";
/**
* The system stream defaults acl stream.
*/
export declare const SYSTEM_STREAM_ACL = "$systemStreamAcl";