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: '', }, ]; }