mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Magento 2 node (#2048)
* ✨ Magento 2 node * ⚡ Improvements * ⚡ Small improvement * ⚡ Improvements * a * ⚡ Improvements * ⚡ Improvements * ⚡ Minor improvements * ⚡ Improvements * 🐛 Fix issue when parsing extension attributes with operation customer:update * ⚡ Improvements * ⚡ Improvements Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
23
packages/nodes-base/credentials/Magento2Api.credentials.ts
Normal file
23
packages/nodes-base/credentials/Magento2Api.credentials.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class Magento2Api implements ICredentialType {
|
||||
name = 'magento2Api';
|
||||
displayName = 'Magento 2 API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'Host',
|
||||
name: 'host',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Access Token',
|
||||
name: 'accessToken',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user