mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
* 🚧 setup - Added everything, need to test and add icon * Add icon * 🚧 Node colour change * 🚧 Fixed Descriptions * ✔️ Tested, fixed up properties * ✅ Fixed issue of issue * ✅ Added create option for team & organization * ⚡ Improvements * ⚡ Fixed OAuth2 credentials scope * ⚡ Adjusted descriptions, added loadOptions for organizations/projects, small fixes * ⚡ Added Create Release, interfaces * ⚡ Improvements to SentryIO-Node Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
18 lines
310 B
TypeScript
18 lines
310 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class SentryIoApi implements ICredentialType {
|
|
name = 'sentryIoApi';
|
|
displayName = 'Sentry.io API';
|
|
properties = [
|
|
{
|
|
displayName: 'Token',
|
|
name: 'token',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|