eslint-plugin-slonik 1.5.1 → 1.6.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/README.md +1 -1
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/dist/shared/{eslint-plugin-slonik.1m1xlVmw.d.cts → eslint-plugin-slonik.uSZXmGoY.d.cts} +6 -0
- package/dist/shared/{eslint-plugin-slonik.1m1xlVmw.d.mts → eslint-plugin-slonik.uSZXmGoY.d.mts} +6 -0
- package/dist/shared/{eslint-plugin-slonik.1m1xlVmw.d.ts → eslint-plugin-slonik.uSZXmGoY.d.ts} +6 -0
- package/dist/workers/check-sql.worker.cjs +11 -4
- package/dist/workers/check-sql.worker.cjs.map +1 -1
- package/dist/workers/check-sql.worker.d.cts +1 -1
- package/dist/workers/check-sql.worker.d.mts +1 -1
- package/dist/workers/check-sql.worker.d.ts +1 -1
- package/dist/workers/check-sql.worker.mjs +11 -4
- package/dist/workers/check-sql.worker.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1119,6 +1119,11 @@ const zBaseSchema = z__default.object({
|
|
|
1119
1119
|
* Whether or not keep the connection alive. Change it only if you know what you're doing.
|
|
1120
1120
|
*/
|
|
1121
1121
|
keepAlive: z__default.boolean().optional(),
|
|
1122
|
+
/**
|
|
1123
|
+
* Connection timeout in milliseconds. If the connection is not established within this time,
|
|
1124
|
+
* an error will be thrown. Defaults to 5000 (5 seconds).
|
|
1125
|
+
*/
|
|
1126
|
+
connectionTimeout: z__default.number().optional(),
|
|
1122
1127
|
/**
|
|
1123
1128
|
* Override defaults
|
|
1124
1129
|
*/
|