qubu 0.5.0 → 0.6.0

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 (42) hide show
  1. package/dist/codegen.mjs +1 -1
  2. package/dist/column-Da37jYSD.mjs +309 -0
  3. package/dist/column-r1Y4ivwt.mjs +327 -0
  4. package/dist/constraints-YGyNPQ_z.mjs +208 -0
  5. package/dist/core.mjs +3 -3
  6. package/dist/index-B2rZf3-2.d.mts +32 -0
  7. package/dist/index.mjs +9 -7
  8. package/dist/introspection.mjs +1 -1
  9. package/dist/{on-conflict-jPsl9l0K.mjs → on-conflict-DZQ85f1t.mjs} +3 -2
  10. package/dist/postgres.mjs +3 -3
  11. package/dist/registry-BRcUuazJ.mjs +256 -0
  12. package/dist/{relational-x3BDVX9e.mjs → relational-CxnLCqZQ.mjs} +2 -2
  13. package/dist/schema.mjs +6 -4
  14. package/dist/{sqlite-CsIUtZ2Q.mjs → serialize-BN07IK0v.mjs} +3 -317
  15. package/dist/serialize-CEIIlWhC.d.mts +66 -0
  16. package/dist/snapshot/mysql.d.mts +17 -0
  17. package/dist/snapshot/mysql.mjs +356 -0
  18. package/dist/snapshot/postgres.d.mts +17 -0
  19. package/dist/snapshot/postgres.mjs +237 -0
  20. package/dist/snapshot/sqlite.d.mts +25 -0
  21. package/dist/snapshot/sqlite.mjs +321 -0
  22. package/dist/{snapshot-BSraiLtH.mjs → snapshot-Xam8-q0j.mjs} +1 -1
  23. package/dist/snapshot.d.mts +3 -2
  24. package/dist/snapshot.mjs +2 -583
  25. package/dist/{source-C4Vmu5bb.mjs → source-SqrKWjFJ.mjs} +2 -1
  26. package/dist/sqlite.mjs +2 -2
  27. package/dist/{table-DLQ7YWth.mjs → table-BwflqeAj.mjs} +3 -2
  28. package/dist/{types-CTENnDh9.mjs → types-BIJsj2fJ.mjs} +3 -2
  29. package/dist/{value-BEEj_Ayd.mjs → value-D14I_XgL.mjs} +1 -1
  30. package/docs/dialects-and-execution.md +34 -0
  31. package/docs/migrations/index.md +7 -7
  32. package/docs/reference/mysql-snapshot.md +5 -5
  33. package/docs/reference/postgres-snapshot.md +7 -7
  34. package/docs/reference/sqlite-snapshot.md +5 -5
  35. package/docs/reference/supported-surface.md +40 -32
  36. package/docs/schema/code-generation.md +2 -2
  37. package/docs/schema/ddl-emission.md +1 -1
  38. package/docs/schema/snapshots.md +12 -0
  39. package/package.json +13 -1
  40. package/dist/column-DmazTL67.mjs +0 -633
  41. package/dist/index-C-480HmV.d.mts +0 -146
  42. package/dist/registry-BGqa05et.mjs +0 -461
@@ -111,6 +111,40 @@ const adapter: QueryAdapter = {
111
111
  }
112
112
  ```
113
113
 
114
+ ### Experimental cloud adapters
115
+
116
+ The workspace also publishes experimental adapters for HTTP and serverless
117
+ database clients. They are not production-ready and are intentionally outside
118
+ provider-backed CI until funded infrastructure and an external maintainer are
119
+ available.
120
+
121
+ | Package | Driver boundary | Advertised capabilities |
122
+ | ----------------------------------------- | -------------------------------------- | ---------------------------------------------------------------------------------------------------- |
123
+ | `@qubu/adapter-neon` | Neon HTTP PostgreSQL query function | PostgreSQL rendering, object rows, mutation counts, EXPLAIN, and fetch cancellation |
124
+ | `@qubu/adapter-planetscale` | PlanetScale serverless MySQL client | MySQL rendering, rows, mutation metadata, EXPLAIN, and provider transaction callbacks |
125
+ | `@qubu/adapter-aws-rds-data-api/postgres` | AWS RDS Data API for Aurora PostgreSQL | PostgreSQL rendering, typed Data API values/results, EXPLAIN, mutation metadata, and transaction IDs |
126
+ | `@qubu/adapter-aws-rds-data-api/mysql` | AWS RDS Data API for Aurora MySQL | MySQL rendering, typed Data API values/results, EXPLAIN, mutation metadata, and transaction IDs |
127
+
128
+ Neon HTTP and the RDS Data API do not advertise interactive streaming. The
129
+ RDS adapter uses named placeholders (`:p1`, `:p2`, ...), while PlanetScale uses
130
+ the MySQL dialect and the provider's own value formatting. Read each package's
131
+ README for its experimental boundary and required provider setup.
132
+
133
+ ### Official SQLite WASM adapter
134
+
135
+ `@qubu/adapter-sqlite-wasm` adapts the official SQLite WASM OO1
136
+ `sqlite3.oo1.DB` API for browser and web-worker use. It prepares one statement
137
+ per request, binds Qubu's ordered parameters, copies object rows, and finalizes
138
+ the statement in a `finally` block. SQLite's change count and generated row ID
139
+ are returned as mutation metadata when the request is a mutation.
140
+
141
+ The package does not create or terminate workers. Initialize the official
142
+ SQLite module inside a dedicated worker, construct the adapter around its
143
+ `sqlite3.oo1.DB`, and close the adapter before terminating that worker. The
144
+ browser build must serve the package's `sqlite3.wasm` asset beside the bundled
145
+ worker module; the combo runner's verified browser scenario demonstrates this
146
+ lifecycle.
147
+
114
148
  ### Decode schema-aware result values
115
149
 
116
150
  Portable boolean, date, timestamp, and JSON columns retain their logical
@@ -4,13 +4,13 @@
4
4
 
5
5
  Qubu migrations are split across explicit ownership boundaries:
6
6
 
7
- | Owner | Imports | Responsibility |
8
- | --------------- | -------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
9
- | `qubu` | `qubu/snapshot`, `qubu/diff`, `qubu/introspection` | Pure schema snapshots, comparison, and catalog mapping |
10
- | `@qubu/migrate` | Focused subpaths listed below | Pure planning and compilation plus portable artifacts, journals, execution, status, baselines, and bootstrap |
11
- | `@qubu/cli` | `@qubu/cli/config`, `@qubu/cli/repository` | Node.js configuration loading, artifact files, commands, output, and process exit behavior |
12
- | Adapter package | `@qubu/adapter-*/migration` | Pinned driver sessions, parameter binding, transactions, leases, locks, database journal storage, and failure classification |
13
- | Application | Its own configuration and deployment code | Credentials, environment selection, approval policy, custom SQL, rollout timing, and legacy cutover decisions |
7
+ | Owner | Imports | Responsibility |
8
+ | --------------- | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
9
+ | `qubu` | `qubu/snapshot`, `qubu/snapshot/postgres`, `qubu/snapshot/sqlite`, `qubu/snapshot/mysql`, `qubu/diff`, `qubu/introspection` | Pure schema snapshots, comparison, and catalog mapping |
10
+ | `@qubu/migrate` | Focused subpaths listed below | Pure planning and compilation plus portable artifacts, journals, execution, status, baselines, and bootstrap |
11
+ | `@qubu/cli` | `@qubu/cli/config`, `@qubu/cli/repository` | Node.js configuration loading, artifact files, commands, output, and process exit behavior |
12
+ | Adapter package | `@qubu/adapter-*/migration` | Pinned driver sessions, parameter binding, transactions, leases, locks, database journal storage, and failure classification |
13
+ | Application | Its own configuration and deployment code | Credentials, environment selection, approval policy, custom SQL, rollout timing, and legacy cutover decisions |
14
14
 
15
15
  The pre-alpha `qubu/migration` and `qubu/ddl` entrypoints no longer exist. Use
16
16
  the extracted compiler entrypoints:
@@ -4,13 +4,13 @@
4
4
  > MySQL facts Qubu v1 can encode and the combinations that need a later server
5
5
  > version or engine policy.
6
6
 
7
- Import the adapter from the optional snapshot entrypoint:
7
+ Import the adapter from the MySQL snapshot subpath:
8
8
 
9
9
  ```ts
10
- import { createMysqlSchemaSnapshot, tryCreateMysqlSchemaSnapshot } from "qubu/snapshot"
10
+ import { createSchemaSnapshot, tryCreateSchemaSnapshot } from "qubu/snapshot/mysql"
11
11
 
12
- const snapshot = createMysqlSchemaSnapshot(appSchema)
13
- const result = tryCreateMysqlSchemaSnapshot(appSchema)
12
+ const snapshot = createSchemaSnapshot(appSchema)
13
+ const result = tryCreateSchemaSnapshot(appSchema)
14
14
  ```
15
15
 
16
16
  The snapshot dialect is named `mysql`, the same name used by Qubu's query
@@ -38,7 +38,7 @@ Capability checks run before common traversal. Use the non-throwing form when
38
38
  a schema may include a MySQL engine or version-specific feature:
39
39
 
40
40
  ```ts
41
- const result = tryCreateMysqlSchemaSnapshot(appSchema)
41
+ const result = tryCreateSchemaSnapshot(appSchema)
42
42
  if (!result.ok) {
43
43
  for (const issue of result.diagnostics) {
44
44
  console.error(issue.path.join("."), issue.code, issue.message)
@@ -4,16 +4,16 @@
4
4
  > PostgreSQL facts Qubu v1 can encode and the cases that need a later server
5
5
  > version policy.
6
6
 
7
- Import the adapter from the optional snapshot entrypoint:
7
+ Import the adapter from the PostgreSQL snapshot subpath:
8
8
 
9
9
  ```ts
10
+ import { createSchemaSnapshot } from "qubu/snapshot"
10
11
  import {
11
- createSchemaSnapshot,
12
- createPostgresSchemaSnapshot,
12
+ createSchemaSnapshot as createPostgresSnapshot,
13
13
  postgresSnapshotAdapter,
14
- } from "qubu/snapshot"
14
+ } from "qubu/snapshot/postgres"
15
15
 
16
- const snapshot = createPostgresSchemaSnapshot(appSchema)
16
+ const snapshot = createPostgresSnapshot(appSchema)
17
17
  // Equivalent: createSchemaSnapshot(appSchema, { adapter: postgresSnapshotAdapter })
18
18
  ```
19
19
 
@@ -46,9 +46,9 @@ schema and application boundaries.
46
46
  Use the non-throwing form when a schema may contain a server-specific feature:
47
47
 
48
48
  ```ts
49
- import { tryCreatePostgresSchemaSnapshot } from "qubu/snapshot"
49
+ import { tryCreateSchemaSnapshot } from "qubu/snapshot/postgres"
50
50
 
51
- const result = tryCreatePostgresSchemaSnapshot(appSchema)
51
+ const result = tryCreateSchemaSnapshot(appSchema)
52
52
  if (!result.ok) {
53
53
  for (const issue of result.diagnostics) {
54
54
  console.error(issue.path.join("."), issue.code, issue.message)
@@ -2,13 +2,13 @@
2
2
 
3
3
  > Use this matrix to decide which SQLite schema facts Qubu v1 can serialize and which combinations must be diagnosed before a snapshot is written.
4
4
 
5
- Import the adapter from the optional snapshot entrypoint:
5
+ Import the adapter from the SQLite snapshot subpath:
6
6
 
7
7
  ```ts
8
- import { createSqliteSchemaSnapshot, tryCreateSqliteSchemaSnapshot } from "qubu/snapshot"
8
+ import { createSchemaSnapshot, tryCreateSchemaSnapshot } from "qubu/snapshot/sqlite"
9
9
 
10
- const snapshot = createSqliteSchemaSnapshot(appSchema)
11
- const result = tryCreateSqliteSchemaSnapshot(appSchema)
10
+ const snapshot = createSchemaSnapshot(appSchema)
11
+ const result = tryCreateSchemaSnapshot(appSchema)
12
12
  ```
13
13
 
14
14
  The snapshot dialect is `sqlite`, the same name used by Qubu's query dialect.
@@ -36,7 +36,7 @@ Capability checks run before common traversal. Use the non-throwing form when a
36
36
  schema may include a feature that depends on a SQLite version or table shape:
37
37
 
38
38
  ```ts
39
- const result = tryCreateSqliteSchemaSnapshot(appSchema)
39
+ const result = tryCreateSchemaSnapshot(appSchema)
40
40
  if (!result.ok) {
41
41
  for (const issue of result.diagnostics) {
42
42
  console.error(issue.path.join("."), issue.code, issue.message)
@@ -4,38 +4,46 @@
4
4
 
5
5
  ## Package entrypoints
6
6
 
7
- | Import | Kind | Use it for |
8
- | -------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------- |
9
- | `qubu` | Runtime | Ordinary query and schema definitions, reads, writes, SQL templates, rendering, EXPLAIN, and execution contracts |
10
- | `qubu/core` | Runtime | Fragment and rendering primitives, dialect construction, SQL types, and extension constructors |
11
- | `qubu/codegen` | Runtime | Deterministic machine-owned TypeScript schemas from complete, non-lossy introspection |
12
- | `qubu/diff` | Runtime | Canonical Snapshot v1 or v2 comparison, rename hints, suggestions, and safety diagnostics |
13
- | `qubu/introspection` | Runtime | Catalog readers, normalized catalogs, and mapping to Snapshot v1 or v2 |
14
- | `qubu/mysql` | Runtime | The MySQL query dialect policy |
15
- | `qubu/postgres` | Runtime | PostgreSQL query dialect helpers such as `postgresDialect()` and `ilike()` |
16
- | `qubu/schema` | Runtime | Advanced schema metadata, storage and constraint models, source models, and schema-expression extensions |
17
- | `qubu/snapshot` | Runtime | Canonical Snapshot v1 and v2 traversal, encoding, decoding, diagnostics, and fingerprints |
18
- | `qubu/sqlite` | Runtime | The SQLite query dialect policy and native SQLite column factories |
19
- | `qubu/vite` | Runtime | The optional `qubu()` Vite compiler hint |
20
- | `qubu/package.json` | JSON | The published package manifest |
21
- | `@qubu/migrate` | Runtime | Migration compiler format identity and shared plan types |
22
- | `@qubu/migrate/plan` | Runtime | Pure migration planning with dependencies, decisions, preconditions, and explicit custom SQL |
23
- | `@qubu/migrate/ddl` | Runtime | DDL preflight and deterministic PostgreSQL, SQLite, or MySQL emission from a migration plan |
24
- | `@qubu/migrate/artifact` | Runtime | Versioned programs, strict artifacts and baselines, canonical encoding, and SHA-256 integrity |
25
- | `@qubu/migrate/repository` | Runtime | Strict full-chain and journal-prefix verification |
26
- | `@qubu/migrate/journal` | Runtime | Storage-neutral journal records, transitions, validation, and reference storage |
27
- | `@qubu/migrate/executor` | Runtime | Portable execution, structured errors, checkpointing, and explicit reconciliation |
28
- | `@qubu/migrate/baseline` | Runtime | Strict live baseline verification and physical managed-schema comparison |
29
- | `@qubu/migrate/status` | Runtime | Pending chain, managed drift, unmanaged objects, interrupted attempts, and incompatible requirements |
30
- | `@qubu/migrate/bootstrap` | Runtime | Fresh SQLite schema planning through the normal diff, plan, and program compiler |
31
- | `@qubu/migrate/testing` | Runtime | Deterministic fake adapters, fault boundaries, and adapter conformance checks |
32
- | `@qubu/cli` | Runtime and CLI | `@alloc/cmd-ts` commands, typed config, filesystem repositories, stable output, and exit codes |
33
- | `@qubu/drizzle` | Runtime | Shared Drizzle conversion errors and dialect types |
34
- | `@qubu/drizzle/mysql` | Runtime | Runtime conversion from Qubu schemas to MySQL Drizzle tables |
35
- | `@qubu/drizzle/postgres` | Runtime | Runtime conversion from Qubu schemas to PostgreSQL Drizzle tables |
36
- | `@qubu/drizzle/sqlite` | Runtime | Runtime conversion from Qubu schemas to SQLite Drizzle tables |
37
- | `@qubu/better-auth` | Runtime | Better Auth schema derivation and native PostgreSQL, MySQL, and SQLite adapter behavior |
38
- | `qubu/globals` | TypeScript types | Opt-in ambient declarations for directive-bearing modules |
7
+ | Import | Kind | Use it for |
8
+ | ----------------------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------- |
9
+ | `qubu` | Runtime | Ordinary query and schema definitions, reads, writes, SQL templates, rendering, EXPLAIN, and execution contracts |
10
+ | `qubu/core` | Runtime | Fragment and rendering primitives, dialect construction, SQL types, and extension constructors |
11
+ | `qubu/codegen` | Runtime | Deterministic machine-owned TypeScript schemas from complete, non-lossy introspection |
12
+ | `qubu/diff` | Runtime | Canonical Snapshot v1 or v2 comparison, rename hints, suggestions, and safety diagnostics |
13
+ | `qubu/introspection` | Runtime | Catalog readers, normalized catalogs, and mapping to Snapshot v1 or v2 |
14
+ | `qubu/mysql` | Runtime | The MySQL query dialect policy |
15
+ | `qubu/postgres` | Runtime | PostgreSQL query dialect helpers such as `postgresDialect()` and `ilike()` |
16
+ | `qubu/schema` | Runtime | Advanced schema metadata, storage and constraint models, source models, and schema-expression extensions |
17
+ | `qubu/snapshot` | Runtime | Canonical Snapshot v1 and v2 traversal, encoding, decoding, diagnostics, and fingerprints |
18
+ | `qubu/snapshot/mysql` | Runtime | MySQL snapshot adapter, schema dialect, and convenience creators |
19
+ | `qubu/snapshot/postgres` | Runtime | PostgreSQL snapshot adapter, schema dialect, and convenience creators |
20
+ | `qubu/snapshot/sqlite` | Runtime | SQLite snapshot adapter, schema dialect, affinity helper, and convenience creators |
21
+ | `qubu/sqlite` | Runtime | The SQLite query dialect policy and native SQLite column factories |
22
+ | `qubu/vite` | Runtime | The optional `qubu()` Vite compiler hint |
23
+ | `qubu/package.json` | JSON | The published package manifest |
24
+ | `@qubu/migrate` | Runtime | Migration compiler format identity and shared plan types |
25
+ | `@qubu/migrate/plan` | Runtime | Pure migration planning with dependencies, decisions, preconditions, and explicit custom SQL |
26
+ | `@qubu/migrate/ddl` | Runtime | DDL preflight and deterministic PostgreSQL, SQLite, or MySQL emission from a migration plan |
27
+ | `@qubu/migrate/artifact` | Runtime | Versioned programs, strict artifacts and baselines, canonical encoding, and SHA-256 integrity |
28
+ | `@qubu/migrate/repository` | Runtime | Strict full-chain and journal-prefix verification |
29
+ | `@qubu/migrate/journal` | Runtime | Storage-neutral journal records, transitions, validation, and reference storage |
30
+ | `@qubu/migrate/executor` | Runtime | Portable execution, structured errors, checkpointing, and explicit reconciliation |
31
+ | `@qubu/migrate/baseline` | Runtime | Strict live baseline verification and physical managed-schema comparison |
32
+ | `@qubu/migrate/status` | Runtime | Pending chain, managed drift, unmanaged objects, interrupted attempts, and incompatible requirements |
33
+ | `@qubu/migrate/bootstrap` | Runtime | Fresh SQLite schema planning through the normal diff, plan, and program compiler |
34
+ | `@qubu/migrate/testing` | Runtime | Deterministic fake adapters, fault boundaries, and adapter conformance checks |
35
+ | `@qubu/cli` | Runtime and CLI | `@alloc/cmd-ts` commands, typed config, filesystem repositories, stable output, and exit codes |
36
+ | `@qubu/drizzle` | Runtime | Shared Drizzle conversion errors and dialect types |
37
+ | `@qubu/drizzle/mysql` | Runtime | Runtime conversion from Qubu schemas to MySQL Drizzle tables |
38
+ | `@qubu/drizzle/postgres` | Runtime | Runtime conversion from Qubu schemas to PostgreSQL Drizzle tables |
39
+ | `@qubu/drizzle/sqlite` | Runtime | Runtime conversion from Qubu schemas to SQLite Drizzle tables |
40
+ | `@qubu/better-auth` | Runtime | Better Auth schema derivation and native PostgreSQL, MySQL, and SQLite adapter behavior |
41
+ | `@qubu/adapter-neon` | Runtime | Experimental Neon HTTP PostgreSQL `QueryAdapter` behavior |
42
+ | `@qubu/adapter-planetscale` | Runtime | Experimental PlanetScale serverless MySQL `QueryAdapter` and transaction behavior |
43
+ | `@qubu/adapter-aws-rds-data-api/postgres` | Runtime | Experimental Aurora PostgreSQL AWS RDS Data API adapter behavior |
44
+ | `@qubu/adapter-aws-rds-data-api/mysql` | Runtime | Experimental Aurora MySQL AWS RDS Data API adapter behavior |
45
+ | `@qubu/adapter-sqlite-wasm` | Runtime | Official SQLite WASM OO1 `QueryAdapter` for browser and web-worker databases |
46
+ | `qubu/globals` | TypeScript types | Opt-in ambient declarations for directive-bearing modules |
39
47
 
40
48
  The package validator checks every declared entrypoint in each packed workspace
41
49
  package. Concrete dialect constructors live on their database subpaths. The
@@ -49,10 +49,10 @@ baseline for the next catalog read:
49
49
 
50
50
  ```ts
51
51
  import { mapCatalogToSnapshot } from "qubu/introspection"
52
- import { createSqliteSchemaSnapshot } from "qubu/snapshot"
52
+ import { createSchemaSnapshot } from "qubu/snapshot/sqlite"
53
53
  import { mainSchema } from "./schema.generated.ts"
54
54
 
55
- const previousSnapshot = createSqliteSchemaSnapshot(mainSchema)
55
+ const previousSnapshot = createSchemaSnapshot(mainSchema)
56
56
  const next = mapCatalogToSnapshot(nextCatalog, {
57
57
  namespace: "main",
58
58
  previousSnapshot,
@@ -9,7 +9,7 @@ plan returns diagnostics and no SQL.
9
9
 
10
10
  ```ts
11
11
  import { emitMigrationPlan } from "@qubu/migrate/ddl"
12
- import { postgresSchemaDialect } from "qubu/snapshot"
12
+ import { postgresSchemaDialect } from "qubu/snapshot/postgres"
13
13
 
14
14
  const result = emitMigrationPlan(plan, postgresSchemaDialect)
15
15
  if (!result.ok) {
@@ -65,6 +65,18 @@ envelope. A dialect adapter owns physical storage mapping, SQL literal and
65
65
  expression encoding, dialect extensions, capability checks, and any dialect
66
66
  naming policy. PostgreSQL, SQLite, and MySQL adapters can implement
67
67
  `SchemaSnapshotAdapter` without duplicating traversal or decoder rules.
68
+ The neutral API stays at `qubu/snapshot`; built-in dialect adapters have
69
+ dedicated subpaths so importing neutral snapshot utilities does not widen that
70
+ API:
71
+
72
+ ```ts
73
+ import { createSchemaSnapshot } from "qubu/snapshot"
74
+ import { createSchemaSnapshot as createPostgresSnapshot } from "qubu/snapshot/postgres"
75
+
76
+ const neutral = createSchemaSnapshot(appSchema)
77
+ const postgres = createPostgresSnapshot(appSchema)
78
+ ```
79
+
68
80
  The PostgreSQL adapter is documented in the [PostgreSQL snapshot support
69
81
  matrix](../reference/postgres-snapshot.md). Its schema dialect extends the
70
82
  `postgresql` query dialect, and snapshot metadata uses that same identity.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qubu",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/aleclarson/qubu"
@@ -48,6 +48,18 @@
48
48
  "types": "./dist/snapshot.d.mts",
49
49
  "import": "./dist/snapshot.mjs"
50
50
  },
51
+ "./snapshot/mysql": {
52
+ "types": "./dist/snapshot/mysql.d.mts",
53
+ "import": "./dist/snapshot/mysql.mjs"
54
+ },
55
+ "./snapshot/postgres": {
56
+ "types": "./dist/snapshot/postgres.d.mts",
57
+ "import": "./dist/snapshot/postgres.mjs"
58
+ },
59
+ "./snapshot/sqlite": {
60
+ "types": "./dist/snapshot/sqlite.d.mts",
61
+ "import": "./dist/snapshot/sqlite.mjs"
62
+ },
51
63
  "./sqlite": {
52
64
  "types": "./dist/sqlite.d.mts",
53
65
  "import": "./dist/sqlite.mjs"