n8n-nodes-base 0.220.1 → 0.221.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/dist/build.tsbuildinfo +1 -1
- package/dist/credentials/Postgres.credentials.js +115 -0
- package/dist/credentials/Postgres.credentials.js.map +1 -1
- package/dist/credentials/SshPrivateKey.credentials.js +1 -0
- package/dist/credentials/SshPrivateKey.credentials.js.map +1 -1
- package/dist/known/credentials.json +1 -0
- package/dist/nodes/ActionNetwork/GenericFunctions.d.ts +1 -1
- package/dist/nodes/Autopilot/GenericFunctions.js +2 -1
- package/dist/nodes/Autopilot/GenericFunctions.js.map +1 -1
- package/dist/nodes/Aws/Rekognition/GenericFunctions.js +2 -1
- package/dist/nodes/Aws/Rekognition/GenericFunctions.js.map +1 -1
- package/dist/nodes/Aws/S3/GenericFunctions.js +2 -1
- package/dist/nodes/Aws/S3/GenericFunctions.js.map +1 -1
- package/dist/nodes/ClickUp/GenericFunctions.js +2 -1
- package/dist/nodes/ClickUp/GenericFunctions.js.map +1 -1
- package/dist/nodes/Clockify/GenericFunctions.js +2 -1
- package/dist/nodes/Clockify/GenericFunctions.js.map +1 -1
- package/dist/nodes/CompareDatasets/CompareDatasets.node.js +42 -6
- package/dist/nodes/CompareDatasets/CompareDatasets.node.js.map +1 -1
- package/dist/nodes/CompareDatasets/GenericFunctions.js +60 -18
- package/dist/nodes/CompareDatasets/GenericFunctions.js.map +1 -1
- package/dist/nodes/CompareDatasets/test/node/workflow.compareDatasets.fuzzy.missing_keys.json +232 -0
- package/dist/nodes/CompareDatasets/test/node/workflow.compareDatasets.skipFields.json +897 -0
- package/dist/nodes/CrateDb/CrateDb.node.js +7 -7
- package/dist/nodes/CrateDb/CrateDb.node.js.map +1 -1
- package/dist/nodes/DateTime/DateTime.node.js +11 -1
- package/dist/nodes/DateTime/DateTime.node.js.map +1 -1
- package/dist/nodes/DateTime/test/node/workflow.luxonDateTime.json +165 -0
- package/dist/nodes/Filter/Filter.node.js +12 -5
- package/dist/nodes/Filter/Filter.node.js.map +1 -1
- package/dist/nodes/Github/SearchFunctions.js +1 -1
- package/dist/nodes/Github/SearchFunctions.js.map +1 -1
- package/dist/nodes/GoToWebinar/GenericFunctions.d.ts +1 -1
- package/dist/nodes/GoToWebinar/GenericFunctions.js +5 -4
- package/dist/nodes/GoToWebinar/GenericFunctions.js.map +1 -1
- package/dist/nodes/Google/Sheet/GoogleSheetsTrigger.utils.d.ts +7 -1
- package/dist/nodes/HelpScout/GenericFunctions.js +2 -1
- package/dist/nodes/HelpScout/GenericFunctions.js.map +1 -1
- package/dist/nodes/HtmlExtract/HtmlExtract.node.js +4 -2
- package/dist/nodes/HtmlExtract/HtmlExtract.node.js.map +1 -1
- package/dist/nodes/HtmlExtract/test/workflow.dotNotation.json +143 -0
- package/dist/nodes/HttpRequest/GenericFunctions.d.ts +9 -0
- package/dist/nodes/HttpRequest/GenericFunctions.js +18 -1
- package/dist/nodes/HttpRequest/GenericFunctions.js.map +1 -1
- package/dist/nodes/HttpRequest/HttpRequest.node.js +2 -1
- package/dist/nodes/HttpRequest/HttpRequest.node.js.map +1 -1
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js +55 -5
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js.map +1 -1
- package/dist/nodes/Hubspot/GenericFunctions.js +2 -1
- package/dist/nodes/Hubspot/GenericFunctions.js.map +1 -1
- package/dist/nodes/LinkedIn/GenericFunctions.js +16 -4
- package/dist/nodes/LinkedIn/GenericFunctions.js.map +1 -1
- package/dist/nodes/LinkedIn/LinkedIn.node.js +33 -77
- package/dist/nodes/LinkedIn/LinkedIn.node.js.map +1 -1
- package/dist/nodes/Microsoft/Teams/GenericFunctions.js +2 -1
- package/dist/nodes/Microsoft/Teams/GenericFunctions.js.map +1 -1
- package/dist/nodes/Notion/GenericFunctions.js +2 -1
- package/dist/nodes/Notion/GenericFunctions.js.map +1 -1
- package/dist/nodes/Orbit/GenericFunctions.js +2 -1
- package/dist/nodes/Orbit/GenericFunctions.js.map +1 -1
- package/dist/nodes/Postgres/Postgres.node.d.ts +3 -9
- package/dist/nodes/Postgres/Postgres.node.js +9 -319
- package/dist/nodes/Postgres/Postgres.node.js.map +1 -1
- package/dist/nodes/Postgres/v1/PostgresV1.node.d.ts +12 -0
- package/dist/nodes/Postgres/v1/PostgresV1.node.js +345 -0
- package/dist/nodes/Postgres/v1/PostgresV1.node.js.map +1 -0
- package/dist/nodes/Postgres/{Postgres.node.functions.js → v1/genericFunctions.js} +1 -1
- package/dist/nodes/Postgres/v1/genericFunctions.js.map +1 -0
- package/dist/nodes/Postgres/v2/PostgresV2.node.d.ts +13 -0
- package/dist/nodes/Postgres/v2/PostgresV2.node.js +20 -0
- package/dist/nodes/Postgres/v2/PostgresV2.node.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/common.descriptions.d.ts +7 -0
- package/dist/nodes/Postgres/v2/actions/common.descriptions.js +317 -0
- package/dist/nodes/Postgres/v2/actions/common.descriptions.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/Database.resource.d.ts +9 -0
- package/dist/nodes/Postgres/v2/actions/database/Database.resource.js +100 -0
- package/dist/nodes/Postgres/v2/actions/database/Database.resource.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.js +110 -0
- package/dist/nodes/Postgres/v2/actions/database/deleteTable.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js +60 -0
- package/dist/nodes/Postgres/v2/actions/database/executeQuery.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/insert.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/insert.operation.js +129 -0
- package/dist/nodes/Postgres/v2/actions/database/insert.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/select.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/select.operation.js +87 -0
- package/dist/nodes/Postgres/v2/actions/database/select.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/update.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/update.operation.js +164 -0
- package/dist/nodes/Postgres/v2/actions/database/update.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.d.ts +24 -0
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js +165 -0
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/node.type.d.ts +7 -0
- package/dist/nodes/Postgres/v2/actions/node.type.js +3 -0
- package/dist/nodes/Postgres/v2/actions/node.type.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/router.d.ts +2 -0
- package/dist/nodes/Postgres/v2/actions/router.js +65 -0
- package/dist/nodes/Postgres/v2/actions/router.js.map +1 -0
- package/dist/nodes/Postgres/v2/actions/versionDescription.d.ts +2 -0
- package/dist/nodes/Postgres/v2/actions/versionDescription.js +65 -0
- package/dist/nodes/Postgres/v2/actions/versionDescription.js.map +1 -0
- package/dist/nodes/Postgres/v2/helpers/interfaces.d.ts +37 -0
- package/dist/nodes/Postgres/v2/helpers/interfaces.js +3 -0
- package/dist/nodes/Postgres/v2/helpers/interfaces.js.map +1 -0
- package/dist/nodes/Postgres/v2/helpers/utils.d.ts +29 -0
- package/dist/nodes/Postgres/v2/helpers/utils.js +258 -0
- package/dist/nodes/Postgres/v2/helpers/utils.js.map +1 -0
- package/dist/nodes/Postgres/v2/methods/credentialTest.d.ts +2 -0
- package/dist/nodes/Postgres/v2/methods/credentialTest.js +47 -0
- package/dist/nodes/Postgres/v2/methods/credentialTest.js.map +1 -0
- package/dist/nodes/Postgres/v2/methods/index.d.ts +3 -0
- package/dist/nodes/Postgres/v2/methods/index.js +30 -0
- package/dist/nodes/Postgres/v2/methods/index.js.map +1 -0
- package/dist/nodes/Postgres/v2/methods/listSearch.d.ts +3 -0
- package/dist/nodes/Postgres/v2/methods/listSearch.js +42 -0
- package/dist/nodes/Postgres/v2/methods/listSearch.js.map +1 -0
- package/dist/nodes/Postgres/v2/methods/loadOptions.d.ts +4 -0
- package/dist/nodes/Postgres/v2/methods/loadOptions.js +40 -0
- package/dist/nodes/Postgres/v2/methods/loadOptions.js.map +1 -0
- package/dist/nodes/Postgres/v2/transport/index.d.ts +10 -0
- package/dist/nodes/Postgres/v2/transport/index.js +168 -0
- package/dist/nodes/Postgres/v2/transport/index.js.map +1 -0
- package/dist/nodes/QuestDb/QuestDb.node.js +3 -3
- package/dist/nodes/QuestDb/QuestDb.node.js.map +1 -1
- package/dist/nodes/Redis/Redis.node.js +35 -4
- package/dist/nodes/Redis/Redis.node.js.map +1 -1
- package/dist/nodes/S3/GenericFunctions.js +2 -1
- package/dist/nodes/S3/GenericFunctions.js.map +1 -1
- package/dist/nodes/Schedule/ScheduleTrigger.node.js +2 -2
- package/dist/nodes/Schedule/ScheduleTrigger.node.js.map +1 -1
- package/dist/nodes/SendGrid/GenericFunctions.js +2 -1
- package/dist/nodes/SendGrid/GenericFunctions.js.map +1 -1
- package/dist/nodes/SentryIo/GenericFunctions.js +2 -1
- package/dist/nodes/SentryIo/GenericFunctions.js.map +1 -1
- package/dist/nodes/ServiceNow/IncidentDescription.js +7 -0
- package/dist/nodes/ServiceNow/IncidentDescription.js.map +1 -1
- package/dist/nodes/Taiga/GenericFunctions.js +2 -1
- package/dist/nodes/Taiga/GenericFunctions.js.map +1 -1
- package/dist/nodes/TimescaleDb/TimescaleDb.node.js +4 -4
- package/dist/nodes/TimescaleDb/TimescaleDb.node.js.map +1 -1
- package/dist/nodes/Zendesk/GenericFunctions.js +2 -1
- package/dist/nodes/Zendesk/GenericFunctions.js.map +1 -1
- package/dist/types/credentials.json +2 -2
- package/dist/types/nodes.json +13 -11
- package/package.json +3 -3
- package/dist/nodes/Postgres/Postgres.node.functions.js.map +0 -1
- /package/dist/nodes/Postgres/{Postgres.node.functions.d.ts → v1/genericFunctions.d.ts} +0 -0
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
{"name":"pipedriveApi","displayName":"Pipedrive API","documentationUrl":"pipedrive","properties":[{"displayName":"API Token","name":"apiToken","type":"string","default":""}],"authenticate":{"type":"generic","properties":{"qs":{"api_token":"={{$credentials.apiToken}}"}}}},
|
|
209
209
|
{"name":"pipedriveOAuth2Api","extends":["oAuth2Api"],"displayName":"Pipedrive OAuth2 API","documentationUrl":"pipedrive","properties":[{"displayName":"Grant Type","name":"grantType","type":"hidden","default":"authorizationCode"},{"displayName":"Authorization URL","name":"authUrl","type":"hidden","default":"https://oauth.pipedrive.com/oauth/authorize","required":true},{"displayName":"Access Token URL","name":"accessTokenUrl","type":"hidden","default":"https://oauth.pipedrive.com/oauth/token","required":true},{"displayName":"Scope","name":"scope","type":"hidden","default":""},{"displayName":"Auth URI Query Parameters","name":"authQueryParameters","type":"hidden","default":""},{"displayName":"Authentication","name":"authentication","type":"hidden","default":"header"}]},
|
|
210
210
|
{"name":"plivoApi","displayName":"Plivo API","documentationUrl":"plivo","properties":[{"displayName":"Auth ID","name":"authId","type":"string","default":""},{"displayName":"Auth Token","name":"authToken","type":"string","default":""}]},
|
|
211
|
-
{"name":"postgres","displayName":"Postgres","documentationUrl":"postgres","properties":[{"displayName":"Host","name":"host","type":"string","default":"localhost"},{"displayName":"Database","name":"database","type":"string","default":"postgres"},{"displayName":"User","name":"user","type":"string","default":"postgres"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":""},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","default":false,"description":"Whether to connect even if SSL certificate validation is not possible"},{"displayName":"SSL","name":"ssl","type":"options","displayOptions":{"show":{"allowUnauthorizedCerts":[false]}},"options":[{"name":"Allow","value":"allow"},{"name":"Disable","value":"disable"},{"name":"Require","value":"require"},{"name":"Verify (Not Implemented)","value":"verify"},{"name":"Verify-Full (Not Implemented)","value":"verify-full"}],"default":"disable"},{"displayName":"Port","name":"port","type":"number","default":5432}]},
|
|
211
|
+
{"name":"postgres","displayName":"Postgres","documentationUrl":"postgres","properties":[{"displayName":"Host","name":"host","type":"string","default":"localhost"},{"displayName":"Database","name":"database","type":"string","default":"postgres"},{"displayName":"User","name":"user","type":"string","default":"postgres"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":""},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","default":false,"description":"Whether to connect even if SSL certificate validation is not possible"},{"displayName":"SSL","name":"ssl","type":"options","displayOptions":{"show":{"allowUnauthorizedCerts":[false]}},"options":[{"name":"Allow","value":"allow"},{"name":"Disable","value":"disable"},{"name":"Require","value":"require"},{"name":"Verify (Not Implemented)","value":"verify"},{"name":"Verify-Full (Not Implemented)","value":"verify-full"}],"default":"disable"},{"displayName":"Port","name":"port","type":"number","default":5432},{"displayName":"SSH Tunnel","name":"sshTunnel","type":"boolean","default":false},{"displayName":"SSH Authenticate with","name":"sshAuthenticateWith","type":"options","default":"password","options":[{"name":"Password","value":"password"},{"name":"Private Key","value":"privateKey"}],"displayOptions":{"show":{"sshTunnel":[true]}}},{"displayName":"SSH Host","name":"sshHost","type":"string","default":"localhost","displayOptions":{"show":{"sshTunnel":[true]}}},{"displayName":"SSH Port","name":"sshPort","type":"number","default":22,"displayOptions":{"show":{"sshTunnel":[true]}}},{"displayName":"SSH Postgres Port","name":"sshPostgresPort","type":"number","default":5432,"displayOptions":{"show":{"sshTunnel":[true]}}},{"displayName":"SSH User","name":"sshUser","type":"string","default":"root","displayOptions":{"show":{"sshTunnel":[true]}}},{"displayName":"SSH Password","name":"sshPassword","type":"string","typeOptions":{"password":true},"default":"","displayOptions":{"show":{"sshTunnel":[true],"sshAuthenticateWith":["password"]}}},{"displayName":"Private Key","name":"privateKey","type":"string","typeOptions":{"rows":4,"password":true},"default":"","displayOptions":{"show":{"sshTunnel":[true],"sshAuthenticateWith":["privateKey"]}}},{"displayName":"Passphrase","name":"passphrase","type":"string","default":"","description":"Passphase used to create the key, if no passphase was used leave empty","displayOptions":{"show":{"sshTunnel":[true],"sshAuthenticateWith":["privateKey"]}}}]},
|
|
212
212
|
{"name":"postHogApi","displayName":"PostHog API","documentationUrl":"postHog","properties":[{"displayName":"URL","name":"url","type":"string","default":"https://app.posthog.com"},{"displayName":"API Key","name":"apiKey","type":"string","typeOptions":{"password":true},"default":""}]},
|
|
213
213
|
{"name":"postmarkApi","displayName":"Postmark API","documentationUrl":"postmark","properties":[{"displayName":"Server API Token","name":"serverToken","type":"string","default":""}],"authenticate":{"type":"generic","properties":{"headers":{"X-Postmark-Server-Token":"={{$credentials.serverToken}}"}}},"test":{"request":{"baseURL":"https://api.postmarkapp.com","url":"/server","method":"GET"}}},
|
|
214
214
|
{"name":"profitWellApi","displayName":"ProfitWell API","documentationUrl":"profitWell","properties":[{"displayName":"API Token","name":"accessToken","type":"string","typeOptions":{"password":true},"default":"","description":"Your Private Token"}]},
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
{"name":"spontitApi","displayName":"Spontit API","documentationUrl":"spontit","properties":[{"displayName":"API Key","name":"apiKey","type":"string","typeOptions":{"password":true},"default":""},{"displayName":"Username","name":"username","type":"string","default":""}]},
|
|
254
254
|
{"name":"spotifyOAuth2Api","extends":["oAuth2Api"],"displayName":"Spotify OAuth2 API","documentationUrl":"spotify","properties":[{"displayName":"Spotify Server","name":"server","type":"hidden","default":"https://api.spotify.com/"},{"displayName":"Grant Type","name":"grantType","type":"hidden","default":"authorizationCode"},{"displayName":"Authorization URL","name":"authUrl","type":"hidden","default":"https://accounts.spotify.com/authorize","required":true},{"displayName":"Access Token URL","name":"accessTokenUrl","type":"hidden","default":"https://accounts.spotify.com/api/token","required":true},{"displayName":"Scope","name":"scope","type":"hidden","default":"user-read-playback-state playlist-read-collaborative user-modify-playback-state playlist-modify-public user-read-currently-playing playlist-read-private user-read-recently-played playlist-modify-private user-library-read user-follow-read"},{"displayName":"Auth URI Query Parameters","name":"authQueryParameters","type":"hidden","default":""},{"displayName":"Authentication","name":"authentication","type":"hidden","default":"header"}]},
|
|
255
255
|
{"name":"sshPassword","displayName":"SSH Password","documentationUrl":"ssh","properties":[{"displayName":"Host","name":"host","required":true,"type":"string","default":"","placeholder":"localhost"},{"displayName":"Port","name":"port","required":true,"type":"number","default":22},{"displayName":"Username","name":"username","type":"string","default":""},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":""}]},
|
|
256
|
-
{"name":"sshPrivateKey","displayName":"SSH Private Key","documentationUrl":"ssh","properties":[{"displayName":"Host","name":"host","required":true,"type":"string","default":"","placeholder":"localhost"},{"displayName":"Port","name":"port","required":true,"type":"number","default":22},{"displayName":"Username","name":"username","type":"string","default":""},{"displayName":"Private Key","name":"privateKey","type":"string","typeOptions":{"rows":4},"default":""},{"displayName":"Passphrase","name":"passphrase","type":"string","default":"","description":"Passphase used to create the key, if no passphase was used leave empty"}]},
|
|
256
|
+
{"name":"sshPrivateKey","displayName":"SSH Private Key","documentationUrl":"ssh","properties":[{"displayName":"Host","name":"host","required":true,"type":"string","default":"","placeholder":"localhost"},{"displayName":"Port","name":"port","required":true,"type":"number","default":22},{"displayName":"Username","name":"username","type":"string","default":""},{"displayName":"Private Key","name":"privateKey","type":"string","typeOptions":{"rows":4,"password":true},"default":""},{"displayName":"Passphrase","name":"passphrase","type":"string","default":"","description":"Passphase used to create the key, if no passphase was used leave empty"}]},
|
|
257
257
|
{"name":"stackbyApi","displayName":"Stackby API","documentationUrl":"stackby","properties":[{"displayName":"API Key","name":"apiKey","type":"string","typeOptions":{"password":true},"default":""}]},
|
|
258
258
|
{"name":"storyblokContentApi","displayName":"Storyblok Content API","documentationUrl":"storyblok","properties":[{"displayName":"API Key","name":"apiKey","type":"string","typeOptions":{"password":true},"default":""}]},
|
|
259
259
|
{"name":"storyblokManagementApi","displayName":"Storyblok Management API","documentationUrl":"storyblok","properties":[{"displayName":"Personal Access Token","name":"accessToken","type":"string","typeOptions":{"password":true},"default":""}]},
|