mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ added create a payout batch
This commit is contained in:
@@ -4,9 +4,9 @@ import {
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class PaypalApi implements ICredentialType {
|
||||
export class PayPalApi implements ICredentialType {
|
||||
name = 'paypalApi';
|
||||
displayName = 'Paypal API';
|
||||
displayName = 'PayPal API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Client ID',
|
||||
@@ -20,5 +20,21 @@ export class PaypalApi implements ICredentialType {
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Enviroment',
|
||||
name: 'env',
|
||||
type: 'options' as NodePropertyTypes,
|
||||
default: 'live',
|
||||
options: [
|
||||
{
|
||||
name: 'Sanbox',
|
||||
value: 'sanbox'
|
||||
},
|
||||
{
|
||||
name: 'Live',
|
||||
value: 'live'
|
||||
},
|
||||
]
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user