@zackbart/connecta 0.18.0 → 0.18.2
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/CHANGELOG.md +108 -0
- package/README.md +79 -118
- package/dist/connectors/remote-mcp.d.ts +49 -2
- package/dist/connectors/remote-mcp.js +302 -7
- package/dist/providers/linear.d.ts +7 -1
- package/dist/providers/linear.js +12 -2
- package/dist/providers/mixpanel.d.ts +5 -1
- package/dist/providers/mixpanel.js +17 -3
- package/dist/providers/revenuecat.d.ts +79 -0
- package/dist/providers/revenuecat.js +323 -0
- package/dist/providers/stripe.d.ts +9 -3
- package/dist/providers/stripe.js +29 -6
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/documentation/connectors.md +26 -0
- package/documentation/linear.md +25 -4
- package/documentation/meta-tools.md +5 -0
- package/documentation/mixpanel.md +19 -0
- package/documentation/operations.md +2 -0
- package/documentation/provider-audit.md +32 -2
- package/documentation/provider-conventions.md +61 -36
- package/documentation/revenuecat.md +301 -0
- package/documentation/storage-and-credentials.md +55 -0
- package/documentation/stripe.md +32 -2
- package/documentation/upgrading.md +31 -4
- package/examples/worker/src/index.ts +5 -0
- package/package.json +5 -1
- package/templates/node/package.json +1 -1
|
@@ -123,6 +123,11 @@ function build(env: Env) {
|
|
|
123
123
|
auth: {
|
|
124
124
|
type: "headers",
|
|
125
125
|
headers: { Authorization: `Bearer ${env.DOWNSTREAM_TOKEN}` },
|
|
126
|
+
// The vault-backed alternative for a downstream that authenticates
|
|
127
|
+
// with a static key: the operator pastes it at /credentials and
|
|
128
|
+
// rotates it there, so no Worker secret holds it.
|
|
129
|
+
// type: "credential",
|
|
130
|
+
// credential: { label: "Notion internal integration token" },
|
|
126
131
|
},
|
|
127
132
|
}),
|
|
128
133
|
api("echo", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zackbart/connecta",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "One MCP to rule them all — a single MCP endpoint aggregating many downstream connectors behind a code-first surface of seven meta-tools.",
|
|
@@ -79,6 +79,10 @@
|
|
|
79
79
|
"types": "./dist/providers/notion.d.ts",
|
|
80
80
|
"import": "./dist/providers/notion.js"
|
|
81
81
|
},
|
|
82
|
+
"./providers/revenuecat": {
|
|
83
|
+
"types": "./dist/providers/revenuecat.d.ts",
|
|
84
|
+
"import": "./dist/providers/revenuecat.js"
|
|
85
|
+
},
|
|
82
86
|
"./providers/stripe": {
|
|
83
87
|
"types": "./dist/providers/stripe.d.ts",
|
|
84
88
|
"import": "./dist/providers/stripe.js"
|