mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
25 lines
497 B
TypeScript
25 lines
497 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class InvoiceNinjaApi implements ICredentialType {
|
|
name = 'invoiceNinjaApi';
|
|
displayName = 'Invoice Ninja API';
|
|
documentationUrl = 'invoiceNinja';
|
|
properties = [
|
|
{
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'https://app.invoiceninja.com',
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|