mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
cf2c94e2d8
* add initial formstack integration configuration * implement getForms for formstack integration * implement oauth2 authentication for formstack * fix formstack color * enable formstack webhook registration * remove typeform types * implement formstack fetch * ⚡ Improvements to #1673 * ⚡ Improvements * ⚡ Make work with new async credentials * ⚡ Improvements Co-authored-by: Aniruddha Adhikary <aniruddha@adhikary.net> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
20 lines
359 B
TypeScript
20 lines
359 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class FormstackApi implements ICredentialType {
|
|
name = 'formstackApi';
|
|
displayName = 'Formstack API';
|
|
documentationUrl = 'formstack';
|
|
properties = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|