mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Contentful integration
This commit is contained in:
@@ -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'
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user