import type { ICredentialType, INodeProperties } from 'n8n-workflow'; export class MicrosoftTeamsOAuth2Api implements ICredentialType { name = 'microsoftTeamsOAuth2Api'; extends = ['microsoftOAuth2Api']; displayName = 'Microsoft Teams OAuth2 API'; documentationUrl = 'microsoft'; properties: INodeProperties[] = [ //https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent { displayName: 'Scope', name: 'scope', type: 'hidden', default: 'openid offline_access User.ReadWrite.All Group.ReadWrite.All Chat.ReadWrite', }, { displayName: ` Microsoft Teams Trigger requires the following permissions:
ChannelMessage.Read.All
Chat.Read.All
Team.ReadBasic.All
Subscription.ReadWrite.All
Configure these permissions in Microsoft Entra `, name: 'notice', type: 'notice', default: '', }, ]; }