import { ICredentialType, NodePropertyTypes, } from 'n8n-workflow'; export class MauticOAuth2Api implements ICredentialType { name = 'mauticOAuth2Api'; extends = [ 'oAuth2Api', ]; displayName = 'Mautic OAuth2 API'; documentationUrl = 'mautic'; properties = [ { displayName: 'URL', name: 'url', type: 'string' as NodePropertyTypes, default: '', placeholder: 'https://name.mautic.net', }, { displayName: 'Authorization URL', name: 'authUrl', type: 'string' as NodePropertyTypes, default: '', placeholder: 'https://name.mautic.net/oauth/v2/authorize', required: true, }, { displayName: 'Access Token URL', name: 'accessTokenUrl', type: 'string' as NodePropertyTypes, default: '', placeholder: 'https://name.mautic.net/oauth/v2/token', required: true, }, { displayName: 'Scope', name: 'scope', type: 'hidden' as NodePropertyTypes, default: '', }, { displayName: 'Auth URI Query Parameters', name: 'authQueryParameters', type: 'hidden' as NodePropertyTypes, default: '', }, { displayName: 'Authentication', name: 'authentication', type: 'hidden' as NodePropertyTypes, default: 'header', }, ]; }