🔀 Merge branch 'feature/shopify-trigger' of https://github.com/RicardoE105/n8n into RicardoE105-feature/shopify-trigger

This commit is contained in:
Jan Oberhauser
2019-12-06 22:38:46 +01:00
6 changed files with 478 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ShopifyApi implements ICredentialType {
name = 'shopifyApi';
displayName = 'Shopify API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Password',
name: 'password',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Shop Name',
name: 'shopName',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Shared Secret',
name: 'sharedSecret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}