feat: stripe triggers (payout + transaction)

This commit is contained in:
Pierre Maurice Schwang
2022-11-24 23:22:02 +01:00
parent d3a059d759
commit ef27c9348b
11 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import defineApp from "../../helpers/define-app";
import addAuthHeader from "./common/add-auth-header";
import auth from "./auth"
import triggers from "./triggers"
export default defineApp({
name: 'Stripe',
key: 'stripe',
iconUrl: '{BASE_URL}/apps/stripe/assets/favicon.svg',
authDocUrl: 'https://automatisch.io/docs/apps/stripe/connection',
supportsConnections: true,
baseUrl: 'https://stripe.com',
apiBaseUrl: 'https://api.stripe.com',
primaryColor: '635bff',
beforeRequest: [addAuthHeader],
auth,
triggers,
actions: [],
})