n8n-nodes-base 1.75.2 → 1.76.1
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/Aws.credentials.d.ts +1 -0
- package/dist/credentials/Aws.credentials.js +16 -0
- package/dist/credentials/Aws.credentials.js.map +1 -1
- package/dist/credentials/JenkinsApi.credentials.js +1 -1
- package/dist/credentials/JiraSoftwareServerPatApi.credentials.d.ts +9 -0
- package/dist/credentials/JiraSoftwareServerPatApi.credentials.js +42 -0
- package/dist/credentials/JiraSoftwareServerPatApi.credentials.js.map +1 -0
- package/dist/credentials/MicrosoftAzureMonitorOAuth2Api.credentials.d.ts +14 -0
- package/dist/credentials/MicrosoftAzureMonitorOAuth2Api.credentials.js +76 -0
- package/dist/credentials/MicrosoftAzureMonitorOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/MiroOAuth2Api.credentials.d.ts +14 -0
- package/dist/credentials/MiroOAuth2Api.credentials.js +60 -0
- package/dist/credentials/MiroOAuth2Api.credentials.js.map +1 -0
- package/dist/credentials/icons/Miro.svg +22 -0
- package/dist/known/credentials.json +22 -0
- package/dist/nodes/Disqus/Disqus.node.js +30 -50
- package/dist/nodes/Disqus/Disqus.node.js.map +1 -1
- package/dist/nodes/Disqus/GenericFunctions.js +6 -11
- package/dist/nodes/Disqus/GenericFunctions.js.map +1 -1
- package/dist/nodes/FileMaker/GenericFunctions.js +8 -23
- package/dist/nodes/FileMaker/GenericFunctions.js.map +1 -1
- package/dist/nodes/Flow/FlowTrigger.node.js +2 -7
- package/dist/nodes/Flow/FlowTrigger.node.js.map +1 -1
- package/dist/nodes/Form/common.descriptions.js +3 -11
- package/dist/nodes/Form/common.descriptions.js.map +1 -1
- package/dist/nodes/Form/interfaces.d.ts +1 -0
- package/dist/nodes/Form/interfaces.js.map +1 -1
- package/dist/nodes/Form/utils.d.ts +3 -1
- package/dist/nodes/Form/utils.js +46 -3
- package/dist/nodes/Form/utils.js.map +1 -1
- package/dist/nodes/GraphQL/GraphQL.node.js +35 -5
- package/dist/nodes/GraphQL/GraphQL.node.js.map +1 -1
- package/dist/nodes/HttpRequest/GenericFunctions.js +3 -0
- package/dist/nodes/HttpRequest/GenericFunctions.js.map +1 -1
- package/dist/nodes/ItemLists/V3/actions/router.js +6 -11
- package/dist/nodes/ItemLists/V3/actions/router.js.map +1 -1
- package/dist/nodes/Jira/GenericFunctions.js +5 -1
- package/dist/nodes/Jira/GenericFunctions.js.map +1 -1
- package/dist/nodes/Jira/Jira.node.js +38 -10
- package/dist/nodes/Jira/Jira.node.js.map +1 -1
- package/dist/nodes/Jira/JiraTrigger.node.js +14 -0
- package/dist/nodes/Jira/JiraTrigger.node.js.map +1 -1
- package/dist/nodes/Mailchimp/MailchimpTrigger.node.js +1 -7
- package/dist/nodes/Mailchimp/MailchimpTrigger.node.js.map +1 -1
- package/dist/nodes/PayPal/PayPalTrigger.node.js +2 -14
- package/dist/nodes/PayPal/PayPalTrigger.node.js.map +1 -1
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js +3 -2
- package/dist/nodes/Postgres/v2/actions/database/upsert.operation.js.map +1 -1
- package/dist/nodes/Stripe/StripeTrigger.node.js +1 -7
- package/dist/nodes/Stripe/StripeTrigger.node.js.map +1 -1
- package/dist/nodes/Webflow/V2/actions/router.js +6 -11
- package/dist/nodes/Webflow/V2/actions/router.js.map +1 -1
- package/dist/types/credentials.json +5 -2
- package/dist/types/nodes.json +11 -11
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-base",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.76.1",
|
|
4
4
|
"description": "Base nodes of n8n",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
8
|
+
"LICENSE.md",
|
|
9
|
+
"LICENSE_EE.md"
|
|
10
10
|
],
|
|
11
11
|
"n8n": {
|
|
12
12
|
"credentials": [
|
|
@@ -171,6 +171,7 @@
|
|
|
171
171
|
"dist/credentials/JenkinsApi.credentials.js",
|
|
172
172
|
"dist/credentials/JiraSoftwareCloudApi.credentials.js",
|
|
173
173
|
"dist/credentials/JiraSoftwareServerApi.credentials.js",
|
|
174
|
+
"dist/credentials/JiraSoftwareServerPatApi.credentials.js",
|
|
174
175
|
"dist/credentials/JotFormApi.credentials.js",
|
|
175
176
|
"dist/credentials/JwtAuth.credentials.js",
|
|
176
177
|
"dist/credentials/Kafka.credentials.js",
|
|
@@ -207,6 +208,7 @@
|
|
|
207
208
|
"dist/credentials/MetabaseApi.credentials.js",
|
|
208
209
|
"dist/credentials/MessageBirdApi.credentials.js",
|
|
209
210
|
"dist/credentials/MetabaseApi.credentials.js",
|
|
211
|
+
"dist/credentials/MicrosoftAzureMonitorOAuth2Api.credentials.js",
|
|
210
212
|
"dist/credentials/MicrosoftDynamicsOAuth2Api.credentials.js",
|
|
211
213
|
"dist/credentials/MicrosoftEntraOAuth2Api.credentials.js",
|
|
212
214
|
"dist/credentials/MicrosoftExcelOAuth2Api.credentials.js",
|
|
@@ -220,6 +222,7 @@
|
|
|
220
222
|
"dist/credentials/MicrosoftToDoOAuth2Api.credentials.js",
|
|
221
223
|
"dist/credentials/MindeeInvoiceApi.credentials.js",
|
|
222
224
|
"dist/credentials/MindeeReceiptApi.credentials.js",
|
|
225
|
+
"dist/credentials/MiroOAuth2Api.credentials.js",
|
|
223
226
|
"dist/credentials/MispApi.credentials.js",
|
|
224
227
|
"dist/credentials/MistApi.credentials.js",
|
|
225
228
|
"dist/credentials/MoceanApi.credentials.js",
|
|
@@ -830,13 +833,14 @@
|
|
|
830
833
|
"@types/nodemailer": "^6.4.14",
|
|
831
834
|
"@types/promise-ftp": "^1.3.4",
|
|
832
835
|
"@types/rfc2047": "^2.0.1",
|
|
836
|
+
"@types/sanitize-html": "^2.11.0",
|
|
833
837
|
"@types/showdown": "^1.9.4",
|
|
834
838
|
"@types/snowflake-sdk": "^1.6.24",
|
|
835
839
|
"@types/ssh2-sftp-client": "^5.1.0",
|
|
836
840
|
"@types/uuid": "^10.0.0",
|
|
837
841
|
"@types/xml2js": "^0.4.14",
|
|
838
842
|
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
839
|
-
"n8n-core": "1.
|
|
843
|
+
"n8n-core": "1.76.2"
|
|
840
844
|
},
|
|
841
845
|
"dependencies": {
|
|
842
846
|
"@aws-sdk/client-sso-oidc": "3.666.0",
|
|
@@ -891,6 +895,7 @@
|
|
|
891
895
|
"rhea": "1.0.24",
|
|
892
896
|
"rrule": "2.8.1",
|
|
893
897
|
"rss-parser": "3.13.0",
|
|
898
|
+
"sanitize-html": "2.12.1",
|
|
894
899
|
"semver": "7.5.4",
|
|
895
900
|
"showdown": "2.1.0",
|
|
896
901
|
"simple-git": "3.17.0",
|
|
@@ -901,10 +906,10 @@
|
|
|
901
906
|
"uuid": "10.0.0",
|
|
902
907
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
|
|
903
908
|
"xml2js": "0.6.2",
|
|
904
|
-
"@n8n/config": "1.
|
|
909
|
+
"@n8n/config": "1.26.0",
|
|
905
910
|
"@n8n/di": "0.3.0",
|
|
906
|
-
"
|
|
907
|
-
"n8n
|
|
911
|
+
"n8n-workflow": "1.75.1",
|
|
912
|
+
"@n8n/imap": "0.8.0"
|
|
908
913
|
},
|
|
909
914
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
910
915
|
"homepage": "https://n8n.io",
|