-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcommon.ts
More file actions
70 lines (61 loc) · 2.46 KB
/
Copy pathcommon.ts
File metadata and controls
70 lines (61 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* @license
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
* SPDX-License-Identifier: Apache-2.0
*/
// organize-imports-ignore
export * from "./tabular/BaseSqlTabularStorage";
export * from "./tabular/BaseTabularStorage";
export * from "./tabular/CachedTabularStorage";
export * from "./tabular/columnConstraints";
export * from "./tabular/CoveringIndexMissingError";
export { pickCoveringIndex } from "./tabular/coveringIndexPicker";
export type {
PickCoveringIndexInput,
PickedIndex,
RegisteredIndex,
} from "./tabular/coveringIndexPicker";
export * from "./tabular/pkFingerprint";
// Cursor codec: the public surface is the opaque type, the codec
// functions, the length cap, and the cross-arity assertion. The
// payload shape and version constant are implementation details —
// keep them out of `@workglow/storage`'s public API so callers can't
// depend on the encoding format and we stay free to evolve it.
export {
assertCursorMatches,
decodeCursor,
encodeCursor,
MAX_CURSOR_LENGTH,
} from "./tabular/Cursor";
export type { PageCursor } from "./tabular/Cursor";
export * from "./tabular/HttpTabularProxyStorage";
export * from "./tabular/HuggingFaceTabularStorage";
export * from "./tabular/InMemoryTabularMigrationApplier";
export * from "./tabular/InMemoryTabularStorage";
export * from "./tabular/ITabularStorage";
export * from "./tabular/withConnectionTransaction";
export * from "./tabular/sqlMigrationDdl";
export * from "./tabular/SqlTabularMigrationApplier";
export * from "./tabular/StorageError";
export * from "./tabular/TabularStorageRegistry";
export * from "./tabular/TelemetryTabularStorage";
export * from "./kv/IKvStorage";
export * from "./kv/InMemoryKvStorage";
export * from "./kv/KvStorage";
export * from "./kv/KvViaTabularStorage";
export * from "./kv/TelemetryKvStorage";
export * from "./util/HybridSubscriptionManager";
export * from "./util/PollingSubscriptionManager";
export { safeEmit } from "./events/safeEmit";
export * from "./migrations";
export * from "./sql";
export * from "./vector/assertVectorShape";
export * from "./vector/emitSimilaritySearch";
export * from "./vector/InMemoryVectorStorage";
export * from "./vector/IVectorStorage";
export * from "./vector/TelemetryVectorStorage";
export * from "./text/index";
export * from "./credentials/EncryptedKvCredentialStore";
export * from "./credentials/LazyEncryptedCredentialStore";
export * from "./credentials/SecretVault";
export * from "./credentials/ServerCredentialStore";