@beignet/provider-db-drizzle 0.0.30 → 0.0.32

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @beignet/provider-db-drizzle
2
2
 
3
+ ## 0.0.32
4
+
5
+ ### Patch Changes
6
+
7
+ - f759611: README and the shipped database-provider skill now reference
8
+ `beignet db schema sync`, the renamed form of `db schema generate`.
9
+
10
+ ## 0.0.31
11
+
3
12
  ## 0.0.30
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -110,7 +110,7 @@ idempotency, or outbox, generate the provider-owned table exports into the app
110
110
  schema:
111
111
 
112
112
  ```bash
113
- bun beignet db schema generate
113
+ bun beignet db schema sync
114
114
  ```
115
115
 
116
116
  That writes `infra/db/schema/beignet.ts` and adds
@@ -1118,7 +1118,7 @@ Each backend also exports canonical Beignet operational table definitions:
1118
1118
  - `@beignet/provider-db-drizzle/mysql/schema`
1119
1119
 
1120
1120
  Each schema subpath exports `auditLog`, `idempotencyRecords`, and
1121
- `outboxMessages`. Prefer `beignet db schema generate` in apps so the selected
1121
+ `outboxMessages`. Prefer `beignet db schema sync` in apps so the selected
1122
1122
  exports are re-exported from your app schema index before Drizzle Kit generates
1123
1123
  migrations.
1124
1124
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beignet/provider-db-drizzle",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "description": "Drizzle ORM database providers for Beignet — typed DbPort, unit of work, audit logs, outbox, and idempotency for SQLite (libSQL/Turso), Postgres, and MySQL.",
6
6
  "exports": {
@@ -40,7 +40,7 @@ When audit, idempotency, or outbox need provider-owned SQL tables, generate the
40
40
  Beignet table exports into the app schema, then run the normal migration flow:
41
41
 
42
42
  ```bash
43
- beignet db schema generate
43
+ beignet db schema sync
44
44
  beignet db generate
45
45
  beignet db migrate
46
46
  ```