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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
397 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-04-26 12:56:50 -07:00
export class BannerbearApi implements ICredentialType {
name = 'bannerbearApi';
2020-04-26 12:56:50 -07:00
displayName = 'Bannerbear API';
documentationUrl = 'bannerbear';
properties: INodeProperties[] = [
2020-04-26 12:56:50 -07:00
{
displayName: 'Project API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
2020-04-26 12:56:50 -07:00
default: '',
},
];
}