@ontrails/store 1.0.0-beta.14

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 (46) hide show
  1. package/.agents/notes/2026-04-04/handoff-202604032309-9e85a104.md +38 -0
  2. package/.turbo/turbo-build.log +1 -0
  3. package/.turbo/turbo-lint.log +3 -0
  4. package/.turbo/turbo-typecheck.log +1 -0
  5. package/CHANGELOG.md +12 -0
  6. package/README.md +213 -0
  7. package/dist/drizzle/index.d.ts +3 -0
  8. package/dist/drizzle/index.d.ts.map +1 -0
  9. package/dist/drizzle/index.js +2 -0
  10. package/dist/drizzle/index.js.map +1 -0
  11. package/dist/drizzle/runtime.d.ts +21 -0
  12. package/dist/drizzle/runtime.d.ts.map +1 -0
  13. package/dist/drizzle/runtime.js +458 -0
  14. package/dist/drizzle/runtime.js.map +1 -0
  15. package/dist/drizzle/schema.d.ts +15 -0
  16. package/dist/drizzle/schema.d.ts.map +1 -0
  17. package/dist/drizzle/schema.js +322 -0
  18. package/dist/drizzle/schema.js.map +1 -0
  19. package/dist/drizzle/types.d.ts +40 -0
  20. package/dist/drizzle/types.d.ts.map +1 -0
  21. package/dist/drizzle/types.js +2 -0
  22. package/dist/drizzle/types.js.map +1 -0
  23. package/dist/index.d.ts +3 -0
  24. package/dist/index.d.ts.map +1 -0
  25. package/dist/index.js +2 -0
  26. package/dist/index.js.map +1 -0
  27. package/dist/store.d.ts +26 -0
  28. package/dist/store.d.ts.map +1 -0
  29. package/dist/store.js +192 -0
  30. package/dist/store.js.map +1 -0
  31. package/dist/types.d.ts +224 -0
  32. package/dist/types.d.ts.map +1 -0
  33. package/dist/types.js +2 -0
  34. package/dist/types.js.map +1 -0
  35. package/package.json +29 -0
  36. package/src/__tests__/store.test.ts +333 -0
  37. package/src/drizzle/__tests__/drizzle.test.ts +469 -0
  38. package/src/drizzle/index.ts +17 -0
  39. package/src/drizzle/runtime.ts +853 -0
  40. package/src/drizzle/schema.ts +577 -0
  41. package/src/drizzle/types.ts +70 -0
  42. package/src/index.ts +39 -0
  43. package/src/store.ts +367 -0
  44. package/src/types.ts +361 -0
  45. package/tsconfig.json +9 -0
  46. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,577 @@
1
+ import { ValidationError } from '@ontrails/core';
2
+ import {
3
+ customType,
4
+ index,
5
+ integer,
6
+ real,
7
+ sqliteTable,
8
+ text,
9
+ } from 'drizzle-orm/sqlite-core';
10
+ import type {
11
+ AnySQLiteColumn,
12
+ AnySQLiteTable,
13
+ SQLiteColumnBuilderBase,
14
+ } from 'drizzle-orm/sqlite-core';
15
+ import type { z } from 'zod';
16
+
17
+ import type { AnyStoreDefinition, AnyStoreTable } from '../types.js';
18
+ import type { DrizzleStoreSchema } from './types.js';
19
+
20
+ const dateText = customType<{ data: Date; driverData: string }>({
21
+ dataType() {
22
+ return 'text';
23
+ },
24
+ fromDriver(value) {
25
+ return new Date(value);
26
+ },
27
+ toDriver(value) {
28
+ return value.toISOString();
29
+ },
30
+ });
31
+
32
+ interface InnerTypeDef {
33
+ readonly innerType: z.ZodType;
34
+ }
35
+
36
+ interface DefaultTypeDef extends InnerTypeDef {
37
+ readonly defaultValue?: unknown;
38
+ }
39
+
40
+ interface UnwrappedSchema {
41
+ readonly defaultValue?: unknown;
42
+ readonly nullable: boolean;
43
+ readonly optional: boolean;
44
+ readonly schema: z.ZodType;
45
+ }
46
+
47
+ interface SqliteFieldSpec {
48
+ readonly defaultValue?: unknown;
49
+ readonly enumValues?: readonly [string, ...string[]];
50
+ readonly kind: 'boolean' | 'date' | 'integer' | 'json' | 'real' | 'text';
51
+ readonly nullable: boolean;
52
+ readonly optional: boolean;
53
+ }
54
+
55
+ interface SqliteColumnBuilder {
56
+ default(value: unknown): SqliteColumnBuilder;
57
+ notNull(): SqliteColumnBuilder;
58
+ primaryKey(config?: {
59
+ readonly autoIncrement?: boolean;
60
+ }): SqliteColumnBuilder;
61
+ references(
62
+ ref: () => AnySQLiteColumn,
63
+ actions?: {
64
+ readonly onDelete?:
65
+ | 'cascade'
66
+ | 'restrict'
67
+ | 'set null'
68
+ | 'set default'
69
+ | 'no action';
70
+ readonly onUpdate?:
71
+ | 'cascade'
72
+ | 'restrict'
73
+ | 'set null'
74
+ | 'set default'
75
+ | 'no action';
76
+ }
77
+ ): SqliteColumnBuilder;
78
+ }
79
+
80
+ const defaultUnwrapState: Omit<UnwrappedSchema, 'schema'> = {
81
+ nullable: false,
82
+ optional: false,
83
+ };
84
+
85
+ /**
86
+ * The unwrap helpers below access Zod internal `._def` shapes (`def.type`,
87
+ * `def.checks`, `def.innerType`, `def.defaultValue`). These are not part of
88
+ * Zod's public API and may change across minor versions. The store package
89
+ * pins Zod through the workspace catalog — test `z.number().int()` mapping
90
+ * to `INTEGER` (see drizzle.test.ts) to catch regressions on Zod upgrades.
91
+ */
92
+ const unwrapInnerType = (schema: z.ZodType): z.ZodType => {
93
+ const { innerType } = schema.def as unknown as InnerTypeDef;
94
+ return innerType;
95
+ };
96
+
97
+ const unwrapDefaultLayer = (
98
+ schema: z.ZodType
99
+ ): {
100
+ readonly defaultValue?: unknown;
101
+ readonly schema: z.ZodType;
102
+ } => {
103
+ const { defaultValue } = schema.def as unknown as DefaultTypeDef;
104
+ return {
105
+ defaultValue,
106
+ schema: unwrapInnerType(schema),
107
+ };
108
+ };
109
+
110
+ const unwrapSchema = (
111
+ schema: z.ZodType,
112
+ state: Omit<UnwrappedSchema, 'schema'> = defaultUnwrapState
113
+ ): UnwrappedSchema => {
114
+ switch (schema.def.type) {
115
+ case 'default': {
116
+ const { defaultValue, schema: innerSchema } = unwrapDefaultLayer(schema);
117
+ return unwrapSchema(innerSchema, { ...state, defaultValue });
118
+ }
119
+ case 'nullable': {
120
+ return unwrapSchema(unwrapInnerType(schema), {
121
+ ...state,
122
+ nullable: true,
123
+ });
124
+ }
125
+ case 'optional': {
126
+ return unwrapSchema(unwrapInnerType(schema), {
127
+ ...state,
128
+ optional: true,
129
+ });
130
+ }
131
+ default: {
132
+ return {
133
+ ...state,
134
+ schema,
135
+ };
136
+ }
137
+ }
138
+ };
139
+
140
+ const isIntegerNumber = (schema: z.ZodType): boolean =>
141
+ schema.def.type === 'number' &&
142
+ ((schema.def.checks as readonly unknown[] | undefined) ?? []).some(
143
+ (check) => {
144
+ const { def } = check as { readonly def?: Record<string, unknown> };
145
+ return def?.['check'] === 'number_format';
146
+ }
147
+ );
148
+
149
+ const toEnumValues = (
150
+ entries: Record<string, string>
151
+ ): readonly [string, ...string[]] => {
152
+ const values = Object.values(entries);
153
+ if (values.length === 0) {
154
+ throw new ValidationError('Enum-backed store fields must declare values');
155
+ }
156
+
157
+ return values as unknown as readonly [string, ...string[]];
158
+ };
159
+
160
+ const fieldSpecBase = (
161
+ unwrapped: UnwrappedSchema
162
+ ): Omit<SqliteFieldSpec, 'kind'> => ({
163
+ ...(unwrapped.defaultValue === undefined
164
+ ? {}
165
+ : { defaultValue: unwrapped.defaultValue }),
166
+ nullable: unwrapped.nullable,
167
+ optional: unwrapped.optional,
168
+ });
169
+
170
+ const enumEntriesOf = (schema: z.ZodType): Record<string, string> => {
171
+ const { entries } = schema.def as unknown as {
172
+ readonly entries: Record<string, string>;
173
+ };
174
+ return entries;
175
+ };
176
+
177
+ const inferFieldKind = (
178
+ field: string,
179
+ schema: z.ZodType
180
+ ): SqliteFieldSpec['kind'] => {
181
+ switch (schema.def.type) {
182
+ case 'array':
183
+ case 'object': {
184
+ return 'json';
185
+ }
186
+ case 'boolean': {
187
+ return 'boolean';
188
+ }
189
+ case 'date': {
190
+ return 'date';
191
+ }
192
+ case 'enum': {
193
+ return 'text';
194
+ }
195
+ case 'number': {
196
+ return isIntegerNumber(schema) ? 'integer' : 'real';
197
+ }
198
+ case 'string': {
199
+ return 'text';
200
+ }
201
+ default: {
202
+ throw new ValidationError(
203
+ `Store field "${field}" uses unsupported schema type "${schema.def.type}" for the Drizzle SQLite connector`
204
+ );
205
+ }
206
+ }
207
+ };
208
+
209
+ export const describeField = (
210
+ field: string,
211
+ schema: z.ZodType
212
+ ): SqliteFieldSpec => {
213
+ const unwrapped = unwrapSchema(schema);
214
+ const base = fieldSpecBase(unwrapped);
215
+ const kind = inferFieldKind(field, unwrapped.schema);
216
+
217
+ return {
218
+ ...base,
219
+ ...(unwrapped.schema.def.type === 'enum'
220
+ ? { enumValues: toEnumValues(enumEntriesOf(unwrapped.schema)) }
221
+ : {}),
222
+ kind,
223
+ };
224
+ };
225
+
226
+ const quoteIdentifier = (value: string): string =>
227
+ `"${value.replaceAll('"', '""')}"`;
228
+
229
+ const quoteStringLiteral = (value: string): string =>
230
+ `'${value.replaceAll("'", "''")}'`;
231
+
232
+ const serializeJsonDefault = (value: object | readonly unknown[]): string =>
233
+ quoteStringLiteral(JSON.stringify(value));
234
+
235
+ const serializePrimitiveDefault = (
236
+ value: string | number | boolean
237
+ ): string | undefined => {
238
+ switch (typeof value) {
239
+ case 'boolean': {
240
+ return value ? '1' : '0';
241
+ }
242
+ case 'number': {
243
+ return Number.isFinite(value) ? `${value}` : undefined;
244
+ }
245
+ case 'string': {
246
+ return quoteStringLiteral(value);
247
+ }
248
+ default: {
249
+ return undefined;
250
+ }
251
+ }
252
+ };
253
+
254
+ const toSqlDefault = (value: unknown): string | undefined => {
255
+ if (value === undefined || value === null) {
256
+ return undefined;
257
+ }
258
+
259
+ if (value instanceof Date) {
260
+ return quoteStringLiteral(value.toISOString());
261
+ }
262
+
263
+ return typeof value === 'object'
264
+ ? serializeJsonDefault(value as object)
265
+ : serializePrimitiveDefault(value as string | number | boolean);
266
+ };
267
+
268
+ const toSqlType = (kind: SqliteFieldSpec['kind']): string => {
269
+ switch (kind) {
270
+ case 'boolean':
271
+ case 'integer': {
272
+ return 'INTEGER';
273
+ }
274
+ case 'real': {
275
+ return 'REAL';
276
+ }
277
+ case 'date':
278
+ case 'json':
279
+ case 'text': {
280
+ return 'TEXT';
281
+ }
282
+ default: {
283
+ return 'TEXT';
284
+ }
285
+ }
286
+ };
287
+
288
+ const createBaseColumnBuilder = (
289
+ field: string,
290
+ spec: SqliteFieldSpec
291
+ ): SqliteColumnBuilder => {
292
+ switch (spec.kind) {
293
+ case 'boolean': {
294
+ return integer(field, {
295
+ mode: 'boolean',
296
+ }) as unknown as SqliteColumnBuilder;
297
+ }
298
+ case 'date': {
299
+ return dateText(field) as unknown as SqliteColumnBuilder;
300
+ }
301
+ case 'integer': {
302
+ return integer(field) as unknown as SqliteColumnBuilder;
303
+ }
304
+ case 'json': {
305
+ return text(field, { mode: 'json' }) as unknown as SqliteColumnBuilder;
306
+ }
307
+ case 'real': {
308
+ return real(field) as unknown as SqliteColumnBuilder;
309
+ }
310
+ case 'text': {
311
+ return spec.enumValues === undefined
312
+ ? (text(field) as unknown as SqliteColumnBuilder)
313
+ : (text(field, {
314
+ enum: spec.enumValues,
315
+ }) as unknown as SqliteColumnBuilder);
316
+ }
317
+ default: {
318
+ throw new ValidationError(
319
+ `Store field "${field}" resolved to an unsupported Drizzle column builder`
320
+ );
321
+ }
322
+ }
323
+ };
324
+
325
+ const applyPrimaryKey = (
326
+ builder: SqliteColumnBuilder,
327
+ spec: SqliteFieldSpec,
328
+ isPrimaryKey: boolean,
329
+ isGenerated: boolean
330
+ ): SqliteColumnBuilder => {
331
+ if (!isPrimaryKey) {
332
+ return builder;
333
+ }
334
+
335
+ const shouldAutoIncrement =
336
+ isGenerated && spec.kind === 'integer' && spec.defaultValue === undefined;
337
+
338
+ return shouldAutoIncrement
339
+ ? builder.primaryKey({ autoIncrement: true })
340
+ : builder.primaryKey();
341
+ };
342
+
343
+ const applyCommonBuilderState = (
344
+ builder: SqliteColumnBuilder,
345
+ spec: SqliteFieldSpec,
346
+ notNull: boolean
347
+ ): SqliteColumnBuilder => {
348
+ let next = builder;
349
+
350
+ if (notNull) {
351
+ next = next.notNull();
352
+ }
353
+
354
+ if (toSqlDefault(spec.defaultValue) !== undefined) {
355
+ next = next.default(spec.defaultValue);
356
+ }
357
+
358
+ return next;
359
+ };
360
+
361
+ const resolveReferencedTable = (
362
+ definition: AnyStoreDefinition,
363
+ sourceTable: AnyStoreTable,
364
+ targetTableName: string
365
+ ): AnyStoreTable => {
366
+ const target = definition.tables[targetTableName];
367
+ if (target !== undefined) {
368
+ return target;
369
+ }
370
+
371
+ throw new ValidationError(
372
+ `Store table "${sourceTable.name}" references unknown table "${targetTableName}"`
373
+ );
374
+ };
375
+
376
+ const resolveReferencedColumn = (
377
+ tables: Record<string, AnySQLiteTable>,
378
+ targetTableName: string,
379
+ targetPrimaryKey: string
380
+ ): AnySQLiteColumn => {
381
+ const targetTable = tables[targetTableName];
382
+ if (targetTable === undefined) {
383
+ throw new ValidationError(
384
+ `Store table reference to "${targetTableName}" could not be resolved during Drizzle schema derivation`
385
+ );
386
+ }
387
+
388
+ return targetTable[
389
+ targetPrimaryKey as keyof typeof targetTable
390
+ ] as AnySQLiteColumn;
391
+ };
392
+
393
+ const applyReference = (
394
+ builder: SqliteColumnBuilder,
395
+ field: string,
396
+ table: AnyStoreTable,
397
+ definition: AnyStoreDefinition,
398
+ tables: Record<string, AnySQLiteTable>
399
+ ): SqliteColumnBuilder => {
400
+ const targetTableName = table.references[field];
401
+ if (targetTableName === undefined) {
402
+ return builder;
403
+ }
404
+
405
+ const target = resolveReferencedTable(definition, table, targetTableName);
406
+ return builder.references(
407
+ () => resolveReferencedColumn(tables, targetTableName, target.primaryKey),
408
+ { onDelete: 'restrict', onUpdate: 'cascade' }
409
+ );
410
+ };
411
+
412
+ const deriveColumnBuilder = (
413
+ field: string,
414
+ table: AnyStoreTable,
415
+ definition: AnyStoreDefinition,
416
+ tables: Record<string, AnySQLiteTable>
417
+ ): SqliteColumnBuilder => {
418
+ const schema = table.schema.shape[field] as z.ZodType;
419
+ const spec = describeField(field, schema);
420
+ const isPrimaryKey = field === table.primaryKey;
421
+ const isGenerated = table.generated.includes(field);
422
+ const baseBuilder = createBaseColumnBuilder(field, spec);
423
+ const keyedBuilder = applyPrimaryKey(
424
+ baseBuilder,
425
+ spec,
426
+ isPrimaryKey,
427
+ isGenerated
428
+ );
429
+ const finalizedBuilder = applyCommonBuilderState(
430
+ keyedBuilder,
431
+ spec,
432
+ !isPrimaryKey && !spec.optional && !spec.nullable
433
+ );
434
+
435
+ return applyReference(finalizedBuilder, field, table, definition, tables);
436
+ };
437
+
438
+ const appendPrimaryKeySql = (
439
+ parts: string[],
440
+ field: string,
441
+ table: AnyStoreTable,
442
+ spec: SqliteFieldSpec
443
+ ): void => {
444
+ const isPrimaryKey = field === table.primaryKey;
445
+ if (!isPrimaryKey) {
446
+ if (!spec.optional && !spec.nullable) {
447
+ parts.push('NOT NULL');
448
+ }
449
+ return;
450
+ }
451
+
452
+ parts.push('NOT NULL');
453
+ parts.push('PRIMARY KEY');
454
+ const isAutoIncrement =
455
+ table.generated.includes(field) &&
456
+ spec.kind === 'integer' &&
457
+ spec.defaultValue === undefined;
458
+
459
+ if (isAutoIncrement) {
460
+ parts.push('AUTOINCREMENT');
461
+ }
462
+ };
463
+
464
+ const appendDefaultSql = (parts: string[], spec: SqliteFieldSpec): void => {
465
+ const sqlDefault = toSqlDefault(spec.defaultValue);
466
+ if (sqlDefault !== undefined) {
467
+ parts.push(`DEFAULT ${sqlDefault}`);
468
+ }
469
+ };
470
+
471
+ const appendReferenceSql = (
472
+ parts: string[],
473
+ field: string,
474
+ table: AnyStoreTable,
475
+ definition: AnyStoreDefinition
476
+ ): void => {
477
+ const targetTableName = table.references[field];
478
+ if (targetTableName === undefined) {
479
+ return;
480
+ }
481
+
482
+ const target = resolveReferencedTable(definition, table, targetTableName);
483
+ parts.push(
484
+ `REFERENCES ${quoteIdentifier(targetTableName)} (${quoteIdentifier(target.primaryKey)}) ON DELETE RESTRICT ON UPDATE CASCADE`
485
+ );
486
+ };
487
+
488
+ const createColumnSqlParts = (
489
+ field: string,
490
+ schema: z.ZodType,
491
+ table: AnyStoreTable,
492
+ definition: AnyStoreDefinition
493
+ ): string[] => {
494
+ const spec = describeField(field, schema);
495
+ const parts = [quoteIdentifier(field), toSqlType(spec.kind)];
496
+ appendPrimaryKeySql(parts, field, table, spec);
497
+ appendDefaultSql(parts, spec);
498
+ appendReferenceSql(parts, field, table, definition);
499
+ return parts;
500
+ };
501
+
502
+ const createColumnSql = (
503
+ field: string,
504
+ schema: z.ZodType,
505
+ table: AnyStoreTable,
506
+ definition: AnyStoreDefinition
507
+ ): string =>
508
+ ` ${createColumnSqlParts(field, schema, table, definition).join(' ')}`;
509
+
510
+ const createTableSql = (
511
+ table: AnyStoreTable,
512
+ definition: AnyStoreDefinition
513
+ ): string => {
514
+ const columns = Object.entries(table.schema.shape).map(([field, schema]) =>
515
+ createColumnSql(field, schema as z.ZodType, table, definition)
516
+ );
517
+
518
+ return [
519
+ `CREATE TABLE IF NOT EXISTS ${quoteIdentifier(table.name)} (`,
520
+ columns.join(',\n'),
521
+ ')',
522
+ ].join('\n');
523
+ };
524
+
525
+ const createIndexSql = (table: AnyStoreTable, field: string): string =>
526
+ `CREATE INDEX IF NOT EXISTS ${quoteIdentifier(`${table.name}_${field}_idx`)} ON ${quoteIdentifier(table.name)} (${quoteIdentifier(field)})`;
527
+
528
+ const definedTables = (
529
+ definition: AnyStoreDefinition
530
+ ): readonly AnyStoreTable[] =>
531
+ definition.tableNames.flatMap((name) => {
532
+ const table = definition.tables[name];
533
+ return table === undefined ? [] : [table];
534
+ });
535
+
536
+ const createIndexStatements = (
537
+ definition: AnyStoreDefinition
538
+ ): readonly string[] =>
539
+ definedTables(definition).flatMap((table) =>
540
+ table.indexes.map((field) => createIndexSql(table, field))
541
+ );
542
+
543
+ export const deriveDrizzleTables = <TStore extends AnyStoreDefinition>(
544
+ definition: TStore
545
+ ): DrizzleStoreSchema<TStore> => {
546
+ const tables: Record<string, AnySQLiteTable> = {};
547
+
548
+ for (const table of definedTables(definition)) {
549
+ tables[table.name] = sqliteTable(
550
+ table.name,
551
+ Object.fromEntries(
552
+ Object.keys(table.schema.shape).map((field) => [
553
+ field,
554
+ deriveColumnBuilder(field, table, definition, tables),
555
+ ])
556
+ ) as unknown as Record<string, SQLiteColumnBuilderBase>,
557
+ (self) =>
558
+ table.indexes.map((field) =>
559
+ index(`${table.name}_${field}_idx`).on(
560
+ self[field as keyof typeof self] as AnySQLiteColumn
561
+ )
562
+ )
563
+ );
564
+ }
565
+
566
+ return Object.freeze(tables) as DrizzleStoreSchema<TStore>;
567
+ };
568
+
569
+ export const createSqliteSchemaStatements = (
570
+ definition: AnyStoreDefinition
571
+ ): readonly string[] =>
572
+ Object.freeze([
573
+ ...definedTables(definition).map((table) =>
574
+ createTableSql(table, definition)
575
+ ),
576
+ ...createIndexStatements(definition),
577
+ ]);
@@ -0,0 +1,70 @@
1
+ import type { Provision } from '@ontrails/core';
2
+ import type { BunSQLiteDatabase } from 'drizzle-orm/bun-sqlite';
3
+ import type { AnySQLiteTable } from 'drizzle-orm/sqlite-core';
4
+
5
+ import type {
6
+ AnyStoreDefinition,
7
+ FixtureInputOf,
8
+ ReadOnlyStoreConnection,
9
+ StoreAccessMode,
10
+ StoreConnection,
11
+ } from '../types.js';
12
+
13
+ export type DrizzleStoreSchema<TStore extends AnyStoreDefinition> = {
14
+ readonly [TName in keyof TStore['tables']]: AnySQLiteTable<{
15
+ name: Extract<TName, string>;
16
+ }>;
17
+ };
18
+
19
+ export interface DrizzleQueryContext<TStore extends AnyStoreDefinition> {
20
+ readonly drizzle: BunSQLiteDatabase<DrizzleStoreSchema<TStore>>;
21
+ readonly tables: DrizzleStoreSchema<TStore>;
22
+ }
23
+
24
+ export type DrizzleMockSeed<TStore extends AnyStoreDefinition> = Partial<{
25
+ readonly [TName in keyof TStore['tables']]: readonly FixtureInputOf<
26
+ TStore['tables'][TName]
27
+ >[];
28
+ }>;
29
+
30
+ export interface ConnectDrizzleOptions<TStore extends AnyStoreDefinition> {
31
+ readonly description?: string;
32
+ readonly id?: string;
33
+ readonly mockSeed?: DrizzleMockSeed<TStore>;
34
+ readonly url: string;
35
+ }
36
+
37
+ export interface ReadOnlyDrizzleOptions {
38
+ readonly description?: string;
39
+ readonly id?: string;
40
+ readonly url: string;
41
+ }
42
+
43
+ export type ReadOnlyDrizzleStoreConnection<TStore extends AnyStoreDefinition> =
44
+ ReadOnlyStoreConnection<TStore> & {
45
+ query<TResult>(
46
+ run: (ctx: DrizzleQueryContext<TStore>) => TResult | Promise<TResult>
47
+ ): Promise<Awaited<TResult>>;
48
+ };
49
+
50
+ export type DrizzleStoreConnection<TStore extends AnyStoreDefinition> =
51
+ StoreConnection<TStore> & ReadOnlyDrizzleStoreConnection<TStore>;
52
+
53
+ export interface DrizzleStoreProvisionShape<
54
+ TStore extends AnyStoreDefinition,
55
+ TConnection,
56
+ TAccess extends StoreAccessMode,
57
+ > {
58
+ readonly access: TAccess;
59
+ readonly store: TStore;
60
+ readonly tables: DrizzleStoreSchema<TStore>;
61
+ from(ctx: Parameters<Provision<TConnection>['from']>[0]): TConnection;
62
+ readonly kind: 'provision';
63
+ }
64
+
65
+ export type DrizzleStoreProvision<
66
+ TStore extends AnyStoreDefinition,
67
+ TConnection,
68
+ TAccess extends StoreAccessMode,
69
+ > = Provision<TConnection> &
70
+ DrizzleStoreProvisionShape<TStore, TConnection, TAccess>;
package/src/index.ts ADDED
@@ -0,0 +1,39 @@
1
+ export {
2
+ entitySchemaOf,
3
+ fixtureSchemaOf,
4
+ insertSchemaOf,
5
+ store,
6
+ updateSchemaOf,
7
+ } from './store.js';
8
+ export type {
9
+ AnyStoreDefinition,
10
+ AnyStoreTable,
11
+ EntityOf,
12
+ FiltersOf,
13
+ FixtureInputOf,
14
+ FixtureOf,
15
+ FixturesOfInput,
16
+ GeneratedFieldsOfInput,
17
+ GeneratedKeysOf,
18
+ IndexFieldsOfInput,
19
+ InsertOf,
20
+ PrimaryKeyOf,
21
+ ReadOnlyStoreConnection,
22
+ ReadOnlyStoreTableAccessor,
23
+ ReferencesOfInput,
24
+ StoreAccessMode,
25
+ StoreConnection,
26
+ StoreDefinition,
27
+ StoreFieldKey,
28
+ StoreFixtureInput,
29
+ StoreFixtureRow,
30
+ StoreIdentifierOf,
31
+ StoreListOptions,
32
+ StoreObjectSchema,
33
+ StoreSearchDefinition,
34
+ StoreTable,
35
+ StoreTableAccessor,
36
+ StoreTableInput,
37
+ StoreTablesInput,
38
+ UpdateOf,
39
+ } from './types.js';