n8n-nodes-plaid
Version:
The definitive Plaid financial integration node for n8n - Zero Dependencies for Cloud Verification
55 lines (54 loc) • 1.56 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlaidApi = void 0;
class PlaidApi {
constructor() {
this.name = 'plaidApi';
this.displayName = 'Plaid API';
this.properties = [
{
displayName: 'Environment',
name: 'environment',
type: 'options',
options: [
{
name: 'Sandbox',
value: 'sandbox',
},
{
name: 'Development',
value: 'development',
},
{
name: 'Production',
value: 'production',
},
],
default: 'sandbox',
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
required: true,
default: '',
},
{
displayName: 'Secret',
name: 'secret',
type: 'string',
typeOptions: { password: true },
required: true,
default: '',
},
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
required: true,
default: '',
},
];
}
}
exports.PlaidApi = PlaidApi;