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

18 lines
319 B
TypeScript
Raw Normal View History

2020-01-16 15:51:01 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class GumroadApi implements ICredentialType {
name = 'gumroadApi';
displayName = 'Gumroad API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}