@interactive-inc/claude-funnel 0.55.0 → 0.57.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/dist/bin.js +466 -479
- package/dist/claude.d.ts +2 -2
- package/dist/connectors/slack.d.ts +17 -2
- package/dist/connectors/slack.js +1 -1
- package/dist/gateway/daemon.js +250 -263
- package/dist/gateway.d.ts +1 -1
- package/dist/gateway.js +1 -1
- package/dist/{index-CrngHrne.d.ts → index-DEeCwhk2.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/{local-config-sync-B8b04LrZ.d.ts → local-config-sync-E_t5_fjw.d.ts} +1 -1
- package/dist/local-config.d.ts +2 -2
- package/dist/{memory-diagnostic-log-BZ1VD80X.js → memory-diagnostic-log-BbFVqDzz.js} +4 -0
- package/dist/{memory-token-prompter-Lo3YRDzq.d.ts → memory-token-prompter-DpCC1_Dn.d.ts} +1 -1
- package/dist/{slack-listener-DUKPcpJH.js → slack-listener-BDyBqatt.js} +51 -2
- package/dist/{slack-listener-COQA8wAZ.d.ts → slack-listener-DFlAzMc7.d.ts} +25 -1
- package/package.json +3 -2
package/dist/claude.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { a as ProcessGuard, c as ChannelResolver, i as SessionStore, n as FunnelClaude, o as McpInstaller, r as LaunchOptions, s as GatewayController, t as FileProcessGuard } from "./file-process-guard-DI1742H5.js";
|
|
2
2
|
import { n as FunnelFileSystem } from "./file-system-Wub9Nto4.js";
|
|
3
3
|
import { t as FunnelProfiles } from "./profiles-EHTeCOqB.js";
|
|
4
|
-
import { C as profileSpecSchema, S as localConfigSchema, _ as LOCAL_CONFIG_FILENAME, b as channelSpecSchema, g as ConnectorSpec, h as ChannelSpec, i as FunnelTokenPrompter, m as FunnelLocalConfig, n as FunnelLocalConfigSync, r as LocalConfigSyncResult, t as ConnectorSyncOutcome, v as LocalConfig, x as connectorSpecSchema, y as ProfileSpec } from "./local-config-sync-
|
|
5
|
-
import { i as funnelJsonSchema, n as NodeFunnelTokenPrompter, r as FunnelLocalConfigWriter, t as MemoryFunnelTokenPrompter } from "./memory-token-prompter-
|
|
4
|
+
import { C as profileSpecSchema, S as localConfigSchema, _ as LOCAL_CONFIG_FILENAME, b as channelSpecSchema, g as ConnectorSpec, h as ChannelSpec, i as FunnelTokenPrompter, m as FunnelLocalConfig, n as FunnelLocalConfigSync, r as LocalConfigSyncResult, t as ConnectorSyncOutcome, v as LocalConfig, x as connectorSpecSchema, y as ProfileSpec } from "./local-config-sync-E_t5_fjw.js";
|
|
5
|
+
import { i as funnelJsonSchema, n as NodeFunnelTokenPrompter, r as FunnelLocalConfigWriter, t as MemoryFunnelTokenPrompter } from "./memory-token-prompter-DpCC1_Dn.js";
|
|
6
6
|
|
|
7
7
|
//#region lib/engine/mcp/mcp.d.ts
|
|
8
8
|
declare const FUNNEL_MCP_COMMAND = "bun";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as FunnelConnectorAdapter, t as CallInput } from "../connector-adapter-1PxjN-Uk.js";
|
|
2
|
-
import { a as slackConnectorSchema, c as SlackProcessedEmit, d as SlackSkipReason, i as SlackConnectorConfig, l as SlackProcessedSkip, n as SlackOnAppCreated, o as FunnelSlackEventProcessor, r as SlackPreprocessEvent, s as SlackProcessed, t as FunnelSlackListener, u as SlackRawEvent } from "../slack-listener-
|
|
2
|
+
import { a as slackConnectorSchema, c as SlackProcessedEmit, d as SlackSkipReason, f as SlackEvent, i as SlackConnectorConfig, l as SlackProcessedSkip, m as SlackReactionEvent, n as SlackOnAppCreated, o as FunnelSlackEventProcessor, p as SlackMessageEvent, r as SlackPreprocessEvent, s as SlackProcessed, t as FunnelSlackListener, u as SlackRawEvent } from "../slack-listener-DFlAzMc7.js";
|
|
3
3
|
|
|
4
4
|
//#region lib/engine/connectors/slack-adapter.d.ts
|
|
5
5
|
type SlackWebClientLike = {
|
|
@@ -14,6 +14,21 @@ declare class FunnelSlackAdapter extends FunnelConnectorAdapter {
|
|
|
14
14
|
private readonly client;
|
|
15
15
|
constructor(deps: Deps);
|
|
16
16
|
call(input: CallInput): Promise<unknown>;
|
|
17
|
+
postMessage(props: {
|
|
18
|
+
channel: string;
|
|
19
|
+
text: string;
|
|
20
|
+
threadTs?: string;
|
|
21
|
+
}): Promise<unknown>;
|
|
22
|
+
addReaction(props: {
|
|
23
|
+
channel: string;
|
|
24
|
+
timestamp: string;
|
|
25
|
+
name: string;
|
|
26
|
+
}): Promise<unknown>;
|
|
27
|
+
removeReaction(props: {
|
|
28
|
+
channel: string;
|
|
29
|
+
timestamp: string;
|
|
30
|
+
name: string;
|
|
31
|
+
}): Promise<unknown>;
|
|
17
32
|
}
|
|
18
33
|
//#endregion
|
|
19
|
-
export { FunnelSlackAdapter, FunnelSlackEventProcessor, FunnelSlackListener, SlackConnectorConfig, SlackOnAppCreated, SlackPreprocessEvent, SlackProcessed, SlackProcessedEmit, SlackProcessedSkip, SlackRawEvent, SlackSkipReason, SlackWebClientLike, slackConnectorSchema };
|
|
34
|
+
export { FunnelSlackAdapter, FunnelSlackEventProcessor, FunnelSlackListener, SlackConnectorConfig, SlackEvent, SlackMessageEvent, SlackOnAppCreated, SlackPreprocessEvent, SlackProcessed, SlackProcessedEmit, SlackProcessedSkip, SlackRawEvent, SlackReactionEvent, SlackSkipReason, SlackWebClientLike, slackConnectorSchema };
|
package/dist/connectors/slack.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { n as FunnelSlackEventProcessor, r as FunnelSlackAdapter, t as FunnelSlackListener } from "../slack-listener-
|
|
1
|
+
import { n as FunnelSlackEventProcessor, r as FunnelSlackAdapter, t as FunnelSlackListener } from "../slack-listener-BDyBqatt.js";
|
|
2
2
|
import { t as slackConnectorSchema } from "../slack-connector-schema-C1zEf4TG.js";
|
|
3
3
|
export { FunnelSlackAdapter, FunnelSlackEventProcessor, FunnelSlackListener, slackConnectorSchema };
|