@plyaz/types 1.20.0 → 1.21.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.
@@ -34,6 +34,11 @@ export interface BaseAdapter {
34
34
  * Tables not specified will default to 'id'
35
35
  */
36
36
  tableIdColumns?: Record<string, string>;
37
+ /**
38
+ * Include SQL statement in error messages for debugging
39
+ * @default true
40
+ */
41
+ showSqlInErrors?: boolean;
37
42
  }
38
43
  /**
39
44
  * Drizzle adapter configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.20.0",
3
+ "version": "1.21.0",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",