n8n/packages/nodes-base/credentials/GoogleTranslateOAuth2Api.credentials.ts
Ricardo Espinoza b2e3b8de16
Add Google Translate node (#1086)
*  Add Google Translate node

* 🔨 Add autoload for target languages

*  Small improvements

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
2020-10-22 11:36:42 +02:00

26 lines
507 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
const scopes = [
'https://www.googleapis.com/auth/cloud-translation',
];
export class GoogleTranslateOAuth2Api implements ICredentialType {
name = 'googleTranslateOAuth2Api';
extends = [
'googleOAuth2Api',
];
displayName = 'Google Translate OAuth2 API';
documentationUrl = 'google';
properties = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: scopes.join(' '),
},
];
}