n8n/packages/nodes-base/credentials/ShopifyApi.credentials.ts

41 lines
820 B
TypeScript
Raw Normal View History

2019-12-02 13:21:55 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ShopifyApi implements ICredentialType {
name = 'shopifyApi';
displayName = 'Shopify API';
documentationUrl = 'shopify';
2019-12-02 13:21:55 -08:00
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',
2019-12-02 13:21:55 -08:00
required: true,
type: 'string' as NodePropertyTypes,
default: '',
description: 'Only the subdomain without .myshopify.com',
2019-12-02 13:21:55 -08:00
},
{
displayName: 'Shared Secret',
name: 'sharedSecret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}