n8n/packages/nodes-base/credentials/SentryIoApi.credentials.ts
2020-09-10 09:48:02 +02:00

19 lines
342 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SentryIoApi implements ICredentialType {
name = 'sentryIoApi';
displayName = 'Sentry.io API';
documentationUrl = 'sentryIo';
properties = [
{
displayName: 'Token',
name: 'token',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}