(nodeData?: INodeData)
| 9 | } |
| 10 | |
| 11 | export function getPort(nodeData?: INodeData) { |
| 12 | return defaultChain(nodeData?.inputs?.port, process.env.POSTGRES_VECTORSTORE_PORT, '5432') |
| 13 | } |
| 14 | |
| 15 | export function getSSL(nodeData?: INodeData) { |
| 16 | return defaultChain(nodeData?.inputs?.ssl, process.env.POSTGRES_VECTORSTORE_SSL, false) |
no test coverage detected