@saasicat/adapter-drizzle 0.7.0 → 0.9.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.
package/dist/index.d.cts CHANGED
@@ -58,9 +58,10 @@ interface DrizzlePersistenceOptions {
58
58
  * });
59
59
  * ```
60
60
  *
61
- * Slices not shipped by this adapter (contracts, bundles, registration,
62
- * tenant-billing write ports) stay absent identical to adapter-prisma;
63
- * both adapters pass the same `@saasicat/persistence-testing` contract.
61
+ * Slices not shipped by this adapter (catalog editing, contracts, bundles,
62
+ * tenant-billing write ports) stay absent. Use the individual low-level
63
+ * modules for those areas until the Drizzle bundle gains matching adapters.
64
+ * Both adapters still pass the shared core persistence contract.
64
65
  */
65
66
  declare function drizzlePersistence(options: DrizzlePersistenceOptions): SaasicatPersistenceAdapter;
66
67
 
package/dist/index.d.ts CHANGED
@@ -58,9 +58,10 @@ interface DrizzlePersistenceOptions {
58
58
  * });
59
59
  * ```
60
60
  *
61
- * Slices not shipped by this adapter (contracts, bundles, registration,
62
- * tenant-billing write ports) stay absent identical to adapter-prisma;
63
- * both adapters pass the same `@saasicat/persistence-testing` contract.
61
+ * Slices not shipped by this adapter (catalog editing, contracts, bundles,
62
+ * tenant-billing write ports) stay absent. Use the individual low-level
63
+ * modules for those areas until the Drizzle bundle gains matching adapters.
64
+ * Both adapters still pass the shared core persistence contract.
64
65
  */
65
66
  declare function drizzlePersistence(options: DrizzlePersistenceOptions): SaasicatPersistenceAdapter;
66
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saasicat/adapter-drizzle",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "description": "Drizzle + PostgreSQL persistence adapter for SaaSicat: drizzlePersistence() bundle plus the individual adapters (MFA, audit, RLS bypass, transaction runner, subscription/plan-version/promo repositories, SuperAdmin bootstrap, plan-catalog sinks). Targets the canonical schema from @saasicat/spec and passes the same executable persistence contract as @saasicat/adapter-prisma.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -22,7 +22,7 @@
22
22
  "dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@saasicat/types": "^0.7.0"
25
+ "@saasicat/types": "^0.9.0"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@nestjs/common": "^11.0.0",
@@ -36,8 +36,8 @@
36
36
  "pg": "^8.22.0",
37
37
  "tsup": "^8.0.0",
38
38
  "typescript": "^6.0.0",
39
- "@saasicat/persistence-testing": "^0.7.0",
40
- "@saasicat/spec": "^0.7.0"
39
+ "@saasicat/persistence-testing": "^0.9.0",
40
+ "@saasicat/spec": "^0.9.0"
41
41
  },
42
42
  "license": "Apache-2.0",
43
43
  "author": "Taci Uelker",