UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

50 lines 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RaindropOAuth2Api = void 0; // https://developer.raindrop.io/v1/authentication class RaindropOAuth2Api { name = 'raindropOAuth2Api'; extends = ['oAuth2Api']; displayName = 'Raindrop OAuth2 API'; documentationUrl = 'raindrop'; properties = [ { 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: '', }, ]; } exports.RaindropOAuth2Api = RaindropOAuth2Api; //# sourceMappingURL=RaindropOAuth2Api.credentials.js.map