@interactive-inc/claude-funnel 0.51.0 → 0.53.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interactive-inc/claude-funnel",
3
- "version": "0.51.0",
3
+ "version": "0.53.0",
4
4
  "description": "Hub CLI that routes external events (Slack / GitHub / Discord) to Claude Code agents through subscription channels over MCP.",
5
5
  "keywords": [
6
6
  "bun",
@@ -1,11 +0,0 @@
1
- //#region lib/connectors/connector-adapter.d.ts
2
- type CallInput = {
3
- method: string;
4
- path: string;
5
- body?: unknown;
6
- };
7
- declare abstract class FunnelConnectorAdapter {
8
- abstract call(input: CallInput): Promise<unknown>;
9
- }
10
- //#endregion
11
- export { FunnelConnectorAdapter as n, CallInput as t };