@postgrestools/cli-x86_64-windows-msvc 0.2.0 → 0.3.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/package.json +2 -2
- package/postgrestools.exe +0 -0
- package/schema.json +11 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postgrestools/cli-x86_64-windows-msvc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"license": "MIT or Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/supabase-community/
|
|
7
|
+
"url": "git+https://github.com/supabase-community/postgres-language-server.git",
|
|
8
8
|
"directory": "packages/@postgrestools/postgrestools"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
package/postgrestools.exe
CHANGED
|
Binary file
|
package/schema.json
CHANGED
|
@@ -73,6 +73,16 @@
|
|
|
73
73
|
"description": "The configuration of the database connection.",
|
|
74
74
|
"type": "object",
|
|
75
75
|
"properties": {
|
|
76
|
+
"allowStatementExecutionsAgainst": {
|
|
77
|
+
"anyOf": [
|
|
78
|
+
{
|
|
79
|
+
"$ref": "#/definitions/StringSet"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "null"
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
76
86
|
"connTimeoutSecs": {
|
|
77
87
|
"description": "The connection timeout in seconds.",
|
|
78
88
|
"type": [
|
|
@@ -276,7 +286,7 @@
|
|
|
276
286
|
]
|
|
277
287
|
},
|
|
278
288
|
"recommended": {
|
|
279
|
-
"description": "It enables the lint rules recommended by
|
|
289
|
+
"description": "It enables the lint rules recommended by Postgres Tools. `true` by default.",
|
|
280
290
|
"type": [
|
|
281
291
|
"boolean",
|
|
282
292
|
"null"
|