feat(airtable): add airtable integration

This commit is contained in:
Rıdvan Akca
2024-01-19 17:20:56 +03:00
parent 953c5a5b5b
commit c413ab030b
13 changed files with 283 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: 'Airtable',
key: 'airtable',
baseUrl: 'https://airtable.com',
apiBaseUrl: 'https://api.airtable.com',
iconUrl: '{BASE_URL}/apps/airtable/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/airtable/connection',
primaryColor: 'FFBF00',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});