2023-01-27 03:22:44 -08:00
|
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-03-22 12:43:35 -07:00
|
|
|
|
|
|
|
export class MicrosoftOneDriveOAuth2Api implements ICredentialType {
|
|
|
|
name = 'microsoftOneDriveOAuth2Api';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-07-24 08:36:17 -07:00
|
|
|
extends = ['microsoftOAuth2Api'];
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-09-22 23:16:40 -07:00
|
|
|
displayName = 'Microsoft Drive OAuth2 API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'microsoft';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-03-22 12:43:35 -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-22 12:43:35 -07:00
|
|
|
default: 'openid offline_access Files.ReadWrite.All',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|