n8n/packages/nodes-base/credentials/PaddleApi.credentials.ts
smamudhan a27278a427
Minor fixes for docs compatibility (#955)
*  Add documentationUrls for several nodes

*  Minor Updates

- Updated Paddle documentationUrl
- Updated CrateDB description
- Updated Monday.com description
- Fixed Nextcloud branding
- Updated Redis description
2020-09-14 09:58:01 +02:00

25 lines
468 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PaddleApi implements ICredentialType {
name = 'paddleApi';
displayName = 'Paddle API';
documentationUrl = 'paddle';
properties = [
{
displayName: 'Vendor Auth Code',
name: 'vendorAuthCode',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Vendor ID',
name: 'vendorId',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}