fix(Xero Node): Update OAuth Scopes to meet new Xero API requirements (#27563)

Co-authored-by: Garrit Franke <garrit.franke@n8n.io>
Co-authored-by: Garrit Franke <32395585+garritfra@users.noreply.github.com>
Co-authored-by: Dimitri Lavrenük <20122620+dlavrenuek@users.noreply.github.com>
This commit is contained in:
Cj Fraser 2026-04-24 21:40:29 +10:00 committed by GitHub
parent cc2d4da0c9
commit 7f54ff4acf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,11 @@ import type { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = [
'offline_access',
'accounting.transactions',
'accounting.invoices',
'accounting.payments',
'accounting.banktransactions',
'accounting.manualjournals',
'accounting.attachments',
'accounting.settings',
'accounting.contacts',
];