@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.
@@ -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.0",
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"
@@ -15,7 +15,7 @@
15
15
  "typecheck": "tsc --noEmit"
16
16
  },
17
17
  "dependencies": {
18
- "@zackbart/connecta": "0.18.0",
18
+ "@zackbart/connecta": "0.18.2",
19
19
  "quickjs-emscripten": "0.32.0"
20
20
  },
21
21
  "devDependencies": {