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

32 lines
836 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: '',
2020-07-09 03:10:22 -07:00
required: true,
2020-07-09 02:36:28 -07:00
description: 'The id for the Cotentful space.'
},
{
2020-07-09 03:10:22 -07:00
displayName: 'Content Delivery API - access token',
2020-07-09 02:36:28 -07:00
name: 'access_token',
type: 'string' as NodePropertyTypes,
default: '',
2020-07-09 03:10:22 -07:00
required: true,
description: 'Access token that has access to the space'
},
{
displayName: 'Content Preview API - access token',
name: 'access_token_preview',
type: 'string' as NodePropertyTypes,
default: '',
2020-07-09 02:36:28 -07:00
description: 'Access token that has access to the space'
}
];
}