mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Postgres Node): Options keepAlive and keepAliveInitialDelayMillis (#9067)
This commit is contained in:
@@ -35,3 +35,36 @@ export type QueriesRunner = (
|
||||
items: INodeExecutionData[],
|
||||
options: IDataObject,
|
||||
) => Promise<INodeExecutionData[]>;
|
||||
|
||||
export type PostgresNodeOptions = {
|
||||
nodeVersion?: number;
|
||||
operation?: string;
|
||||
cascade?: boolean;
|
||||
connectionTimeout?: number;
|
||||
delayClosingIdleConnection?: number;
|
||||
queryBatching?: QueryMode;
|
||||
queryReplacement?: string;
|
||||
outputColumns?: string[];
|
||||
largeNumbersOutput?: 'numbers' | 'text';
|
||||
skipOnConflict?: boolean;
|
||||
replaceEmptyStrings?: boolean;
|
||||
};
|
||||
|
||||
export type PostgresNodeCredentials = {
|
||||
sshAuthenticateWith: 'password' | 'privateKey';
|
||||
host: string;
|
||||
port: number;
|
||||
database: string;
|
||||
user: string;
|
||||
password: string;
|
||||
allowUnauthorizedCerts?: boolean;
|
||||
ssl?: 'disable' | 'allow' | 'require' | 'verify' | 'verify-full';
|
||||
sshTunnel?: boolean;
|
||||
sshHost?: string;
|
||||
sshPort?: number;
|
||||
sshPostgresPort?: number;
|
||||
sshUser?: string;
|
||||
sshPassword?: string;
|
||||
privateKey?: string;
|
||||
passphrase?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user