silosdk 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +16 -5
  2. package/dist/internal/indexed-db.cjs +44 -0
  3. package/dist/internal/indexed-db.mjs +41 -0
  4. package/dist/media/shared.cjs +99 -0
  5. package/dist/media/shared.d.cts +26 -0
  6. package/dist/media/shared.d.mts +26 -0
  7. package/dist/media/shared.mjs +93 -0
  8. package/dist/media/storage.native.cjs +102 -0
  9. package/dist/media/storage.native.mjs +101 -0
  10. package/dist/media/storage.web.cjs +79 -0
  11. package/dist/media/storage.web.mjs +78 -0
  12. package/dist/media.cjs +5 -163
  13. package/dist/media.d.cts +7 -27
  14. package/dist/media.d.mts +7 -27
  15. package/dist/media.mjs +4 -161
  16. package/dist/media.web.cjs +9 -0
  17. package/dist/media.web.d.cts +12 -0
  18. package/dist/media.web.d.mts +12 -0
  19. package/dist/media.web.mjs +8 -0
  20. package/dist/settings/shared.cjs +63 -0
  21. package/dist/settings/shared.d.cts +19 -0
  22. package/dist/settings/shared.d.mts +19 -0
  23. package/dist/settings/shared.mjs +59 -0
  24. package/dist/settings/storage.native.cjs +24 -0
  25. package/dist/settings/storage.native.mjs +22 -0
  26. package/dist/settings/storage.web.cjs +34 -0
  27. package/dist/settings/storage.web.mjs +34 -0
  28. package/dist/settings.cjs +4 -66
  29. package/dist/settings.d.cts +4 -18
  30. package/dist/settings.d.mts +4 -18
  31. package/dist/settings.mjs +4 -64
  32. package/dist/settings.web.cjs +8 -0
  33. package/dist/settings.web.d.cts +6 -0
  34. package/dist/settings.web.d.mts +6 -0
  35. package/dist/settings.web.mjs +8 -0
  36. package/dist/store/shared.cjs +338 -0
  37. package/dist/store/shared.d.cts +58 -0
  38. package/dist/store/shared.d.mts +58 -0
  39. package/dist/store/shared.mjs +333 -0
  40. package/dist/store/storage.native.cjs +133 -0
  41. package/dist/store/storage.native.mjs +132 -0
  42. package/dist/store/storage.web.cjs +142 -0
  43. package/dist/store/storage.web.mjs +142 -0
  44. package/dist/store.cjs +4 -421
  45. package/dist/store.d.cts +4 -58
  46. package/dist/store.d.mts +4 -58
  47. package/dist/store.mjs +4 -421
  48. package/dist/store.web.cjs +15 -0
  49. package/dist/store.web.d.cts +7 -0
  50. package/dist/store.web.d.mts +7 -0
  51. package/dist/store.web.mjs +12 -0
  52. package/package.json +31 -1
package/dist/store.cjs CHANGED
@@ -1,430 +1,13 @@
1
1
  const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
2
+ const require_shared = require('./store/shared.cjs');
3
+ const require_storage_native = require('./store/storage.native.cjs');
2
4
  let expo_crypto = require("expo-crypto");
3
- let expo_sqlite = require("expo-sqlite");
4
5
 
5
- //#region src/store/index.ts
6
- const sourceNames = /* @__PURE__ */ new Set();
7
- const sourceNamePattern = /^[A-Za-z][A-Za-z0-9_-]*$/;
8
- const reservedDocumentFields = new Set([
9
- "id",
10
- "data",
11
- "set"
12
- ]);
13
- const deletedDocs = /* @__PURE__ */ new WeakSet();
6
+ //#region src/store/index.native.ts
14
7
  function createID() {
15
8
  return (0, expo_crypto.randomUUID)();
16
9
  }
17
- function createStore(defaults) {
18
- const names = Object.keys(defaults);
19
- const nameSet = new Set(names);
20
- for (const name of names) {
21
- assertSourceName(name);
22
- assertFlatDefaults(name, defaults[name]);
23
- }
24
- if (new Set(names).size !== names.length) throw new Error("Store collection names must be unique.");
25
- return {
26
- names,
27
- collectionOptions(name, options = {}) {
28
- assertStoreCollectionName(nameSet, name);
29
- return createSourceCollectionOptions(name, defaults[name], options);
30
- },
31
- linkCollectionOptions(options = {}) {
32
- return createLinkCollectionOptions(names, nameSet, options);
33
- }
34
- };
35
- }
36
- function source(name, defaults) {
37
- assertSourceName(name);
38
- assertFlatDefaults(name, defaults);
39
- if (sourceNames.has(name)) throw new Error(`Source "${name}" is already registered. Define each source once and import the existing source instead.`);
40
- sourceNames.add(name);
41
- return {
42
- name,
43
- defaults,
44
- schema: createSourceSchema(name, defaults),
45
- collectionOptions(options = {}) {
46
- return createSourceCollectionOptions(name, defaults, options);
47
- }
48
- };
49
- }
50
- function createSourceCollectionOptions(name, defaults, options = {}) {
51
- return {
52
- id: name,
53
- getKey: (item) => item.id,
54
- schema: createSourceSchema(name, defaults),
55
- startSync: options.startSync,
56
- sync: { sync({ begin, write, commit, markReady, truncate }) {
57
- const rows = loadRows(name);
58
- begin();
59
- truncate();
60
- for (const row of rows) write({
61
- type: "insert",
62
- value: row
63
- });
64
- commit();
65
- markReady();
66
- } },
67
- onInsert: async ({ transaction }) => {
68
- await insertRows(name, transaction.mutations.map((mutation) => mutation.modified));
69
- },
70
- onUpdate: async ({ transaction }) => {
71
- await updateRows(name, transaction.mutations);
72
- },
73
- onDelete: async ({ transaction }) => {
74
- await deleteRows(name, transaction.mutations);
75
- }
76
- };
77
- }
78
- function createLinkCollectionOptions(names, nameSet, options = {}) {
79
- const schema = createLinkSchema();
80
- let syncBegin;
81
- let syncWrite;
82
- let syncCommit;
83
- const writeSyncedLink = (type, row) => {
84
- if (!syncBegin || !syncWrite || !syncCommit) return;
85
- syncBegin();
86
- syncWrite({
87
- type,
88
- value: row
89
- });
90
- syncCommit();
91
- };
92
- return {
93
- id: "silo-links",
94
- getKey: (item) => item.id,
95
- schema,
96
- startSync: options.startSync,
97
- sync: { sync({ begin, write, commit, markReady, truncate }) {
98
- syncBegin = begin;
99
- syncWrite = write;
100
- syncCommit = commit;
101
- const rows = loadLinkRows().map((row) => createLinkRow(names, row));
102
- begin();
103
- truncate();
104
- for (const row of rows) write({
105
- type: "insert",
106
- value: row
107
- });
108
- commit();
109
- markReady();
110
- } },
111
- onInsert: async ({ transaction }) => {
112
- for (const mutation of transaction.mutations) insertLinkRow(extractStoredLinkRow(mutation.modified));
113
- },
114
- onDelete: async ({ transaction }) => {
115
- for (const mutation of transaction.mutations) deleteLinkRow(String(mutation.key));
116
- },
117
- utils: {
118
- async link(collectionA, idA, collectionB, idB) {
119
- const row = createStoredLinkRow(nameSet, collectionA, idA, collectionB, idB);
120
- const exists = hasLinkRow(row.id);
121
- insertLinkRow(row);
122
- if (!exists) writeSyncedLink("insert", createLinkRow(names, row));
123
- },
124
- async unlink(collectionA, idA, collectionB, idB) {
125
- const row = createStoredLinkRow(nameSet, collectionA, idA, collectionB, idB);
126
- const exists = hasLinkRow(row.id);
127
- deleteLinkRow(row.id);
128
- if (exists) writeSyncedLink("delete", createLinkRow(names, row));
129
- },
130
- has(collectionA, idA, collectionB, idB) {
131
- return hasLinkRow(createStoredLinkRow(nameSet, collectionA, idA, collectionB, idB).id);
132
- }
133
- }
134
- };
135
- }
136
- function assertSourceName(name) {
137
- if (!sourceNamePattern.test(name)) throw new Error(`Source names must start with a letter and contain only letters, numbers, underscores, or hyphens. Received "${name}".`);
138
- }
139
- function assertStoreCollectionName(nameSet, name) {
140
- if (!nameSet.has(name)) throw new Error(`Store collection "${name}" is not registered.`);
141
- }
142
- function assertLinkCollectionName(nameSet, name) {
143
- if (!nameSet.has(name)) throw new Error(`Cannot link unknown collection "${name}".`);
144
- }
145
- function createStoredLinkRow(nameSet, collectionA, idA, collectionB, idB) {
146
- assertLinkCollectionName(nameSet, collectionA);
147
- assertLinkCollectionName(nameSet, collectionB);
148
- if (collectionA === collectionB) throw new Error(`Links between the same collection are not supported. Received "${collectionA}".`);
149
- const [firstCollection, firstId, secondCollection, secondId] = collectionA < collectionB ? [
150
- collectionA,
151
- idA,
152
- collectionB,
153
- idB
154
- ] : [
155
- collectionB,
156
- idB,
157
- collectionA,
158
- idA
159
- ];
160
- const collections = encodePair(firstCollection, secondCollection);
161
- const ids = encodePair(firstId, secondId);
162
- return {
163
- id: encodePair(collections, ids),
164
- collections,
165
- ids,
166
- createdAt: (/* @__PURE__ */ new Date()).toISOString()
167
- };
168
- }
169
- function createLinkRow(names, row) {
170
- const [firstCollection, secondCollection] = decodePair(row.collections);
171
- const [firstId, secondId] = decodePair(row.ids);
172
- const result = {
173
- id: row.id,
174
- collections: row.collections,
175
- ids: row.ids,
176
- createdAt: row.createdAt
177
- };
178
- for (const other of names) {
179
- const byCurrent = {};
180
- for (const current of names) {
181
- let id = null;
182
- if (other !== current) {
183
- if (current === firstCollection && other === secondCollection) id = firstId;
184
- else if (current === secondCollection && other === firstCollection) id = secondId;
185
- }
186
- byCurrent[current] = { id };
187
- }
188
- result[other] = byCurrent;
189
- }
190
- return result;
191
- }
192
- function extractStoredLinkRow(row) {
193
- if (!isRecord(row)) throw new Error("Expected a link row object.");
194
- if (typeof row.id !== "string" || typeof row.collections !== "string" || typeof row.ids !== "string" || typeof row.createdAt !== "string") throw new Error("Link rows must include string id, collections, ids, and createdAt fields.");
195
- return {
196
- id: row.id,
197
- collections: row.collections,
198
- ids: row.ids,
199
- createdAt: row.createdAt
200
- };
201
- }
202
- function encodePair(first, second) {
203
- return `${encodePart(first)}:${encodePart(second)}`;
204
- }
205
- function decodePair(value) {
206
- const parts = value.split(":");
207
- if (parts.length !== 2) throw new Error(`Invalid encoded link pair "${value}".`);
208
- return [decodePart(parts[0]), decodePart(parts[1])];
209
- }
210
- function encodePart(value) {
211
- return encodeURIComponent(value);
212
- }
213
- function decodePart(value) {
214
- return decodeURIComponent(value);
215
- }
216
- function assertFlatDefaults(sourceName, defaults) {
217
- for (const [field, defaultValue] of Object.entries(defaults)) {
218
- if (reservedDocumentFields.has(field)) throw new Error(`Source "${sourceName}" field "${field}" is reserved by Silo documents.`);
219
- if (!isFieldValue(resolveDefault(defaultValue))) throw new Error(`Source "${sourceName}" field "${field}" must default to a string, number, boolean, null, or a function returning one of those values.`);
220
- }
221
- }
222
- function createSourceSchema(sourceName, defaults) {
223
- return { "~standard": {
224
- version: 1,
225
- vendor: "silo",
226
- validate(value) {
227
- if (!isRecord(value)) return failure("Expected a flat source row object.");
228
- if (typeof value.id !== "string") return failure("Expected source document field \"id\" to be a string.", ["id"]);
229
- const inputData = isRecord(value.data) ? value.data : extractDocumentData(value);
230
- const data = {};
231
- for (const [field, fieldValue] of Object.entries(inputData)) {
232
- if (reservedDocumentFields.has(field)) return failure(`Source "${sourceName}" field "${field}" is reserved by Silo documents.`, ["data", field]);
233
- if (!isFieldValue(fieldValue)) return failure(`Source "${sourceName}" field "${field}" must be a string, number, boolean, or null.`, ["data", field]);
234
- data[field] = fieldValue;
235
- }
236
- for (const [field, defaultValue] of Object.entries(defaults)) {
237
- if (field in data) continue;
238
- data[field] = resolveDefault(defaultValue);
239
- }
240
- return { value: createDoc(value.id, data) };
241
- }
242
- } };
243
- }
244
- function createLinkSchema() {
245
- return { "~standard": {
246
- version: 1,
247
- vendor: "silo",
248
- validate(value) {
249
- try {
250
- extractStoredLinkRow(value);
251
- return { value };
252
- } catch (error) {
253
- return failure(error instanceof Error ? error.message : "Expected a link row.");
254
- }
255
- }
256
- } };
257
- }
258
- function createDoc(id, data) {
259
- const doc = {};
260
- Object.defineProperty(doc, "id", {
261
- value: id,
262
- enumerable: true,
263
- writable: false,
264
- configurable: false
265
- });
266
- for (const [field, value] of Object.entries(data)) Object.defineProperty(doc, field, {
267
- value,
268
- enumerable: true,
269
- writable: true,
270
- configurable: true
271
- });
272
- Object.defineProperty(doc, "data", {
273
- value() {
274
- return deletedDocs.has(this) ? null : extractDocumentData(this);
275
- },
276
- enumerable: true,
277
- writable: false,
278
- configurable: false
279
- });
280
- Object.defineProperty(doc, "set", {
281
- get() {
282
- return function setDocumentData(patch) {
283
- Object.assign(this, patch);
284
- };
285
- },
286
- enumerable: true,
287
- configurable: false
288
- });
289
- return doc;
290
- }
291
- function extractDocumentData(value) {
292
- if (!isRecord(value)) return {};
293
- const data = {};
294
- for (const [field, fieldValue] of Object.entries(value)) {
295
- if (reservedDocumentFields.has(field) || field.startsWith("$") || typeof fieldValue === "function") continue;
296
- if (isFieldValue(fieldValue)) data[field] = fieldValue;
297
- }
298
- return data;
299
- }
300
- function resolveDefault(value) {
301
- const resolved = typeof value === "function" ? value() : value;
302
- if (!isFieldValue(resolved)) throw new Error("Source defaults must resolve to a string, number, boolean, or null.");
303
- return resolved;
304
- }
305
- function isRecord(value) {
306
- return typeof value === "object" && value !== null && !Array.isArray(value);
307
- }
308
- function isFieldValue(value) {
309
- return typeof value === "string" || typeof value === "number" || typeof value === "boolean" || value === null;
310
- }
311
- function failure(message, path) {
312
- return { issues: [{
313
- message,
314
- path
315
- }] };
316
- }
317
- let database;
318
- function getDatabase() {
319
- if (!database) {
320
- database = (0, expo_sqlite.openDatabaseSync)("silo.db");
321
- database.execSync(`
322
- PRAGMA journal_mode = WAL;
323
-
324
- CREATE TABLE IF NOT EXISTS sources (
325
- source TEXT NOT NULL,
326
- id TEXT NOT NULL,
327
- data TEXT NOT NULL,
328
- createdAt TEXT NOT NULL,
329
- updatedAt TEXT NOT NULL,
330
- version INTEGER NOT NULL DEFAULT 1,
331
- PRIMARY KEY (source, id)
332
- );
333
-
334
- CREATE TABLE IF NOT EXISTS links (
335
- id TEXT PRIMARY KEY,
336
- collections TEXT NOT NULL,
337
- ids TEXT NOT NULL,
338
- createdAt TEXT NOT NULL
339
- );
340
-
341
- CREATE UNIQUE INDEX IF NOT EXISTS links_collections_ids_idx
342
- ON links(collections, ids);
343
-
344
- CREATE INDEX IF NOT EXISTS links_collections_idx
345
- ON links(collections);
346
- `);
347
- }
348
- return database;
349
- }
350
- function loadRows(sourceName) {
351
- return getDatabase().getAllSync(`SELECT id, data FROM sources WHERE source = ?`, [sourceName]).map((row) => createDoc(row.id, JSON.parse(row.data)));
352
- }
353
- function insertRows(sourceName, rows) {
354
- const db = getDatabase();
355
- const timestamp = (/* @__PURE__ */ new Date()).toISOString();
356
- db.withTransactionSync(() => {
357
- for (const row of rows) {
358
- const data = extractDocumentData(row);
359
- db.runSync(`INSERT INTO sources (source, id, data, createdAt, updatedAt, version)
360
- VALUES (?, ?, ?, ?, ?, 1)`, [
361
- sourceName,
362
- row.id,
363
- JSON.stringify(data),
364
- timestamp,
365
- timestamp
366
- ]);
367
- }
368
- });
369
- return Promise.resolve();
370
- }
371
- function updateRows(sourceName, mutations) {
372
- const db = getDatabase();
373
- const timestamp = (/* @__PURE__ */ new Date()).toISOString();
374
- db.withTransactionSync(() => {
375
- for (const mutation of mutations) {
376
- const data = extractDocumentData(mutation.modified);
377
- mutation.modified = createDoc(String(mutation.key), data);
378
- db.runSync(`UPDATE sources
379
- SET data = ?, updatedAt = ?, version = version + 1
380
- WHERE source = ? AND id = ?`, [
381
- JSON.stringify(data),
382
- timestamp,
383
- sourceName,
384
- String(mutation.key)
385
- ]);
386
- }
387
- });
388
- return Promise.resolve();
389
- }
390
- function deleteRows(sourceName, mutations) {
391
- const db = getDatabase();
392
- db.withTransactionSync(() => {
393
- for (const mutation of mutations) {
394
- if (mutation.original) deletedDocs.add(mutation.original);
395
- deletedDocs.add(mutation.modified);
396
- db.runSync(`DELETE FROM sources WHERE source = ? AND id = ?`, [sourceName, String(mutation.key)]);
397
- deleteLinksForSourceRow(sourceName, String(mutation.key));
398
- }
399
- });
400
- return Promise.resolve();
401
- }
402
- function loadLinkRows() {
403
- return getDatabase().getAllSync(`SELECT id, collections, ids, createdAt FROM links`);
404
- }
405
- function insertLinkRow(row) {
406
- getDatabase().runSync(`INSERT OR IGNORE INTO links (id, collections, ids, createdAt)
407
- VALUES (?, ?, ?, ?)`, [
408
- row.id,
409
- row.collections,
410
- row.ids,
411
- row.createdAt
412
- ]);
413
- }
414
- function deleteLinkRow(id) {
415
- getDatabase().runSync(`DELETE FROM links WHERE id = ?`, [id]);
416
- }
417
- function hasLinkRow(id) {
418
- return !!getDatabase().getFirstSync(`SELECT id FROM links WHERE id = ?`, [id]);
419
- }
420
- function deleteLinksForSourceRow(sourceName, id) {
421
- const rows = loadLinkRows();
422
- for (const row of rows) {
423
- const [firstCollection, secondCollection] = decodePair(row.collections);
424
- const [firstId, secondId] = decodePair(row.ids);
425
- if (firstCollection === sourceName && firstId === id || secondCollection === sourceName && secondId === id) deleteLinkRow(row.id);
426
- }
427
- }
10
+ const { createStore, source } = require_shared.createStoreApi(require_storage_native.storeStorage);
428
11
 
429
12
  //#endregion
430
13
  exports.createID = createID;
package/dist/store.d.cts CHANGED
@@ -1,61 +1,7 @@
1
- import { StandardSchemaV1 } from "@standard-schema/spec";
2
- import { CollectionConfig } from "@tanstack/react-db";
1
+ import { DefaultValue, Doc, DocumentData, FieldValue, LinkRow, LinkUtils, Source, SourceCollectionOptions, SourceDefaults, SourceInput, SourceRow, Store, StoreDefaults } from "./store/shared.cjs";
3
2
 
4
- //#region src/store/index.d.ts
5
- type FieldValue = string | number | boolean | null;
6
- type OptionalKeys<T extends object> = { [K in keyof T]-?: object extends Pick<T, K> ? K : never }[keyof T];
7
- type RequiredKeys<T extends object> = Exclude<keyof T, OptionalKeys<T>>;
8
- type InvalidDocumentKeys<T extends object> = { [K in keyof T]-?: Exclude<T[K], undefined> extends FieldValue ? never : K }[keyof T];
9
- type DocumentData<T extends object> = InvalidDocumentKeys<T> extends never ? T : never;
10
- type DefaultValue<T> = Exclude<T, undefined> | (() => Exclude<T, undefined>);
11
- type SourceDefaults<T extends object> = { [K in RequiredKeys<DocumentData<T>>]: DefaultValue<DocumentData<T>[K]> } & { [K in OptionalKeys<DocumentData<T>>]?: DefaultValue<DocumentData<T>[K]> };
12
- type SourceInput<T extends object> = {
13
- id: string;
14
- data: Partial<DocumentData<T>>;
15
- };
16
- type Doc<T extends object> = {
17
- readonly id: string;
18
- data(): DocumentData<T> | null;
19
- readonly set: (patch: Partial<DocumentData<T>>) => void;
20
- } & DocumentData<T>;
21
- type SourceRow<T extends object> = Doc<T>;
22
- type SourceCollectionOptions<T extends object> = {
23
- startSync?: boolean;
24
- };
25
- type StoreDefaults<TCollections extends Record<string, object>> = { [Name in keyof TCollections]: SourceDefaults<TCollections[Name]> };
26
- type LinkRow<TName extends string = string> = {
27
- readonly id: string;
28
- readonly collections: string;
29
- readonly ids: string;
30
- readonly createdAt: string;
31
- } & { readonly [Other in TName]: { readonly [Current in TName]: {
32
- readonly id: string | null;
33
- } } };
34
- type LinkUtils<TName extends string = string> = {
35
- link(collectionA: TName, idA: string, collectionB: TName, idB: string): Promise<void>;
36
- unlink(collectionA: TName, idA: string, collectionB: TName, idB: string): Promise<void>;
37
- has(collectionA: TName, idA: string, collectionB: TName, idB: string): boolean;
38
- };
39
- type Store<TCollections extends Record<string, object>> = {
40
- readonly names: ReadonlyArray<keyof TCollections & string>;
41
- collectionOptions<Name$1 extends keyof TCollections & string>(name: Name$1, options?: SourceCollectionOptions<TCollections[Name$1]>): CollectionConfig<SourceRow<TCollections[Name$1]>, string, StandardSchemaV1<any, SourceRow<TCollections[Name$1]>>> & {
42
- schema: StandardSchemaV1<any, SourceRow<TCollections[Name$1]>>;
43
- };
44
- linkCollectionOptions(options?: SourceCollectionOptions<LinkRow<keyof TCollections & string>>): CollectionConfig<LinkRow<keyof TCollections & string>, string, StandardSchemaV1<any, LinkRow<keyof TCollections & string>>, LinkUtils<keyof TCollections & string>> & {
45
- schema: StandardSchemaV1<any, LinkRow<keyof TCollections & string>>;
46
- utils: LinkUtils<keyof TCollections & string>;
47
- };
48
- };
49
- type Source<T extends object> = {
50
- readonly name: string;
51
- readonly defaults: SourceDefaults<T>;
52
- readonly schema: StandardSchemaV1<any, SourceRow<T>>;
53
- collectionOptions(options?: SourceCollectionOptions<T>): CollectionConfig<SourceRow<T>, string, StandardSchemaV1<any, SourceRow<T>>> & {
54
- schema: StandardSchemaV1<any, SourceRow<T>>;
55
- };
56
- };
3
+ //#region src/store/index.native.d.ts
57
4
  declare function createID(): string;
58
- declare function createStore<TCollections extends Record<string, object>>(defaults: StoreDefaults<TCollections>): Store<TCollections>;
59
- declare function source<T extends object>(name: string, defaults: SourceDefaults<T>): Source<T>;
5
+ declare const createStore: <TCollections extends Record<string, object>>(defaults: StoreDefaults<TCollections>) => Store<TCollections>, source: <T extends object>(name: string, defaults: SourceDefaults<T>) => Source<T>;
60
6
  //#endregion
61
- export { DefaultValue, Doc, DocumentData, FieldValue, LinkRow, LinkUtils, Source, SourceCollectionOptions, SourceDefaults, SourceInput, SourceRow, Store, StoreDefaults, createID, createStore, source };
7
+ export { type DefaultValue, type Doc, type DocumentData, type FieldValue, type LinkRow, type LinkUtils, type Source, type SourceCollectionOptions, type SourceDefaults, type SourceInput, type SourceRow, type Store, type StoreDefaults, createID, createStore, source };
package/dist/store.d.mts CHANGED
@@ -1,61 +1,7 @@
1
- import { StandardSchemaV1 } from "@standard-schema/spec";
2
- import { CollectionConfig } from "@tanstack/react-db";
1
+ import { DefaultValue, Doc, DocumentData, FieldValue, LinkRow, LinkUtils, Source, SourceCollectionOptions, SourceDefaults, SourceInput, SourceRow, Store, StoreDefaults } from "./store/shared.mjs";
3
2
 
4
- //#region src/store/index.d.ts
5
- type FieldValue = string | number | boolean | null;
6
- type OptionalKeys<T extends object> = { [K in keyof T]-?: object extends Pick<T, K> ? K : never }[keyof T];
7
- type RequiredKeys<T extends object> = Exclude<keyof T, OptionalKeys<T>>;
8
- type InvalidDocumentKeys<T extends object> = { [K in keyof T]-?: Exclude<T[K], undefined> extends FieldValue ? never : K }[keyof T];
9
- type DocumentData<T extends object> = InvalidDocumentKeys<T> extends never ? T : never;
10
- type DefaultValue<T> = Exclude<T, undefined> | (() => Exclude<T, undefined>);
11
- type SourceDefaults<T extends object> = { [K in RequiredKeys<DocumentData<T>>]: DefaultValue<DocumentData<T>[K]> } & { [K in OptionalKeys<DocumentData<T>>]?: DefaultValue<DocumentData<T>[K]> };
12
- type SourceInput<T extends object> = {
13
- id: string;
14
- data: Partial<DocumentData<T>>;
15
- };
16
- type Doc<T extends object> = {
17
- readonly id: string;
18
- data(): DocumentData<T> | null;
19
- readonly set: (patch: Partial<DocumentData<T>>) => void;
20
- } & DocumentData<T>;
21
- type SourceRow<T extends object> = Doc<T>;
22
- type SourceCollectionOptions<T extends object> = {
23
- startSync?: boolean;
24
- };
25
- type StoreDefaults<TCollections extends Record<string, object>> = { [Name in keyof TCollections]: SourceDefaults<TCollections[Name]> };
26
- type LinkRow<TName extends string = string> = {
27
- readonly id: string;
28
- readonly collections: string;
29
- readonly ids: string;
30
- readonly createdAt: string;
31
- } & { readonly [Other in TName]: { readonly [Current in TName]: {
32
- readonly id: string | null;
33
- } } };
34
- type LinkUtils<TName extends string = string> = {
35
- link(collectionA: TName, idA: string, collectionB: TName, idB: string): Promise<void>;
36
- unlink(collectionA: TName, idA: string, collectionB: TName, idB: string): Promise<void>;
37
- has(collectionA: TName, idA: string, collectionB: TName, idB: string): boolean;
38
- };
39
- type Store<TCollections extends Record<string, object>> = {
40
- readonly names: ReadonlyArray<keyof TCollections & string>;
41
- collectionOptions<Name$1 extends keyof TCollections & string>(name: Name$1, options?: SourceCollectionOptions<TCollections[Name$1]>): CollectionConfig<SourceRow<TCollections[Name$1]>, string, StandardSchemaV1<any, SourceRow<TCollections[Name$1]>>> & {
42
- schema: StandardSchemaV1<any, SourceRow<TCollections[Name$1]>>;
43
- };
44
- linkCollectionOptions(options?: SourceCollectionOptions<LinkRow<keyof TCollections & string>>): CollectionConfig<LinkRow<keyof TCollections & string>, string, StandardSchemaV1<any, LinkRow<keyof TCollections & string>>, LinkUtils<keyof TCollections & string>> & {
45
- schema: StandardSchemaV1<any, LinkRow<keyof TCollections & string>>;
46
- utils: LinkUtils<keyof TCollections & string>;
47
- };
48
- };
49
- type Source<T extends object> = {
50
- readonly name: string;
51
- readonly defaults: SourceDefaults<T>;
52
- readonly schema: StandardSchemaV1<any, SourceRow<T>>;
53
- collectionOptions(options?: SourceCollectionOptions<T>): CollectionConfig<SourceRow<T>, string, StandardSchemaV1<any, SourceRow<T>>> & {
54
- schema: StandardSchemaV1<any, SourceRow<T>>;
55
- };
56
- };
3
+ //#region src/store/index.native.d.ts
57
4
  declare function createID(): string;
58
- declare function createStore<TCollections extends Record<string, object>>(defaults: StoreDefaults<TCollections>): Store<TCollections>;
59
- declare function source<T extends object>(name: string, defaults: SourceDefaults<T>): Source<T>;
5
+ declare const createStore: <TCollections extends Record<string, object>>(defaults: StoreDefaults<TCollections>) => Store<TCollections>, source: <T extends object>(name: string, defaults: SourceDefaults<T>) => Source<T>;
60
6
  //#endregion
61
- export { DefaultValue, Doc, DocumentData, FieldValue, LinkRow, LinkUtils, Source, SourceCollectionOptions, SourceDefaults, SourceInput, SourceRow, Store, StoreDefaults, createID, createStore, source };
7
+ export { type DefaultValue, type Doc, type DocumentData, type FieldValue, type LinkRow, type LinkUtils, type Source, type SourceCollectionOptions, type SourceDefaults, type SourceInput, type SourceRow, type Store, type StoreDefaults, createID, createStore, source };