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

53 lines
1 KiB
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
// https://developer.raindrop.io/v1/authentication
export class RaindropOAuth2Api implements ICredentialType {
name = 'raindropOAuth2Api';
extends = ['oAuth2Api'];
displayName = 'Raindrop OAuth2 API';
documentationUrl = 'raindrop';
properties: INodeProperties[] = [
{
displayName: 'Grant Type',
name: 'grantType',
type: 'hidden',
default: 'authorizationCode',
},
{
displayName: 'Authorization URL',
name: 'authUrl',
type: 'hidden',
default: 'https://raindrop.io/oauth/authorize',
},
{
displayName: 'Access Token URL',
name: 'accessTokenUrl',
type: 'hidden',
default: 'https://api.raindrop.io/v1/oauth/access_token',
},
{
displayName: 'Auth URI Query Parameters',
name: 'authQueryParameters',
type: 'hidden',
default: '',
},
{
displayName: 'Authentication',
name: 'authentication',
type: 'hidden',
default: 'body',
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: '',
},
];
}