Upgrade n8n worklfow to resolve axios dependabot alert (#2893)
This commit is contained in:
@@ -52,6 +52,11 @@ module.exports = {
|
|||||||
"n8n-nodes-base/node-resource-description-filename-against-convention":
|
"n8n-nodes-base/node-resource-description-filename-against-convention":
|
||||||
"off",
|
"off",
|
||||||
"n8n-nodes-base/node-param-fixed-collection-type-unsorted-items": "off",
|
"n8n-nodes-base/node-param-fixed-collection-type-unsorted-items": "off",
|
||||||
|
"n8n-nodes-base/node-class-description-inputs-wrong-regular-node":
|
||||||
|
"off",
|
||||||
|
"n8n-nodes-base/node-class-description-outputs-wrong": "off",
|
||||||
|
"n8n-nodes-base/node-param-description-wrong-for-dynamic-options":
|
||||||
|
"off",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
INodePropertyOptions,
|
INodePropertyOptions,
|
||||||
INodeType,
|
INodeType,
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
|
NodeConnectionType,
|
||||||
ResourceMapperField,
|
ResourceMapperField,
|
||||||
ResourceMapperFields,
|
ResourceMapperFields,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
@@ -39,8 +40,8 @@ export class Skyvern implements INodeType {
|
|||||||
defaults: {
|
defaults: {
|
||||||
name: 'Skyvern',
|
name: 'Skyvern',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: [NodeConnectionType.Main],
|
||||||
outputs: ['main'],
|
outputs: [NodeConnectionType.Main],
|
||||||
credentials: [
|
credentials: [
|
||||||
{
|
{
|
||||||
name: 'skyvernApi',
|
name: 'skyvernApi',
|
||||||
@@ -318,7 +319,7 @@ export class Skyvern implements INodeType {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Workflow Name or ID',
|
displayName: 'Workflow Name or ID',
|
||||||
description: 'The title of the workflow. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
||||||
name: 'workflowId',
|
name: 'workflowId',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
|
|||||||
965
integrations/n8n/package-lock.json
generated
965
integrations/n8n/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -53,6 +53,9 @@
|
|||||||
"typescript": "^5.5.3"
|
"typescript": "^5.5.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"n8n-workflow": "*"
|
"n8n-workflow": "^1.82.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"braces": "^3.0.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1236
integrations/n8n/pnpm-lock.yaml
generated
1236
integrations/n8n/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user