mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
24 lines
451 B
TypeScript
24 lines
451 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class InvoiceNinjaServerApi implements ICredentialType {
|
|
name = 'invoiceNinjaServerApi';
|
|
displayName = 'Invoice Ninja API';
|
|
properties = [
|
|
{
|
|
displayName: 'Domain',
|
|
name: 'domain',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|