n8n/packages/nodes-base/credentials/MicrosoftExcelOAuth2Api.credentials.ts

23 lines
553 B
TypeScript
Raw Normal View History

2020-03-15 16:51:31 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MicrosoftExcelOAuth2Api implements ICredentialType {
name = 'microsoftExcelOAuth2Api';
2020-03-15 16:51:31 -07:00
extends = [
2020-03-22 12:14:45 -07:00
'microsoftOAuth2Api',
2020-03-15 16:51:31 -07:00
];
displayName = 'Microsoft Excel OAuth2 API';
documentationUrl = 'microsoft';
2020-03-15 16:51:31 -07:00
properties = [
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
{
displayName: 'Scope',
name: 'scope',
type: 'hidden' as NodePropertyTypes,
default: 'openid offline_access Files.ReadWrite',
},
];
}