2020-06-08 07:58:32 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-06-08 07:58:32 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class PagerDutyOAuth2Api implements ICredentialType {
|
|
|
|
name = 'pagerDutyOAuth2Api';
|
|
|
|
extends = [
|
|
|
|
'oAuth2Api',
|
|
|
|
];
|
|
|
|
displayName = 'PagerDuty OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'pagerDuty';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-08 07:58:32 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-08 07:58:32 -07:00
|
|
|
default: 'https://app.pagerduty.com/oauth/authorize',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-08 07:58:32 -07:00
|
|
|
default: 'https://app.pagerduty.com/oauth/token',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-06-14 18:39:30 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2021-12-11 01:36:51 -08:00
|
|
|
default: 'write',
|
2020-06-08 07:58:32 -07:00
|
|
|
},
|
|
|
|
{
|
2020-09-06 12:31:55 -07:00
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-09-06 12:31:55 -07:00
|
|
|
default: 'header',
|
|
|
|
description: 'Method of authentication.',
|
|
|
|
},
|
2020-06-08 07:58:32 -07:00
|
|
|
];
|
|
|
|
}
|