n8n/packages/nodes-base/credentials/ShopifyApi.credentials.ts
2020-08-17 14:42:09 +02:00

40 lines
759 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ShopifyApi implements ICredentialType {
name = 'shopifyApi';
displayName = 'Shopify API';
documentationUrl = 'shopify';
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 Subdomain',
name: 'shopSubdomain',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Shared Secret',
name: 'sharedSecret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}