2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
|
2021-09-18 13:12:20 -07:00
|
|
|
|
|
|
|
export class NetlifyApi implements ICredentialType {
|
|
|
|
name = 'netlifyApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-09-18 13:12:20 -07:00
|
|
|
displayName = 'Netlify API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-09-18 13:12:20 -07:00
|
|
|
documentationUrl = 'netlify';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-09-18 13:12:20 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Access Token',
|
|
|
|
name: 'accessToken',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
2022-07-24 08:36:17 -07:00
|
|
|
}
|