@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