2020-03-15 16:51:31 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
2021-06-12 09:39:55 -07:00
|
|
|
INodeProperties,
|
2020-03-15 16:51:31 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2020-03-22 10:03:56 -07:00
|
|
|
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
|
|
|
];
|
2020-09-22 23:16:40 -07:00
|
|
|
displayName = 'Microsoft Excel OAuth2 API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'microsoft';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-03-15 16:51:31 -07:00
|
|
|
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
|
|
|
{
|
|
|
|
displayName: 'Scope',
|
|
|
|
name: 'scope',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'hidden',
|
2020-03-15 16:51:31 -07:00
|
|
|
default: 'openid offline_access Files.ReadWrite',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|