2020-07-31 13:26:23 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-07-31 13:26:23 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-08-03 01:06:46 -07:00
|
|
|
export class PhilipsHueOAuth2Api implements ICredentialType {
|
|
|
|
name = 'philipsHueOAuth2Api';
|
2020-07-31 13:26:23 -07:00
|
|
|
extends = [
|
|
|
|
'oAuth2Api',
|
|
|
|
];
|
|
|
|
displayName = 'PhilipHue OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'philipsHue';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-09-13 23:11:14 -07:00
|
|
|
{
|
|
|
|
displayName: 'APP ID',
|
|
|
|
name: 'appId',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-09-13 23:11:14 -07:00
|
|
|
default: '',
|
|
|
|
},
|
2020-07-31 13:26:23 -07:00
|
|
|
{
|
|
|
|
displayName: 'Authorization URL',
|
|
|
|
name: 'authUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2022-01-12 22:51:58 -08:00
|
|
|
default: 'https://api.meethue.com/v2/oauth2/authorize',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Access Token URL',
|
|
|
|
name: 'accessTokenUrl',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2022-01-12 22:51:58 -08:00
|
|
|
default: 'https://api.meethue.com/v2/oauth2/token',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Auth URI Query Parameters',
|
|
|
|
name: 'authQueryParameters',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2021-01-27 00:02:20 -08:00
|
|
|
default: '={{"appid="+$self["appId"]}}',
|
2020-07-31 13:26:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-07-31 13:26:23 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2020-09-13 23:11:14 -07:00
|
|
|
displayName: 'Authentication',
|
|
|
|
name: 'authentication',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-09-13 23:11:14 -07:00
|
|
|
default: 'header',
|
|
|
|
},
|
2020-07-31 13:26:23 -07:00
|
|
|
];
|
|
|
|
}
|