feat(google-sheets): add google sheets integration

This commit is contained in:
Rıdvan Akca
2023-03-31 14:17:47 +03:00
parent 3e268bf66b
commit f88f05cd46
11 changed files with 298 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: 'Google Sheet',
key: 'google-sheet',
baseUrl: 'https://docs.google.com/spreadsheets',
apiBaseUrl: 'https://sheets.googleapis.com',
iconUrl: '{BASE_URL}/apps/google-sheet/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/google-sheet/connection',
primaryColor: '0F9D58',
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
});