n8n/packages/nodes-base/credentials/FormstackOAuth2Api.credentials.ts
Iván Ovejero fa05d7557b
Simplify more property types in credentials classes (#2211)
*  Simplify more property types

* 👕 Fix lint
2021-10-07 23:07:56 +02:00

50 lines
1,015 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
const scopes: string[] = [];
export class FormstackOAuth2Api implements ICredentialType {
name = 'formstackOAuth2Api';
extends = [
'oAuth2Api',
];
displayName = 'Formstack OAuth2 API';
documentationUrl = 'formstackTrigger';
properties: INodeProperties[] = [
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://www.formstack.com/api/v2/oauth2/authorize',
required: true,
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://www.formstack.com/api/v2/oauth2/token',
required: true,
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'header',
},
];
}