Skip to content

Commit

Permalink
ci: update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
loopingz committed Nov 14, 2023
1 parent 8af9fe6 commit 593103a
Show file tree
Hide file tree
Showing 2 changed files with 178 additions and 35 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ docs.log
docs.json
.DS_Store
pnpm-lock.yaml
.nx
212 changes: 177 additions & 35 deletions packages/postgres/webda.module.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,83 @@
"keepAlive": {
"type": "boolean"
},
"stream": {},
"stream": {
"type": "object",
"properties": {
"writable": {
"type": "boolean"
},
"writableEnded": {
"type": "boolean"
},
"writableFinished": {
"type": "boolean"
},
"writableHighWaterMark": {
"type": "number"
},
"writableLength": {
"type": "number"
},
"writableObjectMode": {
"type": "boolean"
},
"writableCorked": {
"type": "number"
},
"destroyed": {
"type": "boolean"
},
"readable": {
"type": "boolean"
},
"readableEncoding": {
"anyOf": [
{
"$ref": "#/definitions/BufferEncoding"
},
{
"type": "null"
}
]
},
"readableEnded": {
"type": "boolean"
},
"readableFlowing": {
"type": [
"boolean",
"null"
]
},
"readableHighWaterMark": {
"type": "number"
},
"readableLength": {
"type": "number"
},
"readableObjectMode": {
"type": "boolean"
}
},
"required": [
"destroyed",
"readable",
"readableEncoding",
"readableEnded",
"readableFlowing",
"readableHighWaterMark",
"readableLength",
"readableObjectMode",
"writable",
"writableCorked",
"writableEnded",
"writableFinished",
"writableHighWaterMark",
"writableLength",
"writableObjectMode"
]
},
"statement_timeout": {
"anyOf": [
{
Expand All @@ -133,6 +209,9 @@
}
]
},
"parseInputDatesAsUTC": {
"type": "boolean"
},
"ssl": {
"anyOf": [
{
Expand Down Expand Up @@ -1009,16 +1088,11 @@
"types": {
"type": "object",
"properties": {
"getTypeParser": {
"$comment": "(oid: number | TypeId) -> TypeParser<string, T | string>"
}
"getTypeParser": {}
},
"required": [
"getTypeParser"
]
},
"options": {
"type": "string"
}
}
},
Expand Down Expand Up @@ -1051,7 +1125,83 @@
"keepAlive": {
"type": "boolean"
},
"stream": {},
"stream": {
"type": "object",
"properties": {
"writable": {
"type": "boolean"
},
"writableEnded": {
"type": "boolean"
},
"writableFinished": {
"type": "boolean"
},
"writableHighWaterMark": {
"type": "number"
},
"writableLength": {
"type": "number"
},
"writableObjectMode": {
"type": "boolean"
},
"writableCorked": {
"type": "number"
},
"destroyed": {
"type": "boolean"
},
"readable": {
"type": "boolean"
},
"readableEncoding": {
"anyOf": [
{
"$ref": "#/definitions/BufferEncoding"
},
{
"type": "null"
}
]
},
"readableEnded": {
"type": "boolean"
},
"readableFlowing": {
"type": [
"boolean",
"null"
]
},
"readableHighWaterMark": {
"type": "number"
},
"readableLength": {
"type": "number"
},
"readableObjectMode": {
"type": "boolean"
}
},
"required": [
"destroyed",
"readable",
"readableEncoding",
"readableEnded",
"readableFlowing",
"readableHighWaterMark",
"readableLength",
"readableObjectMode",
"writable",
"writableCorked",
"writableEnded",
"writableFinished",
"writableHighWaterMark",
"writableLength",
"writableObjectMode"
]
},
"statement_timeout": {
"anyOf": [
{
Expand All @@ -1063,6 +1213,9 @@
}
]
},
"parseInputDatesAsUTC": {
"type": "boolean"
},
"ssl": {
"anyOf": [
{
Expand Down Expand Up @@ -1939,17 +2092,12 @@
"types": {
"type": "object",
"properties": {
"getTypeParser": {
"$comment": "(oid: number | TypeId) -> TypeParser<string, T | string>"
}
"getTypeParser": {}
},
"required": [
"getTypeParser"
]
},
"options": {
"type": "string"
},
"max": {
"type": "number"
},
Expand All @@ -1962,12 +2110,6 @@
"log": {},
"Promise": {
"$ref": "#/definitions/PromiseConstructorLike"
},
"allowExitOnIdle": {
"type": "boolean"
},
"maxUses": {
"type": "number"
}
}
}
Expand Down Expand Up @@ -2035,6 +2177,21 @@
},
"deprecated": "Store should not be exposed directly anymore\nYou should use the DomainService instead"
},
"BufferEncoding": {
"type": "string",
"enum": [
"ascii",
"utf8",
"utf-8",
"utf16le",
"ucs2",
"ucs-2",
"base64",
"latin1",
"binary",
"hex"
]
},
"ArrayBufferLike": {
"anyOf": [
{
Expand All @@ -2060,21 +2217,6 @@
"TLSv1"
]
},
"BufferEncoding": {
"type": "string",
"enum": [
"ascii",
"utf8",
"utf-8",
"utf16le",
"ucs2",
"ucs-2",
"base64",
"latin1",
"binary",
"hex"
]
},
"LookupFunction": {},
"PromiseConstructorLike": {}
},
Expand Down

0 comments on commit 593103a

Please sign in to comment.