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

18 lines
341 B
TypeScript
Raw Normal View History

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