n8n/packages/nodes-base/credentials/InvoiceNinjaCloudApi.credentials.ts
2020-03-04 12:08:06 -05:00

18 lines
339 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class InvoiceNinjaCloudApi implements ICredentialType {
name = 'invoiceNinjaCloudApi';
displayName = 'Invoice Ninja API';
properties = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}