n8n/packages/nodes-base/credentials/GoogleMyBusinessOAuth2Api.credentials.ts
2024-10-16 16:18:53 +01:00

30 lines
1.1 KiB
TypeScript

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/business.manage'];
export class GoogleMyBusinessOAuth2Api implements ICredentialType {
name = 'googleMyBusinessOAuth2Api';
extends = ['googleOAuth2Api'];
displayName = 'Google My Business OAuth2 API';
documentationUrl = 'google/oauth-single-service';
properties: INodeProperties[] = [
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
{
displayName:
'Make sure that you have fulfilled the prerequisites and requested access to Google My Business API. <a href="https://developers.google.com/my-business/content/prereqs" target="_blank">More info</a>. Also, make sure that you have enabled the following APIs & Services in the Google Cloud Console: Google My Business API, Google My Business Management API. <a href="https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#scopes" target="_blank">More info</a>.',
name: 'notice',
type: 'notice',
default: '',
},
];
}