diff --git a/packages/nodes-base/nodes/Postgres/Postgres.node.functions.ts b/packages/nodes-base/nodes/Postgres/Postgres.node.functions.ts index 8c46ef7e3a..6855217bd4 100644 --- a/packages/nodes-base/nodes/Postgres/Postgres.node.functions.ts +++ b/packages/nodes-base/nodes/Postgres/Postgres.node.functions.ts @@ -58,7 +58,7 @@ export function pgQuery( * @param {Function} getNodeParam The getter of the Node * @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance * @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection - * @param {input[]} input The Node's input data + * @param {INodeExecutionData[]} items The items to be inserted * @returns Promise> */ export async function pgInsert( @@ -102,7 +102,7 @@ export async function pgInsert( * @param {Function} getNodeParam The getter of the Node * @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance * @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection - * @param {input[]} input The Node's input data + * @param {INodeExecutionData[]} items The items to be updated * @returns Promise> */ export async function pgUpdate(