Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

n8n-workflow

Package Overview
Dependencies
Maintainers
1
Versions
284
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-workflow - npm Package Compare versions

Comparing version 0.67.0 to 0.69.0

18

dist/src/Interfaces.d.ts

@@ -79,2 +79,3 @@ import * as express from 'express';

displayName: string;
icon?: string;
extends?: string[];

@@ -187,2 +188,7 @@ properties: INodeProperties[];

}
export interface ICredentialTestFunctions {
helpers: {
[key: string]: (...args: any[]) => any;
};
}
export interface ILoadOptionsFunctions {

@@ -391,2 +397,5 @@ getCredentials(type: string): Promise<ICredentialDataDecryptedObject | undefined>;

};
credentialTest?: {
[functionName: string]: (this: ICredentialTestFunctions, credential: ICredentialsDecrypted) => Promise<NodeCredentialTestResult>;
};
};

@@ -397,2 +406,10 @@ webhookMethods?: {

}
export interface NodeCredentialTestResult {
status: 'OK' | 'Error';
message: string;
}
export interface NodeCredentialTestRequest {
nodeToTestWith?: string;
credentials: ICredentialsDecrypted;
}
export declare type WebhookSetupMethodNames = 'checkExists' | 'create' | 'delete';

@@ -409,2 +426,3 @@ export interface IWebhookSetupMethods {

displayOptions?: IDisplayOptions;
testedBy?: string;
}

@@ -411,0 +429,0 @@ export declare type INodeIssueTypes = 'credentials' | 'execution' | 'parameters' | 'typeUnknown';

2

package.json
{
"name": "n8n-workflow",
"version": "0.67.0",
"version": "0.69.0",
"description": "Workflow base code of n8n",

@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE.md",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc