🔀 Merge branch 'stripe-trigger' of https://github.com/lucafaggianelli/n8n into lucafaggianelli-stripe-trigger

This commit is contained in:
Jan Oberhauser
2019-10-16 11:33:53 +02:00
6 changed files with 1011 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class StripeApi implements ICredentialType {
name = 'stripeApi';
displayName = 'Stripe Api';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'Secret Key',
name: 'secretKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}