@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,41 @@
|
|
|
1
|
+
name: vonage
|
|
2
|
+
module: sms
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Vonage SMS delivery adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- send
|
|
8
|
+
- sendBulk
|
|
9
|
+
- getDeliveryStatus
|
|
10
|
+
- getBalance
|
|
11
|
+
- lookupNumber
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: api_key
|
|
18
|
+
type: string
|
|
19
|
+
description: Vonage API key
|
|
20
|
+
secret: false
|
|
21
|
+
- name: api_secret
|
|
22
|
+
type: string
|
|
23
|
+
description: Vonage API secret
|
|
24
|
+
secret: true
|
|
25
|
+
- name: from_number
|
|
26
|
+
type: string
|
|
27
|
+
description: Vonage phone number
|
|
28
|
+
secret: false
|
|
29
|
+
optional:
|
|
30
|
+
- name: brand
|
|
31
|
+
type: string
|
|
32
|
+
description: Vonage brand name
|
|
33
|
+
|
|
34
|
+
dependencies:
|
|
35
|
+
- module: audit_log
|
|
36
|
+
purpose: Log SMS delivery events
|
|
37
|
+
required: false
|
|
38
|
+
|
|
39
|
+
metadata:
|
|
40
|
+
provider_url: https://www.vonage.com
|
|
41
|
+
docs_url: https://developer.nexmo.com
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: azure-blob
|
|
2
|
+
module: storage
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Azure Blob Storage adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- uploadFile
|
|
8
|
+
- downloadFile
|
|
9
|
+
- deleteFile
|
|
10
|
+
- getSignedUrl
|
|
11
|
+
- getSignedUploadUrl
|
|
12
|
+
- listFiles
|
|
13
|
+
- moveFile
|
|
14
|
+
- copyFile
|
|
15
|
+
- getMetadata
|
|
16
|
+
|
|
17
|
+
does_not_implement: []
|
|
18
|
+
|
|
19
|
+
config:
|
|
20
|
+
required:
|
|
21
|
+
- name: account_name
|
|
22
|
+
type: string
|
|
23
|
+
description: Azure storage account name
|
|
24
|
+
secret: false
|
|
25
|
+
- name: account_key
|
|
26
|
+
type: string
|
|
27
|
+
description: Azure storage account key
|
|
28
|
+
secret: true
|
|
29
|
+
optional:
|
|
30
|
+
- name: container
|
|
31
|
+
type: string
|
|
32
|
+
description: Default container name
|
|
33
|
+
- name: sas_token
|
|
34
|
+
type: string
|
|
35
|
+
description: Azure SAS token
|
|
36
|
+
secret: true
|
|
37
|
+
|
|
38
|
+
dependencies: []
|
|
39
|
+
|
|
40
|
+
metadata:
|
|
41
|
+
provider_url: https://azure.microsoft.com/en-us/services/storage/blobs
|
|
42
|
+
docs_url: https://docs.microsoft.com/en-us/azure/storage/blobs
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: gcs
|
|
2
|
+
module: storage
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Google Cloud Storage adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- uploadFile
|
|
8
|
+
- downloadFile
|
|
9
|
+
- deleteFile
|
|
10
|
+
- getSignedUrl
|
|
11
|
+
- getSignedUploadUrl
|
|
12
|
+
- listFiles
|
|
13
|
+
- moveFile
|
|
14
|
+
- copyFile
|
|
15
|
+
- getMetadata
|
|
16
|
+
|
|
17
|
+
does_not_implement: []
|
|
18
|
+
|
|
19
|
+
config:
|
|
20
|
+
required:
|
|
21
|
+
- name: project_id
|
|
22
|
+
type: string
|
|
23
|
+
description: Google Cloud project ID
|
|
24
|
+
secret: false
|
|
25
|
+
- name: service_account_key
|
|
26
|
+
type: string
|
|
27
|
+
description: Google Cloud service account key JSON
|
|
28
|
+
secret: true
|
|
29
|
+
optional:
|
|
30
|
+
- name: bucket
|
|
31
|
+
type: string
|
|
32
|
+
description: Default bucket name
|
|
33
|
+
- name: endpoint
|
|
34
|
+
type: string
|
|
35
|
+
description: Custom GCS endpoint URL
|
|
36
|
+
|
|
37
|
+
dependencies: []
|
|
38
|
+
|
|
39
|
+
metadata:
|
|
40
|
+
provider_url: https://cloud.google.com/storage
|
|
41
|
+
docs_url: https://cloud.google.com/storage/docs/apis
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: s3
|
|
2
|
+
module: storage
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: AWS S3 storage adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- uploadFile
|
|
8
|
+
- downloadFile
|
|
9
|
+
- deleteFile
|
|
10
|
+
- getSignedUrl
|
|
11
|
+
- getSignedUploadUrl
|
|
12
|
+
- listFiles
|
|
13
|
+
- moveFile
|
|
14
|
+
- copyFile
|
|
15
|
+
- getMetadata
|
|
16
|
+
|
|
17
|
+
does_not_implement: []
|
|
18
|
+
|
|
19
|
+
config:
|
|
20
|
+
required:
|
|
21
|
+
- name: access_key_id
|
|
22
|
+
type: string
|
|
23
|
+
description: AWS access key ID
|
|
24
|
+
secret: false
|
|
25
|
+
- name: secret_access_key
|
|
26
|
+
type: string
|
|
27
|
+
description: AWS secret access key
|
|
28
|
+
secret: true
|
|
29
|
+
- name: region
|
|
30
|
+
type: string
|
|
31
|
+
description: AWS region
|
|
32
|
+
secret: false
|
|
33
|
+
optional:
|
|
34
|
+
- name: endpoint
|
|
35
|
+
type: string
|
|
36
|
+
description: Custom S3 endpoint URL
|
|
37
|
+
- name: bucket
|
|
38
|
+
type: string
|
|
39
|
+
description: Default bucket name
|
|
40
|
+
- name: force_path_style
|
|
41
|
+
type: boolean
|
|
42
|
+
default: false
|
|
43
|
+
description: Force path-style URLs
|
|
44
|
+
|
|
45
|
+
dependencies: []
|
|
46
|
+
|
|
47
|
+
metadata:
|
|
48
|
+
provider_url: https://aws.amazon.com/s3
|
|
49
|
+
docs_url: https://docs.aws.amazon.com/AmazonS3/latest/APIReference
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: chargebee
|
|
2
|
+
module: subscriptions
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Chargebee subscriptions adapter for access management
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- getEntitlements
|
|
8
|
+
- hasAccess
|
|
9
|
+
- grantEntitlement
|
|
10
|
+
- revokeEntitlement
|
|
11
|
+
- getAccessHistory
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: api_key
|
|
18
|
+
type: string
|
|
19
|
+
description: Chargebee API key
|
|
20
|
+
secret: true
|
|
21
|
+
- name: site
|
|
22
|
+
type: string
|
|
23
|
+
description: Chargebee site name
|
|
24
|
+
|
|
25
|
+
dependencies:
|
|
26
|
+
- module: billing
|
|
27
|
+
purpose: Check subscription status
|
|
28
|
+
required: true
|
|
29
|
+
|
|
30
|
+
metadata:
|
|
31
|
+
provider_url: https://www.chargebee.com
|
|
32
|
+
docs_url: https://www.chargebee.com/docs/apis
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: stripe
|
|
2
|
+
module: subscriptions
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Stripe subscriptions adapter for access management
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- getEntitlements
|
|
8
|
+
- hasAccess
|
|
9
|
+
- grantEntitlement
|
|
10
|
+
- revokeEntitlement
|
|
11
|
+
- getAccessHistory
|
|
12
|
+
|
|
13
|
+
does_not_implement: []
|
|
14
|
+
|
|
15
|
+
config:
|
|
16
|
+
required:
|
|
17
|
+
- name: api_key
|
|
18
|
+
type: string
|
|
19
|
+
description: Stripe secret API key
|
|
20
|
+
secret: true
|
|
21
|
+
optional:
|
|
22
|
+
- name: api_version
|
|
23
|
+
type: string
|
|
24
|
+
default: "2023-10-16"
|
|
25
|
+
description: Stripe API version
|
|
26
|
+
|
|
27
|
+
dependencies:
|
|
28
|
+
- module: billing
|
|
29
|
+
purpose: Check subscription status
|
|
30
|
+
required: true
|
|
31
|
+
- module: audit_log
|
|
32
|
+
purpose: Log access events
|
|
33
|
+
required: false
|
|
34
|
+
|
|
35
|
+
metadata:
|
|
36
|
+
provider_url: https://stripe.com
|
|
37
|
+
docs_url: https://stripe.com/docs/billing/subscriptions
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: asana
|
|
2
|
+
module: tasks
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Asana task management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createTask
|
|
8
|
+
- getTask
|
|
9
|
+
- listTasks
|
|
10
|
+
- updateTask
|
|
11
|
+
- assignTask
|
|
12
|
+
- changeTaskStatus
|
|
13
|
+
- addTaskDependency
|
|
14
|
+
- removeTaskDependency
|
|
15
|
+
- completeTask
|
|
16
|
+
- archiveTask
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: access_token
|
|
23
|
+
type: string
|
|
24
|
+
description: Asana personal access token
|
|
25
|
+
secret: true
|
|
26
|
+
optional:
|
|
27
|
+
- name: workspace_id
|
|
28
|
+
type: string
|
|
29
|
+
description: Default workspace ID
|
|
30
|
+
- name: project_gid
|
|
31
|
+
type: string
|
|
32
|
+
description: Default project GID
|
|
33
|
+
|
|
34
|
+
dependencies:
|
|
35
|
+
- module: projects
|
|
36
|
+
purpose: Get project data
|
|
37
|
+
required: true
|
|
38
|
+
- module: users
|
|
39
|
+
purpose: Get user data for assignment
|
|
40
|
+
required: true
|
|
41
|
+
- module: notifications
|
|
42
|
+
purpose: Send task notifications
|
|
43
|
+
required: false
|
|
44
|
+
- module: audit_log
|
|
45
|
+
purpose: Log task events
|
|
46
|
+
required: false
|
|
47
|
+
|
|
48
|
+
metadata:
|
|
49
|
+
provider_url: https://asana.com
|
|
50
|
+
docs_url: https://developers.asana.com
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
name: jira
|
|
2
|
+
module: tasks
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Jira task management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createTask
|
|
8
|
+
- getTask
|
|
9
|
+
- listTasks
|
|
10
|
+
- updateTask
|
|
11
|
+
- assignTask
|
|
12
|
+
- changeTaskStatus
|
|
13
|
+
- addTaskDependency
|
|
14
|
+
- removeTaskDependency
|
|
15
|
+
- completeTask
|
|
16
|
+
- archiveTask
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: base_url
|
|
23
|
+
type: string
|
|
24
|
+
description: Jira instance URL
|
|
25
|
+
secret: false
|
|
26
|
+
- name: email
|
|
27
|
+
type: string
|
|
28
|
+
description: Jira admin email
|
|
29
|
+
secret: false
|
|
30
|
+
- name: api_token
|
|
31
|
+
type: string
|
|
32
|
+
description: Jira API token
|
|
33
|
+
secret: true
|
|
34
|
+
optional:
|
|
35
|
+
- name: project_key
|
|
36
|
+
type: string
|
|
37
|
+
description: Default project key
|
|
38
|
+
- name: cloud
|
|
39
|
+
type: boolean
|
|
40
|
+
default: true
|
|
41
|
+
description: Whether using Jira Cloud
|
|
42
|
+
|
|
43
|
+
dependencies:
|
|
44
|
+
- module: projects
|
|
45
|
+
purpose: Get project data
|
|
46
|
+
required: true
|
|
47
|
+
- module: users
|
|
48
|
+
purpose: Get user data for assignment
|
|
49
|
+
required: true
|
|
50
|
+
- module: notifications
|
|
51
|
+
purpose: Send task notifications
|
|
52
|
+
required: false
|
|
53
|
+
- module: audit_log
|
|
54
|
+
purpose: Log task events
|
|
55
|
+
required: false
|
|
56
|
+
|
|
57
|
+
metadata:
|
|
58
|
+
provider_url: https://www.atlassian.com/software/jira
|
|
59
|
+
docs_url: https://developer.atlassian.com/cloud/jira/platform
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
name: linear
|
|
2
|
+
module: tasks
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Linear task management adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- createTask
|
|
8
|
+
- getTask
|
|
9
|
+
- listTasks
|
|
10
|
+
- updateTask
|
|
11
|
+
- assignTask
|
|
12
|
+
- changeTaskStatus
|
|
13
|
+
- addTaskDependency
|
|
14
|
+
- removeTaskDependency
|
|
15
|
+
- completeTask
|
|
16
|
+
- archiveTask
|
|
17
|
+
|
|
18
|
+
does_not_implement: []
|
|
19
|
+
|
|
20
|
+
config:
|
|
21
|
+
required:
|
|
22
|
+
- name: api_key
|
|
23
|
+
type: string
|
|
24
|
+
description: Linear API key
|
|
25
|
+
secret: true
|
|
26
|
+
optional:
|
|
27
|
+
- name: team_id
|
|
28
|
+
type: string
|
|
29
|
+
description: Default team ID
|
|
30
|
+
- name: project_id
|
|
31
|
+
type: string
|
|
32
|
+
description: Default project ID
|
|
33
|
+
|
|
34
|
+
dependencies:
|
|
35
|
+
- module: projects
|
|
36
|
+
purpose: Get project data
|
|
37
|
+
required: true
|
|
38
|
+
- module: users
|
|
39
|
+
purpose: Get user data for assignment
|
|
40
|
+
required: true
|
|
41
|
+
- module: notifications
|
|
42
|
+
purpose: Send task notifications
|
|
43
|
+
required: false
|
|
44
|
+
- module: audit_log
|
|
45
|
+
purpose: Log task events
|
|
46
|
+
required: false
|
|
47
|
+
|
|
48
|
+
metadata:
|
|
49
|
+
provider_url: https://linear.app
|
|
50
|
+
docs_url: https://developers.linear.app
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
name: avalara
|
|
2
|
+
module: taxation
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Avalara taxation adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- calculateTax
|
|
8
|
+
- getTaxRate
|
|
9
|
+
- listTaxRates
|
|
10
|
+
- setTaxProfile
|
|
11
|
+
- getTaxProfile
|
|
12
|
+
- validateTaxId
|
|
13
|
+
- previewTax
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: account_id
|
|
20
|
+
type: string
|
|
21
|
+
description: Avalara account ID
|
|
22
|
+
secret: false
|
|
23
|
+
- name: license_key
|
|
24
|
+
type: string
|
|
25
|
+
description: Avalara license key
|
|
26
|
+
secret: true
|
|
27
|
+
optional:
|
|
28
|
+
- name: service_url
|
|
29
|
+
type: string
|
|
30
|
+
default: https://sandbox-rest.avatax.com
|
|
31
|
+
description: Avalara service URL
|
|
32
|
+
- name: company_code
|
|
33
|
+
type: string
|
|
34
|
+
description: Avalara company code
|
|
35
|
+
|
|
36
|
+
dependencies:
|
|
37
|
+
- module: billing
|
|
38
|
+
purpose: Access billing data for tax calculations
|
|
39
|
+
required: false
|
|
40
|
+
- module: invoicing
|
|
41
|
+
purpose: Access invoice data for tax calculations
|
|
42
|
+
required: false
|
|
43
|
+
- module: orders
|
|
44
|
+
purpose: Access order data for tax calculations
|
|
45
|
+
required: false
|
|
46
|
+
- module: audit_log
|
|
47
|
+
purpose: Log tax events
|
|
48
|
+
required: false
|
|
49
|
+
|
|
50
|
+
metadata:
|
|
51
|
+
provider_url: https://www.avalara.com
|
|
52
|
+
docs_url: https://developer.avalara.com
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: taxjar
|
|
2
|
+
module: taxation
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: TaxJar taxation adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- calculateTax
|
|
8
|
+
- getTaxRate
|
|
9
|
+
- listTaxRates
|
|
10
|
+
- setTaxProfile
|
|
11
|
+
- getTaxProfile
|
|
12
|
+
- validateTaxId
|
|
13
|
+
- previewTax
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: api_key
|
|
20
|
+
type: string
|
|
21
|
+
description: TaxJar API key
|
|
22
|
+
secret: true
|
|
23
|
+
optional:
|
|
24
|
+
- name: api_url
|
|
25
|
+
type: string
|
|
26
|
+
default: https://api.taxjar.com/v2
|
|
27
|
+
description: TaxJar API URL
|
|
28
|
+
- name: nexus_addresses
|
|
29
|
+
type: string
|
|
30
|
+
description: Nexus addresses JSON
|
|
31
|
+
|
|
32
|
+
dependencies:
|
|
33
|
+
- module: billing
|
|
34
|
+
purpose: Access billing data for tax calculations
|
|
35
|
+
required: false
|
|
36
|
+
- module: invoicing
|
|
37
|
+
purpose: Access invoice data for tax calculations
|
|
38
|
+
required: false
|
|
39
|
+
- module: orders
|
|
40
|
+
purpose: Access order data for tax calculations
|
|
41
|
+
required: false
|
|
42
|
+
- module: audit_log
|
|
43
|
+
purpose: Log tax events
|
|
44
|
+
required: false
|
|
45
|
+
|
|
46
|
+
metadata:
|
|
47
|
+
provider_url: https://www.taxjar.com
|
|
48
|
+
docs_url: https://developers.taxjar.com
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: datadog
|
|
2
|
+
module: trace_query
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Datadog APM trace query adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- queryTraces
|
|
8
|
+
- getTrace
|
|
9
|
+
- getSpan
|
|
10
|
+
- listServices
|
|
11
|
+
- searchTraces
|
|
12
|
+
- getTraceStats
|
|
13
|
+
- getErrorTraces
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: api_key
|
|
20
|
+
type: string
|
|
21
|
+
description: Datadog API key
|
|
22
|
+
secret: true
|
|
23
|
+
- name: app_key
|
|
24
|
+
type: string
|
|
25
|
+
description: Datadog application key
|
|
26
|
+
secret: true
|
|
27
|
+
optional:
|
|
28
|
+
- name: site
|
|
29
|
+
type: string
|
|
30
|
+
default: "datadoghq.com"
|
|
31
|
+
description: Datadog site
|
|
32
|
+
- name: service
|
|
33
|
+
type: string
|
|
34
|
+
description: Default service name filter
|
|
35
|
+
- name: env
|
|
36
|
+
type: string
|
|
37
|
+
description: Default environment filter
|
|
38
|
+
|
|
39
|
+
dependencies:
|
|
40
|
+
- module: error_tracking
|
|
41
|
+
purpose: Access error data for traces
|
|
42
|
+
required: false
|
|
43
|
+
- module: audit_log
|
|
44
|
+
purpose: Log trace query events
|
|
45
|
+
required: false
|
|
46
|
+
|
|
47
|
+
metadata:
|
|
48
|
+
provider_url: https://www.datadoghq.com
|
|
49
|
+
docs_url: https://docs.datadoghq.com
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: honeycomb
|
|
2
|
+
module: trace_query
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Honeycomb trace query adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- queryTraces
|
|
8
|
+
- getTrace
|
|
9
|
+
- getSpan
|
|
10
|
+
- listServices
|
|
11
|
+
- searchTraces
|
|
12
|
+
- getTraceStats
|
|
13
|
+
- getErrorTraces
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: api_key
|
|
20
|
+
type: string
|
|
21
|
+
description: Honeycomb API key
|
|
22
|
+
secret: true
|
|
23
|
+
- name: dataset
|
|
24
|
+
type: string
|
|
25
|
+
description: Honeycomb dataset name
|
|
26
|
+
secret: false
|
|
27
|
+
optional:
|
|
28
|
+
- name: environment
|
|
29
|
+
type: string
|
|
30
|
+
description: Honeycomb environment
|
|
31
|
+
|
|
32
|
+
dependencies:
|
|
33
|
+
- module: error_tracking
|
|
34
|
+
purpose: Access error data for traces
|
|
35
|
+
required: false
|
|
36
|
+
- module: audit_log
|
|
37
|
+
purpose: Log trace query events
|
|
38
|
+
required: false
|
|
39
|
+
|
|
40
|
+
metadata:
|
|
41
|
+
provider_url: https://www.honeycomb.io
|
|
42
|
+
docs_url: https://docs.honeycomb.io
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: jaeger
|
|
2
|
+
module: trace_query
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Jaeger trace query adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- queryTraces
|
|
8
|
+
- getTrace
|
|
9
|
+
- getSpan
|
|
10
|
+
- listServices
|
|
11
|
+
- searchTraces
|
|
12
|
+
- getTraceStats
|
|
13
|
+
- getErrorTraces
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: endpoint
|
|
20
|
+
type: string
|
|
21
|
+
description: Jaeger endpoint URL
|
|
22
|
+
secret: false
|
|
23
|
+
optional:
|
|
24
|
+
- name: api_key
|
|
25
|
+
type: string
|
|
26
|
+
description: Jaeger API key
|
|
27
|
+
secret: true
|
|
28
|
+
- name: service
|
|
29
|
+
type: string
|
|
30
|
+
description: Default service name filter
|
|
31
|
+
|
|
32
|
+
dependencies:
|
|
33
|
+
- module: error_tracking
|
|
34
|
+
purpose: Access error data for traces
|
|
35
|
+
required: false
|
|
36
|
+
- module: audit_log
|
|
37
|
+
purpose: Log trace query events
|
|
38
|
+
required: false
|
|
39
|
+
|
|
40
|
+
metadata:
|
|
41
|
+
provider_url: https://www.jaegertracing.io
|
|
42
|
+
docs_url: https://www.jaegertracing.io/docs
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: google-analytics
|
|
2
|
+
module: web_analytics
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Google Analytics web analytics adapter
|
|
5
|
+
|
|
6
|
+
implements:
|
|
7
|
+
- trackPageView
|
|
8
|
+
- trackSessionStart
|
|
9
|
+
- trackSessionEnd
|
|
10
|
+
- trackConversion
|
|
11
|
+
- getPageMetrics
|
|
12
|
+
- getAttributionReport
|
|
13
|
+
- getSessionReplay
|
|
14
|
+
|
|
15
|
+
does_not_implement: []
|
|
16
|
+
|
|
17
|
+
config:
|
|
18
|
+
required:
|
|
19
|
+
- name: measurement_id
|
|
20
|
+
type: string
|
|
21
|
+
description: Google Analytics measurement ID
|
|
22
|
+
- name: api_secret
|
|
23
|
+
type: string
|
|
24
|
+
description: Google Analytics API secret
|
|
25
|
+
secret: true
|
|
26
|
+
optional:
|
|
27
|
+
- name: property_id
|
|
28
|
+
type: string
|
|
29
|
+
description: Google Analytics 4 property ID
|
|
30
|
+
- name: credentials
|
|
31
|
+
type: string
|
|
32
|
+
description: Google service account credentials JSON
|
|
33
|
+
secret: true
|
|
34
|
+
|
|
35
|
+
dependencies:
|
|
36
|
+
- module: audit_log
|
|
37
|
+
purpose: Log analytics events
|
|
38
|
+
required: false
|
|
39
|
+
|
|
40
|
+
metadata:
|
|
41
|
+
provider_url: https://analytics.google.com
|
|
42
|
+
docs_url: https://developers.google.com/analytics
|