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

30 lines
563 B
TypeScript
Raw Normal View History

2019-11-26 12:38:38 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class JiraSoftwareCloudApi implements ICredentialType {
name = 'jiraSoftwareCloudApi';
displayName = 'Jira Software Cloud API';
2019-11-26 12:38:38 -08:00
properties = [
{
2019-11-27 14:42:28 -08:00
displayName: 'Email',
name: 'email',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Domain',
name: 'domain',
2019-11-26 12:38:38 -08:00
type: 'string' as NodePropertyTypes,
default: '',
},
];
}