flow node and trigger

This commit is contained in:
Ricardo Espinoza
2019-12-06 12:04:50 -05:00
parent 81b17d43ed
commit 99c016e31f
8 changed files with 1342 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FlowApi implements ICredentialType {
name = 'flowApi';
displayName = 'Flow API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}