1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/credentials/NetlifyApi.credentials.ts

19 lines
355 B
TypeScript
Raw Normal View History

import type { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
export class NetlifyApi implements ICredentialType {
name = 'netlifyApi';
displayName = 'Netlify API';
documentationUrl = 'netlify';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}