n8n/packages/nodes-base/credentials/GraphApi.credentials.ts
2020-04-29 22:01:23 -04:00

19 lines
314 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class GraphApi implements ICredentialType {
name = 'graphApi';
displayName = 'Graph API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}