mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
23 lines
563 B
TypeScript
23 lines
563 B
TypeScript
|
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'
|
||
|
}
|
||
|
];
|
||
|
}
|