feat(xero): add xero integration

This commit is contained in:
Rıdvan Akca
2023-11-08 14:46:44 +03:00
parent 373d29eeab
commit 9200e1011b
13 changed files with 242 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
export default defineApp({
name: 'Xero',
key: 'xero',
baseUrl: 'https://go.xero.com',
apiBaseUrl: 'https://api.xero.com',
iconUrl: '{BASE_URL}/apps/xero/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/xero/connection',
primaryColor: '13B5EA',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});