n8n/packages/nodes-base/credentials/FormstackOAuth2Api.credentials.ts

56 lines
1.1 KiB
TypeScript
Raw Normal View History

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: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
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',
},
];
}