mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
a27278a427
* ⚡ Add documentationUrls for several nodes * ⚡ Minor Updates - Updated Paddle documentationUrl - Updated CrateDB description - Updated Monday.com description - Fixed Nextcloud branding - Updated Redis description
25 lines
468 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|