mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
a3c5f41b0f
* Add update/delete to Team, Release and Project in SentryIo node * Add create/delete:Project in SentryIo node * Minor fix * Fix descriptions & display names * Fix casing in descriptions * Add getTeams load function & Update operations fields * Change 'Additional Field' to 'Update Fields' for Team,Release,Project & Organization operations
25 lines
503 B
TypeScript
25 lines
503 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SentryIoServerApi implements ICredentialType {
|
|
name = 'sentryIoServerApi';
|
|
displayName = 'Sentry.io Server API';
|
|
documentationUrl = 'sentryIo';
|
|
properties = [
|
|
{
|
|
displayName: 'Token',
|
|
name: 'token',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
}, {
|
|
displayName: 'URL',
|
|
name: 'url',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
placeholder: 'https://example.com',
|
|
},
|
|
];
|
|
}
|