mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
b2e3b8de16
* ✨ Add Google Translate node * 🔨 Add autoload for target languages * ⚡ Small improvements Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
26 lines
507 B
TypeScript
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(' '),
|
|
},
|
|
];
|
|
}
|