mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Paddle Integration (#726)
* 🚧 Resource descriptions * 🚧 Node logic / Genericfunctions setup * 🚧 Tests / changes * 🚧 Changes - Added loadOptions to Payments / Coupon properties for easier item selection - Added exemptions for how data is returned due to inconsistent data return object from API - Other small fixes in main node * 🚧 Simplified HTTPS error response * 🚧 Added RAW Data options * 🔥 Removed order resource - Cannot fetch order without a checkout ID, which can only be obtained via a custom implementation which involves a callback function when a user goes through their checkout process. * ⚡ Improvement to Paddle-Node * ⚡ Improvements * ⚡ Added all currencies, discount grouped properties to coupon update Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
23
packages/nodes-base/credentials/PaddleApi.credentials.ts
Normal file
23
packages/nodes-base/credentials/PaddleApi.credentials.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class PaddleApi implements ICredentialType {
|
||||
name = 'paddleApi';
|
||||
displayName = 'Paddle API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Vendor Auth Code',
|
||||
name: 'vendorAuthCode',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Vendor ID',
|
||||
name: 'vendorId',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user