2020-09-17 14:06:58 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class SentryIoServerApi implements ICredentialType {
|
|
|
|
name = 'sentryIoServerApi';
|
2021-04-23 15:37:37 -07:00
|
|
|
displayName = 'Sentry.io Server API';
|
2020-09-21 02:11:02 -07:00
|
|
|
documentationUrl = 'sentryIo';
|
2020-09-17 14:06:58 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Token',
|
|
|
|
name: 'token',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
}, {
|
|
|
|
displayName: 'URL',
|
|
|
|
name: 'url',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
placeholder: 'https://example.com',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|