saasfunnels 0.1.0-beta.0 → 0.2.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/README.md +3 -1
- package/dist/library.js +25514 -0
- package/dist/saasfunnels.js +121 -6
- package/dist/types/capabilities.d.ts +14 -0
- package/dist/types/check-summary.d.ts +26 -0
- package/dist/types/feature-setup.d.ts +255 -0
- package/dist/types/identity.d.ts +14 -0
- package/dist/types/library.d.ts +3 -0
- package/dist/types/mcp.d.ts +91 -0
- package/dist/types/runtime-contracts.d.ts +73 -0
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -28,6 +28,8 @@ Local validation does not require credentials. Live reads use `SAASFUNNELS_API_K
|
|
|
28
28
|
|
|
29
29
|
Hosted interactive MCP uses Clerk OAuth at the application `/mcp` URL and does not require this CLI or a copied API key.
|
|
30
30
|
|
|
31
|
+
The application imports the exact versioned MCP registry through the server-side `saasfunnels/library` export. This keeps hosted Streamable HTTP and local stdio MCP on one package owner; it is not a browser API.
|
|
32
|
+
|
|
31
33
|
## Development
|
|
32
34
|
|
|
33
35
|
```bash
|
|
@@ -35,7 +37,7 @@ npm ci
|
|
|
35
37
|
npm run release:verify
|
|
36
38
|
```
|
|
37
39
|
|
|
38
|
-
The package allowlist is enforced as
|
|
40
|
+
The package allowlist is enforced as `LICENSE`, `README.md`, `package.json`, the `saasfunnels` executable bundle, and the typed server-side library bundle/declarations.
|
|
39
41
|
|
|
40
42
|
Documentation: https://docs.saasfunnels.ai/developer-tools/saasfunnels-cli
|
|
41
43
|
|