2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-10-19 10:57:50 -07:00
|
|
|
|
2022-07-24 08:36:17 -07:00
|
|
|
const scopes = ['https://www.googleapis.com/auth/books'];
|
2020-10-19 10:57:50 -07:00
|
|
|
|
|
|
|
export class GoogleBooksOAuth2Api implements ICredentialType {
|
|
|
|
name = 'googleBooksOAuth2Api';
|
2022-07-24 08:36:17 -07:00
|
|
|
extends = ['googleOAuth2Api'];
|
2020-10-19 10:57:50 -07:00
|
|
|
displayName = 'Google Books OAuth2 API';
|
2022-10-20 08:52:03 -07:00
|
|
|
documentationUrl = 'google/oauth-single-service';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-10-19 10:57:50 -07:00
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-10-19 10:57:50 -07:00
|
|
|
default: scopes.join(' '),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|