@n8n-as-code/skills 2.2.2 → 2.2.3

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.
@@ -1,7 +1,7 @@
1
1
  {
2
- "generatedAt": "2026-05-22T19:03:21.495Z",
2
+ "generatedAt": "2026-05-29T11:26:55.853Z",
3
3
  "n8nVersion": "unknown",
4
- "sourceFileCount": 430,
4
+ "sourceFileCount": 434,
5
5
  "scanDirectories": [
6
6
  "/home/runner/work/n8n-as-code/n8n-as-code/.n8n-cache/packages/nodes-base/dist/credentials",
7
7
  "/home/runner/work/n8n-as-code/n8n-as-code/.n8n-cache/packages/@n8n/nodes-langchain/dist/credentials"
@@ -2684,6 +2684,26 @@
2684
2684
  "name": "authentication",
2685
2685
  "type": "hidden",
2686
2686
  "default": "body"
2687
+ },
2688
+ {
2689
+ "displayName": "Primary Signature Key",
2690
+ "name": "signingKeyPrimary",
2691
+ "type": "string",
2692
+ "typeOptions": {
2693
+ "password": true
2694
+ },
2695
+ "default": "",
2696
+ "description": "Used to verify the authenticity of webhook requests. Find it in the Box Developer Console under your app's Webhooks tab > Manage signature keys."
2697
+ },
2698
+ {
2699
+ "displayName": "Secondary Signature Key",
2700
+ "name": "signingKeySecondary",
2701
+ "type": "string",
2702
+ "typeOptions": {
2703
+ "password": true
2704
+ },
2705
+ "default": "",
2706
+ "description": "Used to verify the authenticity of webhook requests during key rotation. Find it in the Box Developer Console under your app's Webhooks tab > Manage signature keys."
2687
2707
  }
2688
2708
  ],
2689
2709
  "source": "n8n-cache",
@@ -4129,6 +4149,38 @@
4129
4149
  "password": true
4130
4150
  },
4131
4151
  "default": ""
4152
+ },
4153
+ {
4154
+ "displayName": "Encryption Passphrase",
4155
+ "name": "encryptionPassphrase",
4156
+ "type": "string",
4157
+ "description": "Passphrase for symmetric Encrypt/Decrypt. Use 16+ random characters or a strong passphrase generated by a password manager.",
4158
+ "typeOptions": {
4159
+ "password": true
4160
+ },
4161
+ "default": ""
4162
+ },
4163
+ {
4164
+ "displayName": "Encryption Public Key",
4165
+ "name": "encryptionPublicKey",
4166
+ "type": "string",
4167
+ "description": "RSA public key (PEM, SPKI format) used by Encrypt in asymmetric mode. RSA-OAEP-SHA256 can only encrypt small payloads (~190 bytes with a 2048-bit key); use symmetric mode for larger data.",
4168
+ "typeOptions": {
4169
+ "rows": 4,
4170
+ "password": true
4171
+ },
4172
+ "default": ""
4173
+ },
4174
+ {
4175
+ "displayName": "Encryption Private Key",
4176
+ "name": "encryptionPrivateKey",
4177
+ "type": "string",
4178
+ "description": "RSA private key (PEM, PKCS#8 format) used by Decrypt in asymmetric mode",
4179
+ "typeOptions": {
4180
+ "rows": 4,
4181
+ "password": true
4182
+ },
4183
+ "default": ""
4132
4184
  }
4133
4185
  ],
4134
4186
  "source": "n8n-cache",
@@ -5621,6 +5673,101 @@
5621
5673
  }
5622
5674
  ]
5623
5675
  },
5676
+ {
5677
+ "typeName": "facebookGraphApiOAuth2Api",
5678
+ "displayName": "Facebook Graph OAuth2 API",
5679
+ "documentationUrl": "facebookgraph",
5680
+ "properties": [
5681
+ {
5682
+ "displayName": "Grant Type",
5683
+ "name": "grantType",
5684
+ "type": "hidden",
5685
+ "default": "authorizationCode"
5686
+ },
5687
+ {
5688
+ "displayName": "Authorization URL",
5689
+ "name": "authUrl",
5690
+ "type": "hidden",
5691
+ "default": "https://www.facebook.com/v25.0/dialog/oauth",
5692
+ "required": true
5693
+ },
5694
+ {
5695
+ "displayName": "Access Token URL",
5696
+ "name": "accessTokenUrl",
5697
+ "type": "hidden",
5698
+ "default": "https://graph.facebook.com/v25.0/oauth/access_token",
5699
+ "required": true
5700
+ },
5701
+ {
5702
+ "displayName": "Auth URI Query Parameters",
5703
+ "name": "authQueryParameters",
5704
+ "type": "hidden",
5705
+ "default": ""
5706
+ },
5707
+ {
5708
+ "displayName": "Authentication",
5709
+ "name": "authentication",
5710
+ "type": "hidden",
5711
+ "default": "header"
5712
+ },
5713
+ {
5714
+ "displayName": "Custom Scopes",
5715
+ "name": "customScopes",
5716
+ "type": "boolean",
5717
+ "default": false,
5718
+ "description": "Whether to define custom OAuth2 scopes instead of the defaults"
5719
+ },
5720
+ {
5721
+ "displayName": "The default scopes needed for the node to work are already set. If you change these the node may not function correctly.",
5722
+ "name": "customScopesNotice",
5723
+ "type": "notice",
5724
+ "default": "",
5725
+ "displayOptions": {
5726
+ "show": {
5727
+ "customScopes": [
5728
+ true
5729
+ ]
5730
+ }
5731
+ }
5732
+ },
5733
+ {
5734
+ "displayName": "Enabled Scopes",
5735
+ "name": "enabledScopes",
5736
+ "type": "string",
5737
+ "displayOptions": {
5738
+ "show": {
5739
+ "customScopes": [
5740
+ true
5741
+ ]
5742
+ }
5743
+ },
5744
+ "default": "public_profile email pages_show_list pages_read_engagement pages_read_user_content pages_manage_metadata pages_manage_posts business_management",
5745
+ "description": "Space-separated list of OAuth2 scopes to request"
5746
+ },
5747
+ {
5748
+ "displayName": "Scope",
5749
+ "name": "scope",
5750
+ "type": "hidden",
5751
+ "default": "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"public_profile email pages_show_list pages_read_engagement pages_read_user_content pages_manage_metadata pages_manage_posts business_management\"}}"
5752
+ }
5753
+ ],
5754
+ "source": "n8n-cache",
5755
+ "sourcePath": "/.n8n-cache/packages/nodes-base/dist/credentials/FacebookGraphApiOAuth2Api.credentials.js",
5756
+ "usedByNodes": [
5757
+ {
5758
+ "nodeName": "facebookGraphApi",
5759
+ "nodeType": "n8n-nodes-base.facebookGraphApi",
5760
+ "nodeDisplayName": "Facebook Graph API",
5761
+ "required": true
5762
+ },
5763
+ {
5764
+ "nodeName": "facebookGraphApiTool",
5765
+ "nodeType": "n8n-nodes-base.facebookGraphApiTool",
5766
+ "nodeDisplayName": "Facebook Graph API Tool",
5767
+ "required": true
5768
+ }
5769
+ ]
5770
+ },
5624
5771
  {
5625
5772
  "typeName": "facebookGraphAppApi",
5626
5773
  "displayName": "Facebook Graph API (App)",
@@ -5648,6 +5795,33 @@
5648
5795
  }
5649
5796
  ]
5650
5797
  },
5798
+ {
5799
+ "typeName": "facebookGraphAppOAuth2Api",
5800
+ "displayName": "Facebook Graph (App) OAuth2 API",
5801
+ "documentationUrl": "facebookapp",
5802
+ "properties": [
5803
+ {
5804
+ "displayName": "App Secret",
5805
+ "name": "appSecret",
5806
+ "type": "string",
5807
+ "typeOptions": {
5808
+ "password": true
5809
+ },
5810
+ "default": "",
5811
+ "description": "(Optional) When set, the node will verify incoming webhook payloads for added security"
5812
+ }
5813
+ ],
5814
+ "source": "n8n-cache",
5815
+ "sourcePath": "/.n8n-cache/packages/nodes-base/dist/credentials/FacebookGraphAppOAuth2Api.credentials.js",
5816
+ "usedByNodes": [
5817
+ {
5818
+ "nodeName": "facebookTrigger",
5819
+ "nodeType": "n8n-nodes-base.facebookTrigger",
5820
+ "nodeDisplayName": "Facebook Trigger",
5821
+ "required": true
5822
+ }
5823
+ ]
5824
+ },
5651
5825
  {
5652
5826
  "typeName": "facebookLeadAdsOAuth2Api",
5653
5827
  "displayName": "Facebook Lead Ads OAuth2 API",
@@ -8850,7 +9024,7 @@
8850
9024
  "resolvableField": true
8851
9025
  },
8852
9026
  {
8853
- "displayName": "This credential uses the \"Authorization\" header. To use a custom header, use a \"Custom Auth\" credential instead",
9027
+ "displayName": "This credential uses the \"Authorization\" header. To use a custom header, use a \"Header Auth\" credential instead",
8854
9028
  "name": "useCustomAuth",
8855
9029
  "type": "notice",
8856
9030
  "default": ""
@@ -11055,6 +11229,12 @@
11055
11229
  "displayName": "LinkedIn OAuth2 API",
11056
11230
  "documentationUrl": "linkedin",
11057
11231
  "properties": [
11232
+ {
11233
+ "displayName": "Standard LinkedIn apps issue access tokens valid for 60 days and do not return a refresh token. You will need to reconnect this credential when the token expires. Automatic token refresh requires <a href=\"https://learn.microsoft.com/en-us/linkedin/marketing/\" target=\"_blank\">Marketing Developer Platform</a> access from LinkedIn.",
11234
+ "name": "standardAuthNotice",
11235
+ "type": "notice",
11236
+ "default": ""
11237
+ },
11058
11238
  {
11059
11239
  "displayName": "Grant Type",
11060
11240
  "name": "grantType",
@@ -14487,14 +14667,16 @@
14487
14667
  "typeOptions": {
14488
14668
  "password": true
14489
14669
  },
14490
- "default": ""
14670
+ "default": "",
14671
+ "required": true
14491
14672
  },
14492
14673
  {
14493
14674
  "displayName": "Host",
14494
14675
  "name": "host",
14495
14676
  "type": "string",
14496
14677
  "default": "",
14497
- "placeholder": "http(s)://localhost:8080"
14678
+ "placeholder": "https://app.nocodb.com",
14679
+ "required": true
14498
14680
  }
14499
14681
  ],
14500
14682
  "source": "n8n-cache",
@@ -14657,6 +14839,42 @@
14657
14839
  }
14658
14840
  ]
14659
14841
  },
14842
+ {
14843
+ "typeName": "nvidiaApi",
14844
+ "displayName": "NVIDIA Nemotron",
14845
+ "documentationUrl": "nvidia",
14846
+ "properties": [
14847
+ {
14848
+ "displayName": "Base URL",
14849
+ "name": "url",
14850
+ "type": "string",
14851
+ "required": true,
14852
+ "default": "https://integrate.api.nvidia.com/v1",
14853
+ "description": "Use the default for build.nvidia.com cloud, or change it to point at a self-hosted NIM container (e.g. http://localhost:8000/v1)"
14854
+ },
14855
+ {
14856
+ "displayName": "API Key",
14857
+ "name": "apiKey",
14858
+ "type": "string",
14859
+ "typeOptions": {
14860
+ "password": true
14861
+ },
14862
+ "required": false,
14863
+ "default": "",
14864
+ "description": "Required for build.nvidia.com cloud. Leave blank for a self-hosted NIM that does not require authentication"
14865
+ }
14866
+ ],
14867
+ "source": "n8n-cache",
14868
+ "sourcePath": "/.n8n-cache/packages/@n8n/nodes-langchain/dist/credentials/NvidiaApi.credentials.js",
14869
+ "usedByNodes": [
14870
+ {
14871
+ "nodeName": "lmChatNvidia",
14872
+ "nodeType": "@n8n/n8n-nodes-langchain.lmChatNvidia",
14873
+ "nodeDisplayName": "NVIDIA Nemotron Chat Model",
14874
+ "required": true
14875
+ }
14876
+ ]
14877
+ },
14660
14878
  {
14661
14879
  "typeName": "oAuth1Api",
14662
14880
  "displayName": "OAuth1 API",
@@ -21300,6 +21518,137 @@
21300
21518
  }
21301
21519
  ]
21302
21520
  },
21521
+ {
21522
+ "typeName": "snowflakeOAuth2Api",
21523
+ "displayName": "Snowflake OAuth2 API",
21524
+ "documentationUrl": "snowflake",
21525
+ "properties": [
21526
+ {
21527
+ "displayName": "Account",
21528
+ "name": "account",
21529
+ "type": "string",
21530
+ "default": "",
21531
+ "required": true,
21532
+ "description": "Your Snowflake account identifier (e.g. <code>xy12345</code> or <code>xy12345.us-east-1</code>). Used to construct the OAuth2 authorization and token URLs."
21533
+ },
21534
+ {
21535
+ "displayName": "Database",
21536
+ "name": "database",
21537
+ "type": "string",
21538
+ "default": "",
21539
+ "description": "Specify the database you want to use after creating the connection"
21540
+ },
21541
+ {
21542
+ "displayName": "Warehouse",
21543
+ "name": "warehouse",
21544
+ "type": "string",
21545
+ "default": "",
21546
+ "description": "The default virtual warehouse to use for the session after connecting. Used for performing queries, loading data, etc."
21547
+ },
21548
+ {
21549
+ "displayName": "Schema",
21550
+ "name": "schema",
21551
+ "type": "string",
21552
+ "default": "",
21553
+ "description": "Enter the schema you want to use after creating the connection"
21554
+ },
21555
+ {
21556
+ "displayName": "Client Session Keep Alive",
21557
+ "name": "clientSessionKeepAlive",
21558
+ "type": "boolean",
21559
+ "default": false,
21560
+ "description": "Whether to keep alive the client session. By default, client connections typically time out approximately 3-4 hours after the most recent query was executed. If the parameter clientSessionKeepAlive is set to true, the client's connection to the server will be kept alive indefinitely, even if no queries are executed."
21561
+ },
21562
+ {
21563
+ "displayName": "Grant Type",
21564
+ "name": "grantType",
21565
+ "type": "hidden",
21566
+ "default": "pkce"
21567
+ },
21568
+ {
21569
+ "displayName": "Authorization URL",
21570
+ "name": "authUrl",
21571
+ "type": "hidden",
21572
+ "default": "=https://{{$self[\"account\"]}}.snowflakecomputing.com/oauth/authorize",
21573
+ "required": true
21574
+ },
21575
+ {
21576
+ "displayName": "Access Token URL",
21577
+ "name": "accessTokenUrl",
21578
+ "type": "hidden",
21579
+ "default": "=https://{{$self[\"account\"]}}.snowflakecomputing.com/oauth/token-request",
21580
+ "required": true
21581
+ },
21582
+ {
21583
+ "displayName": "Auth URI Query Parameters",
21584
+ "name": "authQueryParameters",
21585
+ "type": "hidden",
21586
+ "default": ""
21587
+ },
21588
+ {
21589
+ "displayName": "Authentication",
21590
+ "name": "authentication",
21591
+ "type": "hidden",
21592
+ "default": "header"
21593
+ },
21594
+ {
21595
+ "displayName": "Custom Scopes",
21596
+ "name": "customScopes",
21597
+ "type": "boolean",
21598
+ "default": false,
21599
+ "description": "Define custom scopes"
21600
+ },
21601
+ {
21602
+ "displayName": "The default scopes needed for the node to work are already set. If you change these the node may not function correctly.",
21603
+ "name": "customScopesNotice",
21604
+ "type": "notice",
21605
+ "default": "",
21606
+ "displayOptions": {
21607
+ "show": {
21608
+ "customScopes": [
21609
+ true
21610
+ ]
21611
+ }
21612
+ }
21613
+ },
21614
+ {
21615
+ "displayName": "Enabled Scopes",
21616
+ "name": "enabledScopes",
21617
+ "type": "string",
21618
+ "displayOptions": {
21619
+ "show": {
21620
+ "customScopes": [
21621
+ true
21622
+ ]
21623
+ }
21624
+ },
21625
+ "default": "refresh_token session:role:SYSADMIN",
21626
+ "description": "Scopes that should be enabled"
21627
+ },
21628
+ {
21629
+ "displayName": "Scope",
21630
+ "name": "scope",
21631
+ "type": "hidden",
21632
+ "default": "={{$self[\"customScopes\"] ? $self[\"enabledScopes\"] : \"refresh_token session:role:SYSADMIN\"}}"
21633
+ }
21634
+ ],
21635
+ "source": "n8n-cache",
21636
+ "sourcePath": "/.n8n-cache/packages/nodes-base/dist/credentials/SnowflakeOAuth2Api.credentials.js",
21637
+ "usedByNodes": [
21638
+ {
21639
+ "nodeName": "snowflake",
21640
+ "nodeType": "n8n-nodes-base.snowflake",
21641
+ "nodeDisplayName": "Snowflake",
21642
+ "required": true
21643
+ },
21644
+ {
21645
+ "nodeName": "snowflakeTool",
21646
+ "nodeType": "n8n-nodes-base.snowflakeTool",
21647
+ "nodeDisplayName": "Snowflake Tool",
21648
+ "required": true
21649
+ }
21650
+ ]
21651
+ },
21303
21652
  {
21304
21653
  "typeName": "solarWindsIpamApi",
21305
21654
  "displayName": "SolarWinds IPAM",