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

35 lines
1,007 B
TypeScript
Raw Normal View History

2020-08-04 12:07:54 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
//https://www.contentful.com/developers/docs/references/authentication/
export class ContentfulApi implements ICredentialType {
name = 'contentfulApi';
displayName = 'Contenful API';
properties = [
{
displayName: 'Space ID',
name: 'spaceId',
type: 'string' as NodePropertyTypes,
default: '',
required: true,
description: 'The id for the Contentful space.',
2020-08-04 12:07:54 -07:00
},
{
displayName: 'Content Delivery API Access token',
name: 'ContentDeliveryaccessToken',
type: 'string' as NodePropertyTypes,
default: '',
description: 'Access token that has access to the space. Can be left empty if only Delivery API should be used.',
2020-08-04 12:07:54 -07:00
},
{
displayName: 'Content Preview API Access token',
name: 'ContentPreviewaccessToken',
type: 'string' as NodePropertyTypes,
default: '',
description: 'Access token that has access to the space. Can be left empty if only Preview API should be used.',
2020-08-04 12:07:54 -07:00
},
];
}