n8n/packages/nodes-base/credentials/FlowApi.credentials.ts

25 lines
437 B
TypeScript
Raw Normal View History

2019-12-06 09:04:50 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class FlowApi implements ICredentialType {
name = 'flowApi';
displayName = 'Flow API';
properties = [
{
displayName: 'Organization ID',
name: 'organizationId',
type: 'number' as NodePropertyTypes,
default: 0,
},
2019-12-06 09:04:50 -08:00
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}