Contentful integration

This commit is contained in:
Sven Schmidt
2020-07-09 11:36:28 +02:00
parent 6a3f075612
commit fa0e8c84f5
12 changed files with 632 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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'
}
];
}