@friehub/blueprint 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +122 -0
- package/.github/workflows/publish.yml +24 -0
- package/README.md +266 -0
- package/adapters/analytics/amplitude.yaml +44 -0
- package/adapters/analytics/mixpanel.yaml +47 -0
- package/adapters/analytics/segment.yaml +40 -0
- package/adapters/auth/auth0.yaml +56 -0
- package/adapters/auth/clerk.yaml +53 -0
- package/adapters/auth/supertokens.yaml +55 -0
- package/adapters/billing/paddle.yaml +57 -0
- package/adapters/billing/stripe.yaml +49 -0
- package/adapters/caching/memcached.yaml +28 -0
- package/adapters/caching/redis.yaml +37 -0
- package/adapters/chargebacks/chargebacks911.yaml +45 -0
- package/adapters/chargebacks/stripe.yaml +45 -0
- package/adapters/crm_leads/hubspot.yaml +43 -0
- package/adapters/crm_leads/salesforce.yaml +60 -0
- package/adapters/customer_support/intercom.yaml +44 -0
- package/adapters/customer_support/zendesk.yaml +51 -0
- package/adapters/donations/paypal.yaml +47 -0
- package/adapters/donations/stripe.yaml +47 -0
- package/adapters/emails/mailgun.yaml +47 -0
- package/adapters/emails/resend.yaml +43 -0
- package/adapters/emails/sendgrid.yaml +43 -0
- package/adapters/error_tracking/bugsnag.yaml +52 -0
- package/adapters/error_tracking/sentry.yaml +58 -0
- package/adapters/feature_flags/flagsmith.yaml +41 -0
- package/adapters/feature_flags/launchdarkly.yaml +41 -0
- package/adapters/feature_flags/unleash.yaml +41 -0
- package/adapters/fraud_detection/riskified.yaml +41 -0
- package/adapters/fraud_detection/sift.yaml +40 -0
- package/adapters/fulfillment/easyship.yaml +51 -0
- package/adapters/fulfillment/shipengine.yaml +51 -0
- package/adapters/incident_management/opsgenie.yaml +49 -0
- package/adapters/incident_management/pagerduty.yaml +48 -0
- package/adapters/invoicing/freshbooks.yaml +54 -0
- package/adapters/invoicing/stripe.yaml +47 -0
- package/adapters/ip_intelligence/ipinfo.yaml +37 -0
- package/adapters/ip_intelligence/maxmind.yaml +39 -0
- package/adapters/jobs/bullmq.yaml +54 -0
- package/adapters/jobs/temporal.yaml +53 -0
- package/adapters/kyc/jumio.yaml +54 -0
- package/adapters/kyc/onfido.yaml +53 -0
- package/adapters/media/cloudinary.yaml +48 -0
- package/adapters/media/imgix.yaml +47 -0
- package/adapters/notifications/firebase.yaml +45 -0
- package/adapters/notifications/novu.yaml +46 -0
- package/adapters/notifications/onesignal.yaml +45 -0
- package/adapters/payments/adyen.yaml +46 -0
- package/adapters/payments/paystack.yaml +45 -0
- package/adapters/payments/stripe.yaml +49 -0
- package/adapters/payouts/paypal.yaml +49 -0
- package/adapters/payouts/stripe.yaml +49 -0
- package/adapters/projects/asana.yaml +49 -0
- package/adapters/projects/jira.yaml +58 -0
- package/adapters/projects/linear.yaml +49 -0
- package/adapters/queues/bullmq.yaml +47 -0
- package/adapters/queues/rabbitmq.yaml +51 -0
- package/adapters/queues/sqs.yaml +45 -0
- package/adapters/rate_limiting/cloudflare.yaml +37 -0
- package/adapters/rate_limiting/upstash.yaml +35 -0
- package/adapters/search/algolia.yaml +39 -0
- package/adapters/search/meilisearch.yaml +39 -0
- package/adapters/search/typesense.yaml +42 -0
- package/adapters/shipping/easyship.yaml +45 -0
- package/adapters/shipping/shipengine.yaml +45 -0
- package/adapters/sms/twilio.yaml +41 -0
- package/adapters/sms/vonage.yaml +41 -0
- package/adapters/storage/azure-blob.yaml +42 -0
- package/adapters/storage/gcs.yaml +41 -0
- package/adapters/storage/s3.yaml +49 -0
- package/adapters/subscriptions/chargebee.yaml +32 -0
- package/adapters/subscriptions/stripe.yaml +37 -0
- package/adapters/tasks/asana.yaml +50 -0
- package/adapters/tasks/jira.yaml +59 -0
- package/adapters/tasks/linear.yaml +50 -0
- package/adapters/taxation/avalara.yaml +52 -0
- package/adapters/taxation/taxjar.yaml +48 -0
- package/adapters/trace_query/datadog.yaml +49 -0
- package/adapters/trace_query/honeycomb.yaml +42 -0
- package/adapters/trace_query/jaeger.yaml +42 -0
- package/adapters/web_analytics/google-analytics.yaml +42 -0
- package/adapters/web_analytics/plausible.yaml +34 -0
- package/adapters/web_analytics/posthog.yaml +34 -0
- package/adapters/webhooks/relay.yaml +35 -0
- package/adapters/webhooks/svix.yaml +41 -0
- package/blueprint.json +5 -0
- package/blueprinter_system_design.svg +139 -0
- package/catalog.json +37943 -0
- package/dist/cli/commands.js +362 -0
- package/dist/cli/help.js +211 -0
- package/dist/cli/render.js +109 -0
- package/dist/cli.js +69 -0
- package/dist/core/adapters/adapter-audit.test.js +85 -0
- package/dist/core/adapters/adapter.test.js +66 -0
- package/dist/core/adapters/index.js +4 -0
- package/dist/core/adapters/load.js +131 -0
- package/dist/core/adapters/resolve.js +78 -0
- package/dist/core/adapters/select.js +80 -0
- package/dist/core/adapters/types.js +1 -0
- package/dist/core/adapters/validate.js +121 -0
- package/dist/core/catalog.js +3 -0
- package/dist/core/collectors.js +126 -0
- package/dist/core/discovery.js +57 -0
- package/dist/core/edge-cases.test.js +147 -0
- package/dist/core/envelope.js +1 -0
- package/dist/core/graph.js +123 -0
- package/dist/core/graph.test.js +62 -0
- package/dist/core/implement.js +48 -0
- package/dist/core/index.js +9 -0
- package/dist/core/load-catalog.js +24 -0
- package/dist/core/parse-document.js +114 -0
- package/dist/core/parse-document.test.js +104 -0
- package/dist/core/parser.js +6 -0
- package/dist/core/parser.test.js +134 -0
- package/dist/core/resolve.js +119 -0
- package/dist/core/resolve.test.js +108 -0
- package/dist/core/scanner.js +163 -0
- package/dist/core/search.js +34 -0
- package/dist/core/search.test.js +43 -0
- package/dist/core/section-body.js +258 -0
- package/dist/core/sections.js +53 -0
- package/dist/core/verify-implement.test.js +123 -0
- package/dist/core/verify.js +156 -0
- package/dist/generators/engine.js +86 -0
- package/dist/generators/generator.test.js +112 -0
- package/dist/generators/index.js +3 -0
- package/dist/generators/prototype/index.js +242 -0
- package/dist/generators/render.js +146 -0
- package/dist/generators/types.js +124 -0
- package/dist/generators/typescript/helpers.js +125 -0
- package/dist/generators/typescript/index.js +206 -0
- package/dist/index.js +8 -0
- package/dist/mcp/server.js +202 -0
- package/dist/mcp/server.test.js +136 -0
- package/dist/utils/args.js +142 -0
- package/package.json +38 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
name: supertokens
|
|
2
|
+
module: auth
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: SuperTokens authentication adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- signUp
|
|
8
|
+
- signIn
|
|
9
|
+
- signInWithProvider
|
|
10
|
+
- signOut
|
|
11
|
+
- refreshToken
|
|
12
|
+
- verifyToken
|
|
13
|
+
- requestPasswordReset
|
|
14
|
+
- confirmPasswordReset
|
|
15
|
+
- verifyEmail
|
|
16
|
+
- resendVerification
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: api_domain
|
|
23
|
+
type: string
|
|
24
|
+
description: SuperTokens API domain
|
|
25
|
+
secret: false
|
|
26
|
+
- name: api_key
|
|
27
|
+
type: string
|
|
28
|
+
description: SuperTokens API key
|
|
29
|
+
secret: true
|
|
30
|
+
- name: connection_uri
|
|
31
|
+
type: string
|
|
32
|
+
description: SuperTokens connection URI
|
|
33
|
+
secret: false
|
|
34
|
+
optional:
|
|
35
|
+
- name: app_name
|
|
36
|
+
type: string
|
|
37
|
+
description: Application name
|
|
38
|
+
- name: website_domain
|
|
39
|
+
type: string
|
|
40
|
+
description: Website domain
|
|
41
|
+
|
|
42
|
+
dependencies:
|
|
43
|
+
- module: sessions
|
|
44
|
+
purpose: Manage user sessions
|
|
45
|
+
required: true
|
|
46
|
+
- module: users
|
|
47
|
+
purpose: User data storage
|
|
48
|
+
required: true
|
|
49
|
+
- module: audit_log
|
|
50
|
+
purpose: Log authentication events
|
|
51
|
+
required: false
|
|
52
|
+
|
|
53
|
+
metadata:
|
|
54
|
+
provider_url: https://supertokens.com
|
|
55
|
+
docs_url: https://supertokens.com/docs
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: paddle
|
|
2
|
+
module: billing
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Paddle billing subscription and plan management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createSubscription
|
|
8
|
+
- getSubscription
|
|
9
|
+
- upgradeSubscription
|
|
10
|
+
- downgradeSubscription
|
|
11
|
+
- cancelSubscription
|
|
12
|
+
- reactivateSubscription
|
|
13
|
+
- getInvoices
|
|
14
|
+
- getInvoice
|
|
15
|
+
- getPlans
|
|
16
|
+
- getPlan
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: vendor_id
|
|
23
|
+
type: string
|
|
24
|
+
description: Paddle vendor ID
|
|
25
|
+
secret: false
|
|
26
|
+
- name: api_key
|
|
27
|
+
type: string
|
|
28
|
+
description: Paddle API key
|
|
29
|
+
secret: true
|
|
30
|
+
- name: client_side_token
|
|
31
|
+
type: string
|
|
32
|
+
description: Paddle client-side token
|
|
33
|
+
secret: true
|
|
34
|
+
- name: webhook_secret
|
|
35
|
+
type: string
|
|
36
|
+
description: Paddle webhook secret
|
|
37
|
+
secret: true
|
|
38
|
+
optional:
|
|
39
|
+
- name: environment
|
|
40
|
+
type: string
|
|
41
|
+
default: "production"
|
|
42
|
+
description: Paddle environment (sandbox or production)
|
|
43
|
+
|
|
44
|
+
dependencies:
|
|
45
|
+
- module: payments
|
|
46
|
+
purpose: Process subscription payments
|
|
47
|
+
required: true
|
|
48
|
+
- module: notifications
|
|
49
|
+
purpose: Send subscription lifecycle emails
|
|
50
|
+
required: false
|
|
51
|
+
- module: audit_log
|
|
52
|
+
purpose: Log subscription events
|
|
53
|
+
required: false
|
|
54
|
+
|
|
55
|
+
metadata:
|
|
56
|
+
provider_url: https://paddle.com
|
|
57
|
+
docs_url: https://developer.paddle.com
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: stripe
|
|
2
|
+
module: billing
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Stripe billing subscription and plan management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createSubscription
|
|
8
|
+
- getSubscription
|
|
9
|
+
- upgradeSubscription
|
|
10
|
+
- downgradeSubscription
|
|
11
|
+
- cancelSubscription
|
|
12
|
+
- reactivateSubscription
|
|
13
|
+
- getInvoices
|
|
14
|
+
- getInvoice
|
|
15
|
+
- getPlans
|
|
16
|
+
- getPlan
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: api_key
|
|
23
|
+
type: string
|
|
24
|
+
description: Stripe secret API key
|
|
25
|
+
secret: true
|
|
26
|
+
- name: webhook_secret
|
|
27
|
+
type: string
|
|
28
|
+
description: Stripe webhook signing secret
|
|
29
|
+
secret: true
|
|
30
|
+
optional:
|
|
31
|
+
- name: api_version
|
|
32
|
+
type: string
|
|
33
|
+
default: "2023-10-16"
|
|
34
|
+
description: Stripe API version
|
|
35
|
+
|
|
36
|
+
dependencies:
|
|
37
|
+
- module: payments
|
|
38
|
+
purpose: Process subscription payments
|
|
39
|
+
required: true
|
|
40
|
+
- module: notifications
|
|
41
|
+
purpose: Send subscription lifecycle emails
|
|
42
|
+
required: false
|
|
43
|
+
- module: audit_log
|
|
44
|
+
purpose: Log subscription events
|
|
45
|
+
required: false
|
|
46
|
+
|
|
47
|
+
metadata:
|
|
48
|
+
provider_url: https://stripe.com
|
|
49
|
+
docs_url: https://stripe.com/docs/billing
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: memcached
|
|
2
|
+
module: caching
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Memcached caching adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- get
|
|
8
|
+
- set
|
|
9
|
+
- del
|
|
10
|
+
- getOrSet
|
|
11
|
+
- mget
|
|
12
|
+
- mset
|
|
13
|
+
- increment
|
|
14
|
+
- decrement
|
|
15
|
+
|
|
16
|
+
does_not_implement:
|
|
17
|
+
- invalidateByTag
|
|
18
|
+
- invalidateByPrefix
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: servers
|
|
23
|
+
type: string
|
|
24
|
+
description: Memcached servers (e.g., "localhost:11211")
|
|
25
|
+
|
|
26
|
+
metadata:
|
|
27
|
+
provider_url: https://memcached.org
|
|
28
|
+
docs_url: https://memcached.org/docs
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: redis
|
|
2
|
+
module: caching
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Redis caching adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- get
|
|
8
|
+
- set
|
|
9
|
+
- del
|
|
10
|
+
- getOrSet
|
|
11
|
+
- invalidateByTag
|
|
12
|
+
- invalidateByPrefix
|
|
13
|
+
- mget
|
|
14
|
+
- mset
|
|
15
|
+
- increment
|
|
16
|
+
- decrement
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: url
|
|
23
|
+
type: string
|
|
24
|
+
description: Redis connection URL
|
|
25
|
+
optional:
|
|
26
|
+
- name: prefix
|
|
27
|
+
type: string
|
|
28
|
+
default: "app:"
|
|
29
|
+
description: Key prefix for all cache entries
|
|
30
|
+
- name: ttl
|
|
31
|
+
type: number
|
|
32
|
+
default: 3600
|
|
33
|
+
description: Default TTL in seconds
|
|
34
|
+
|
|
35
|
+
metadata:
|
|
36
|
+
provider_url: https://redis.io
|
|
37
|
+
docs_url: https://redis.io/docs
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: chargebacks911
|
|
2
|
+
module: chargebacks
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Chargebacks911 chargeback management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createChargeback
|
|
8
|
+
- getChargeback
|
|
9
|
+
- listChargebacks
|
|
10
|
+
- submitEvidence
|
|
11
|
+
- updateChargebackStatus
|
|
12
|
+
- closeChargeback
|
|
13
|
+
|
|
14
|
+
does_not_implement: []
|
|
15
|
+
|
|
16
|
+
config:
|
|
17
|
+
required:
|
|
18
|
+
- name: api_key
|
|
19
|
+
type: string
|
|
20
|
+
description: Chargebacks911 API key
|
|
21
|
+
secret: true
|
|
22
|
+
- name: merchant_id
|
|
23
|
+
type: string
|
|
24
|
+
description: Chargebacks911 merchant ID
|
|
25
|
+
secret: false
|
|
26
|
+
optional:
|
|
27
|
+
- name: environment
|
|
28
|
+
type: string
|
|
29
|
+
default: "production"
|
|
30
|
+
description: Chargebacks911 environment (sandbox or production)
|
|
31
|
+
|
|
32
|
+
dependencies:
|
|
33
|
+
- module: payments
|
|
34
|
+
purpose: Access payment data for chargebacks
|
|
35
|
+
required: true
|
|
36
|
+
- module: notifications
|
|
37
|
+
purpose: Send chargeback notifications
|
|
38
|
+
required: false
|
|
39
|
+
- module: audit_log
|
|
40
|
+
purpose: Log chargeback events
|
|
41
|
+
required: false
|
|
42
|
+
|
|
43
|
+
metadata:
|
|
44
|
+
provider_url: https://chargebacks911.com
|
|
45
|
+
docs_url: https://chargebacks911.com/docs
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: stripe
|
|
2
|
+
module: chargebacks
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Stripe chargebacks adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createChargeback
|
|
8
|
+
- getChargeback
|
|
9
|
+
- listChargebacks
|
|
10
|
+
- submitEvidence
|
|
11
|
+
- updateChargebackStatus
|
|
12
|
+
- closeChargeback
|
|
13
|
+
|
|
14
|
+
does_not_implement: []
|
|
15
|
+
|
|
16
|
+
config:
|
|
17
|
+
required:
|
|
18
|
+
- name: api_key
|
|
19
|
+
type: string
|
|
20
|
+
description: Stripe secret API key
|
|
21
|
+
secret: true
|
|
22
|
+
- name: webhook_secret
|
|
23
|
+
type: string
|
|
24
|
+
description: Stripe webhook signing secret
|
|
25
|
+
secret: true
|
|
26
|
+
optional:
|
|
27
|
+
- name: api_version
|
|
28
|
+
type: string
|
|
29
|
+
default: "2023-10-16"
|
|
30
|
+
description: Stripe API version
|
|
31
|
+
|
|
32
|
+
dependencies:
|
|
33
|
+
- module: payments
|
|
34
|
+
purpose: Access payment data for chargebacks
|
|
35
|
+
required: true
|
|
36
|
+
- module: notifications
|
|
37
|
+
purpose: Send chargeback notifications
|
|
38
|
+
required: false
|
|
39
|
+
- module: audit_log
|
|
40
|
+
purpose: Log chargeback events
|
|
41
|
+
required: false
|
|
42
|
+
|
|
43
|
+
metadata:
|
|
44
|
+
provider_url: https://stripe.com
|
|
45
|
+
docs_url: https://stripe.com/docs/disputes
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: hubspot
|
|
2
|
+
module: crm_leads
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: HubSpot CRM leads adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createLead
|
|
8
|
+
- updateLeadStatus
|
|
9
|
+
- createDeal
|
|
10
|
+
- updateDealStage
|
|
11
|
+
- assignOwner
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: api_key
|
|
18
|
+
type: string
|
|
19
|
+
description: HubSpot API key
|
|
20
|
+
secret: true
|
|
21
|
+
optional:
|
|
22
|
+
- name: portal_id
|
|
23
|
+
type: string
|
|
24
|
+
description: HubSpot portal ID
|
|
25
|
+
- name: access_token
|
|
26
|
+
type: string
|
|
27
|
+
description: HubSpot access token
|
|
28
|
+
secret: true
|
|
29
|
+
|
|
30
|
+
dependencies:
|
|
31
|
+
- module: users
|
|
32
|
+
purpose: Get user data for lead assignments
|
|
33
|
+
required: true
|
|
34
|
+
- module: notifications
|
|
35
|
+
purpose: Send lead notifications
|
|
36
|
+
required: false
|
|
37
|
+
- module: audit_log
|
|
38
|
+
purpose: Log CRM events
|
|
39
|
+
required: false
|
|
40
|
+
|
|
41
|
+
metadata:
|
|
42
|
+
provider_url: https://www.hubspot.com
|
|
43
|
+
docs_url: https://developers.hubspot.com
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
name: salesforce
|
|
2
|
+
module: crm_leads
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Salesforce CRM leads adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createLead
|
|
8
|
+
- updateLeadStatus
|
|
9
|
+
- createDeal
|
|
10
|
+
- updateDealStage
|
|
11
|
+
- assignOwner
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: client_id
|
|
18
|
+
type: string
|
|
19
|
+
description: Salesforce client ID
|
|
20
|
+
secret: false
|
|
21
|
+
- name: client_secret
|
|
22
|
+
type: string
|
|
23
|
+
description: Salesforce client secret
|
|
24
|
+
secret: true
|
|
25
|
+
- name: username
|
|
26
|
+
type: string
|
|
27
|
+
description: Salesforce username
|
|
28
|
+
secret: false
|
|
29
|
+
- name: password
|
|
30
|
+
type: string
|
|
31
|
+
description: Salesforce password
|
|
32
|
+
secret: true
|
|
33
|
+
- name: security_token
|
|
34
|
+
type: string
|
|
35
|
+
description: Salesforce security token
|
|
36
|
+
secret: true
|
|
37
|
+
optional:
|
|
38
|
+
- name: login_url
|
|
39
|
+
type: string
|
|
40
|
+
default: https://login.salesforce.com
|
|
41
|
+
description: Salesforce login URL
|
|
42
|
+
- name: api_version
|
|
43
|
+
type: string
|
|
44
|
+
default: "v58.0"
|
|
45
|
+
description: Salesforce API version
|
|
46
|
+
|
|
47
|
+
dependencies:
|
|
48
|
+
- module: users
|
|
49
|
+
purpose: Get user data for lead assignments
|
|
50
|
+
required: true
|
|
51
|
+
- module: notifications
|
|
52
|
+
purpose: Send lead notifications
|
|
53
|
+
required: false
|
|
54
|
+
- module: audit_log
|
|
55
|
+
purpose: Log CRM events
|
|
56
|
+
required: false
|
|
57
|
+
|
|
58
|
+
metadata:
|
|
59
|
+
provider_url: https://www.salesforce.com
|
|
60
|
+
docs_url: https://developer.salesforce.com
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
name: intercom
|
|
2
|
+
module: customer_support
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Intercom customer support adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createTicket
|
|
8
|
+
- assignTicket
|
|
9
|
+
- addTicketMessage
|
|
10
|
+
- transitionTicketStatus
|
|
11
|
+
- checkSLA
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: app_id
|
|
18
|
+
type: string
|
|
19
|
+
description: Intercom app ID
|
|
20
|
+
secret: false
|
|
21
|
+
- name: api_key
|
|
22
|
+
type: string
|
|
23
|
+
description: Intercom API key
|
|
24
|
+
secret: true
|
|
25
|
+
optional:
|
|
26
|
+
- name: access_token
|
|
27
|
+
type: string
|
|
28
|
+
description: Intercom access token
|
|
29
|
+
secret: true
|
|
30
|
+
|
|
31
|
+
dependencies:
|
|
32
|
+
- module: users
|
|
33
|
+
purpose: Get user data for tickets
|
|
34
|
+
required: true
|
|
35
|
+
- module: notifications
|
|
36
|
+
purpose: Send ticket notifications
|
|
37
|
+
required: false
|
|
38
|
+
- module: audit_log
|
|
39
|
+
purpose: Log support events
|
|
40
|
+
required: false
|
|
41
|
+
|
|
42
|
+
metadata:
|
|
43
|
+
provider_url: https://www.intercom.com
|
|
44
|
+
docs_url: https://developers.intercom.com
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
name: zendesk
|
|
2
|
+
module: customer_support
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Zendesk customer support adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createTicket
|
|
8
|
+
- assignTicket
|
|
9
|
+
- addTicketMessage
|
|
10
|
+
- transitionTicketStatus
|
|
11
|
+
- checkSLA
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: subdomain
|
|
18
|
+
type: string
|
|
19
|
+
description: Zendesk subdomain
|
|
20
|
+
secret: false
|
|
21
|
+
- name: api_token
|
|
22
|
+
type: string
|
|
23
|
+
description: Zendesk API token
|
|
24
|
+
secret: true
|
|
25
|
+
- name: email
|
|
26
|
+
type: string
|
|
27
|
+
description: Zendesk admin email
|
|
28
|
+
secret: false
|
|
29
|
+
optional:
|
|
30
|
+
- name: oauth_token
|
|
31
|
+
type: string
|
|
32
|
+
description: Zendesk OAuth token
|
|
33
|
+
secret: true
|
|
34
|
+
- name: marketplace_listing_id
|
|
35
|
+
type: string
|
|
36
|
+
description: Zendesk marketplace listing ID
|
|
37
|
+
|
|
38
|
+
dependencies:
|
|
39
|
+
- module: users
|
|
40
|
+
purpose: Get user data for tickets
|
|
41
|
+
required: true
|
|
42
|
+
- module: notifications
|
|
43
|
+
purpose: Send ticket notifications
|
|
44
|
+
required: false
|
|
45
|
+
- module: audit_log
|
|
46
|
+
purpose: Log support events
|
|
47
|
+
required: false
|
|
48
|
+
|
|
49
|
+
metadata:
|
|
50
|
+
provider_url: https://www.zendesk.com
|
|
51
|
+
docs_url: https://developer.zendesk.com
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: paypal
|
|
2
|
+
module: donations
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: PayPal donations adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createCampaign
|
|
8
|
+
- getCampaign
|
|
9
|
+
- listCampaigns
|
|
10
|
+
- donate
|
|
11
|
+
- getDonation
|
|
12
|
+
- getDonationsByCampaign
|
|
13
|
+
- getCampaignStats
|
|
14
|
+
- issueCertificate
|
|
15
|
+
|
|
16
|
+
does_not_implement: []
|
|
17
|
+
|
|
18
|
+
config:
|
|
19
|
+
required:
|
|
20
|
+
- name: client_id
|
|
21
|
+
type: string
|
|
22
|
+
description: PayPal client ID
|
|
23
|
+
secret: false
|
|
24
|
+
- name: client_secret
|
|
25
|
+
type: string
|
|
26
|
+
description: PayPal client secret
|
|
27
|
+
secret: true
|
|
28
|
+
optional:
|
|
29
|
+
- name: environment
|
|
30
|
+
type: string
|
|
31
|
+
default: "production"
|
|
32
|
+
description: PayPal environment (sandbox or production)
|
|
33
|
+
|
|
34
|
+
dependencies:
|
|
35
|
+
- module: payments
|
|
36
|
+
purpose: Process donation payments
|
|
37
|
+
required: true
|
|
38
|
+
- module: notifications
|
|
39
|
+
purpose: Send donation receipts
|
|
40
|
+
required: false
|
|
41
|
+
- module: audit_log
|
|
42
|
+
purpose: Log donation events
|
|
43
|
+
required: false
|
|
44
|
+
|
|
45
|
+
metadata:
|
|
46
|
+
provider_url: https://www.paypal.com
|
|
47
|
+
docs_url: https://developer.paypal.com/docs
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: stripe
|
|
2
|
+
module: donations
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Stripe donations adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createCampaign
|
|
8
|
+
- getCampaign
|
|
9
|
+
- listCampaigns
|
|
10
|
+
- donate
|
|
11
|
+
- getDonation
|
|
12
|
+
- getDonationsByCampaign
|
|
13
|
+
- getCampaignStats
|
|
14
|
+
- issueCertificate
|
|
15
|
+
|
|
16
|
+
does_not_implement: []
|
|
17
|
+
|
|
18
|
+
config:
|
|
19
|
+
required:
|
|
20
|
+
- name: api_key
|
|
21
|
+
type: string
|
|
22
|
+
description: Stripe secret API key
|
|
23
|
+
secret: true
|
|
24
|
+
- name: webhook_secret
|
|
25
|
+
type: string
|
|
26
|
+
description: Stripe webhook signing secret
|
|
27
|
+
secret: true
|
|
28
|
+
optional:
|
|
29
|
+
- name: api_version
|
|
30
|
+
type: string
|
|
31
|
+
default: "2023-10-16"
|
|
32
|
+
description: Stripe API version
|
|
33
|
+
|
|
34
|
+
dependencies:
|
|
35
|
+
- module: payments
|
|
36
|
+
purpose: Process donation payments
|
|
37
|
+
required: true
|
|
38
|
+
- module: notifications
|
|
39
|
+
purpose: Send donation receipts
|
|
40
|
+
required: false
|
|
41
|
+
- module: audit_log
|
|
42
|
+
purpose: Log donation events
|
|
43
|
+
required: false
|
|
44
|
+
|
|
45
|
+
metadata:
|
|
46
|
+
provider_url: https://stripe.com
|
|
47
|
+
docs_url: https://stripe.com/docs
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: mailgun
|
|
2
|
+
module: emails
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Mailgun email delivery adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- sendTransactional
|
|
8
|
+
- sendBulk
|
|
9
|
+
- createTemplate
|
|
10
|
+
- updateTemplate
|
|
11
|
+
- getTemplate
|
|
12
|
+
- listTemplates
|
|
13
|
+
- getDeliveryStatus
|
|
14
|
+
- getDeliveryEvents
|
|
15
|
+
|
|
16
|
+
does_not_implement: []
|
|
17
|
+
|
|
18
|
+
config:
|
|
19
|
+
required:
|
|
20
|
+
- name: api_key
|
|
21
|
+
type: string
|
|
22
|
+
description: Mailgun API key
|
|
23
|
+
secret: true
|
|
24
|
+
- name: domain
|
|
25
|
+
type: string
|
|
26
|
+
description: Mailgun domain
|
|
27
|
+
secret: false
|
|
28
|
+
- name: from_email
|
|
29
|
+
type: string
|
|
30
|
+
description: Default sender email address
|
|
31
|
+
secret: false
|
|
32
|
+
optional:
|
|
33
|
+
- name: from_name
|
|
34
|
+
type: string
|
|
35
|
+
description: Default sender name
|
|
36
|
+
- name: reply_to
|
|
37
|
+
type: string
|
|
38
|
+
description: Default reply-to email address
|
|
39
|
+
|
|
40
|
+
dependencies:
|
|
41
|
+
- module: audit_log
|
|
42
|
+
purpose: Log email delivery events
|
|
43
|
+
required: false
|
|
44
|
+
|
|
45
|
+
metadata:
|
|
46
|
+
provider_url: https://www.mailgun.com
|
|
47
|
+
docs_url: https://documentation.mailgun.com
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: resend
|
|
2
|
+
module: emails
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Resend email delivery adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- sendTransactional
|
|
8
|
+
- sendBulk
|
|
9
|
+
- createTemplate
|
|
10
|
+
- updateTemplate
|
|
11
|
+
- getTemplate
|
|
12
|
+
- listTemplates
|
|
13
|
+
- getDeliveryStatus
|
|
14
|
+
- getDeliveryEvents
|
|
15
|
+
|
|
16
|
+
does_not_implement: []
|
|
17
|
+
|
|
18
|
+
config:
|
|
19
|
+
required:
|
|
20
|
+
- name: api_key
|
|
21
|
+
type: string
|
|
22
|
+
description: Resend API key
|
|
23
|
+
secret: true
|
|
24
|
+
- name: from_email
|
|
25
|
+
type: string
|
|
26
|
+
description: Default sender email address
|
|
27
|
+
secret: false
|
|
28
|
+
optional:
|
|
29
|
+
- name: from_name
|
|
30
|
+
type: string
|
|
31
|
+
description: Default sender name
|
|
32
|
+
- name: reply_to
|
|
33
|
+
type: string
|
|
34
|
+
description: Default reply-to email address
|
|
35
|
+
|
|
36
|
+
dependencies:
|
|
37
|
+
- module: audit_log
|
|
38
|
+
purpose: Log email delivery events
|
|
39
|
+
required: false
|
|
40
|
+
|
|
41
|
+
metadata:
|
|
42
|
+
provider_url: https://resend.com
|
|
43
|
+
docs_url: https://resend.com/docs
|