mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
27 lines
558 B
TypeScript
27 lines
558 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class AutomizyApi implements ICredentialType {
|
|
name = 'automizyApi';
|
|
|
|
displayName = 'Automizy API';
|
|
|
|
documentationUrl = 'automizy';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName:
|
|
'This service may no longer exist and will be removed from n8n in a future release.',
|
|
name: 'deprecated',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
];
|
|
}
|