@pgpmjs/types 2.14.0 → 2.14.1
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/esm/pgpm.js +5 -0
- package/package.json +2 -2
- package/pgpm.d.ts +13 -0
- package/pgpm.js +5 -0
package/esm/pgpm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpmjs/types",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PGPM types",
|
|
6
6
|
"main": "index.js",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"makage": "^0.1.10"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "cb4af2cf6c23dad24cd951c232d3e2006b81aa3d"
|
|
46
46
|
}
|
package/pgpm.d.ts
CHANGED
|
@@ -131,6 +131,17 @@ export interface MigrationOptions {
|
|
|
131
131
|
/** Code generation settings */
|
|
132
132
|
codegen?: CodegenOptions;
|
|
133
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* Error output formatting options for controlling verbosity of error messages
|
|
136
|
+
*/
|
|
137
|
+
export interface ErrorOutputOptions {
|
|
138
|
+
/** Maximum number of queries to show in error output (default: 30) */
|
|
139
|
+
queryHistoryLimit?: number;
|
|
140
|
+
/** Maximum total characters for error output before truncation (default: 10000) */
|
|
141
|
+
maxLength?: number;
|
|
142
|
+
/** When true, disables all limiting and shows full error output (default: false) */
|
|
143
|
+
verbose?: boolean;
|
|
144
|
+
}
|
|
134
145
|
/**
|
|
135
146
|
* Configuration for PGPM workspace
|
|
136
147
|
*/
|
|
@@ -189,6 +200,8 @@ export interface PgpmOptions {
|
|
|
189
200
|
migrations?: MigrationOptions;
|
|
190
201
|
/** Job system configuration */
|
|
191
202
|
jobs?: JobsConfig;
|
|
203
|
+
/** Error output formatting options */
|
|
204
|
+
errorOutput?: ErrorOutputOptions;
|
|
192
205
|
}
|
|
193
206
|
/**
|
|
194
207
|
* Default configuration values for PGPM framework
|