mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
dec19585bc
* refactor: Enforce expanded sensitive inputs rules (no-changelog) * refactor: Add extra exemption * fix: Add setting to `sessionToken` fields * fix: Restore for `hidden` fields * fix: More edge case exemptions * fix: One more
31 lines
653 B
TypeScript
31 lines
653 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
const scopes = ['https://www.googleapis.com/auth/adwords'];
|
|
|
|
export class GoogleAdsOAuth2Api implements ICredentialType {
|
|
name = 'googleAdsOAuth2Api';
|
|
|
|
extends = ['googleOAuth2Api'];
|
|
|
|
displayName = 'Google Ads OAuth2 API';
|
|
|
|
documentationUrl = 'google/oauth-single-service';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Developer Token',
|
|
name: 'developerToken',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden',
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|