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

23 lines
563 B
TypeScript
Raw Normal View History

2020-07-09 02:36:28 -07:00
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
export class ContentfulDeliveryApi implements ICredentialType {
name = 'contentfulDeliveryApi';
displayName = 'Delivery API';
properties = [
{
displayName: 'Space Id',
name: 'space_id',
type: 'string' as NodePropertyTypes,
default: '',
description: 'The id for the Cotentful space.'
},
{
displayName: 'Access Token',
name: 'access_token',
type: 'string' as NodePropertyTypes,
default: '',
description: 'Access token that has access to the space'
}
];
}