feat(ynab): add you need a budget app integration

This commit is contained in:
Rıdvan Akca
2024-01-17 18:36:34 +03:00
parent 953c5a5b5b
commit ce6ad9e0d3
12 changed files with 256 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import defineApp from '../../helpers/define-app.js';
import addAuthHeader from './common/add-auth-header.js';
import auth from './auth/index.js';
export default defineApp({
name: 'You Need A Budget',
key: 'you-need-a-budget',
baseUrl: 'https://app.ynab.com',
apiBaseUrl: 'https://api.ynab.com/v1',
iconUrl: '{BASE_URL}/apps/you-need-a-budget/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/you-need-a-budget/connection',
primaryColor: '19223C',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});