@postgrestools/cli-x86_64-windows-msvc 0.12.0 → 0.13.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 +1 -1
- package/postgrestools.exe +0 -0
- package/schema.json +32 -0
package/package.json
CHANGED
package/postgrestools.exe
CHANGED
|
Binary file
|
package/schema.json
CHANGED
|
@@ -66,6 +66,17 @@
|
|
|
66
66
|
}
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
|
+
"plpgsqlCheck": {
|
|
70
|
+
"description": "The configuration for type checking",
|
|
71
|
+
"anyOf": [
|
|
72
|
+
{
|
|
73
|
+
"$ref": "#/definitions/PlPgSqlCheckConfiguration"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "null"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
69
80
|
"typecheck": {
|
|
70
81
|
"description": "The configuration for type checking",
|
|
71
82
|
"anyOf": [
|
|
@@ -261,6 +272,20 @@
|
|
|
261
272
|
},
|
|
262
273
|
"additionalProperties": false
|
|
263
274
|
},
|
|
275
|
+
"PlPgSqlCheckConfiguration": {
|
|
276
|
+
"description": "The configuration for type checking.",
|
|
277
|
+
"type": "object",
|
|
278
|
+
"properties": {
|
|
279
|
+
"enabled": {
|
|
280
|
+
"description": "if `false`, it disables the feature and pglpgsql_check won't be executed. `true` by default",
|
|
281
|
+
"type": [
|
|
282
|
+
"boolean",
|
|
283
|
+
"null"
|
|
284
|
+
]
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"additionalProperties": false
|
|
288
|
+
},
|
|
264
289
|
"RuleConfiguration": {
|
|
265
290
|
"anyOf": [
|
|
266
291
|
{
|
|
@@ -425,6 +450,13 @@
|
|
|
425
450
|
"description": "The configuration for type checking.",
|
|
426
451
|
"type": "object",
|
|
427
452
|
"properties": {
|
|
453
|
+
"enabled": {
|
|
454
|
+
"description": "if `false`, it disables the feature and the typechecker won't be executed. `true` by default",
|
|
455
|
+
"type": [
|
|
456
|
+
"boolean",
|
|
457
|
+
"null"
|
|
458
|
+
]
|
|
459
|
+
},
|
|
428
460
|
"searchPath": {
|
|
429
461
|
"description": "Default search path schemas for type checking. Can be a list of schema names or glob patterns like [\"public\", \"app_*\"]. If not specified, defaults to [\"public\"].",
|
|
430
462
|
"anyOf": [
|