@interactive-inc/claude-funnel 0.27.0 → 0.28.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 +184 -184
- package/dist/{connector-diagnostic-log-Clb2sCcz.d.ts → connector-diagnostic-log-OPpPi9V9.d.ts} +2 -0
- package/dist/connectors/discord.d.ts +1 -1
- package/dist/connectors/gh.d.ts +1 -1
- package/dist/connectors/schedule.d.ts +1 -1
- package/dist/connectors/slack.d.ts +1 -1
- package/dist/gateway/daemon.js +64 -64
- package/dist/index.d.ts +11 -4
- package/dist/index.js +54 -1
- package/dist/{schedule-listener-C2-KqHQc.d.ts → schedule-listener-3M6WkH1Y.d.ts} +1 -1
- package/dist/{slack-listener-BMknoyVr.d.ts → slack-listener-CLTiOEJw.d.ts} +1 -1
- package/package.json +1 -1
package/dist/{connector-diagnostic-log-Clb2sCcz.d.ts → connector-diagnostic-log-OPpPi9V9.d.ts}
RENAMED
|
@@ -200,6 +200,8 @@ declare abstract class ConnectorDiagnosticLog {
|
|
|
200
200
|
abstract queryRaw(query: ConnectorRawQuery): StoredRawEvent[];
|
|
201
201
|
abstract queryProcessed(query: ConnectorProcessedQuery): StoredProcessedEvent[];
|
|
202
202
|
abstract queryConnection(query: ConnectorConnectionQuery): StoredConnectionEvent[];
|
|
203
|
+
/** Drop every diagnostic row across all three tables and reclaim the files. */
|
|
204
|
+
abstract clear(): void;
|
|
203
205
|
abstract close(): void;
|
|
204
206
|
}
|
|
205
207
|
//#endregion
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { n as FunnelConnectorAdapter, t as CallInput } from "../connector-adapter-VA6undzc.js";
|
|
2
2
|
import { n as discordConnectorSchema, t as DiscordConnectorConfig } from "../discord-connector-schema-Df_McRJI.js";
|
|
3
|
-
import { S as NotifyFn, b as FunnelLogger, o as ConnectorDiagnosticLog, x as FunnelConnectorListener } from "../connector-diagnostic-log-
|
|
3
|
+
import { S as NotifyFn, b as FunnelLogger, o as ConnectorDiagnosticLog, x as FunnelConnectorListener } from "../connector-diagnostic-log-OPpPi9V9.js";
|
|
4
4
|
|
|
5
5
|
//#region lib/engine/http/http-client.d.ts
|
|
6
6
|
type HttpRequest = {
|
package/dist/connectors/gh.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as FunnelConnectorAdapter, t as CallInput } from "../connector-adapter-VA6undzc.js";
|
|
2
|
-
import { S as NotifyFn, b as FunnelLogger, o as ConnectorDiagnosticLog, x as FunnelConnectorListener } from "../connector-diagnostic-log-
|
|
2
|
+
import { S as NotifyFn, b as FunnelLogger, o as ConnectorDiagnosticLog, x as FunnelConnectorListener } from "../connector-diagnostic-log-OPpPi9V9.js";
|
|
3
3
|
import { a as FunnelProcessRunner, n as ghConnectorSchema, t as GhConnectorConfig } from "../gh-connector-schema-CQmEWzdV.js";
|
|
4
4
|
|
|
5
5
|
//#region lib/connectors/gh-adapter.d.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as ScheduleEntry, d as scheduleEntrySchema, l as scheduleCatchupPolicySchema, n as ScheduleOnFired, o as ScheduleCatchupPolicy, r as ScheduleStateStore, s as ScheduleConnectorConfig, t as FunnelScheduleListener, u as scheduleConnectorSchema } from "../schedule-listener-
|
|
1
|
+
import { c as ScheduleEntry, d as scheduleEntrySchema, l as scheduleCatchupPolicySchema, n as ScheduleOnFired, o as ScheduleCatchupPolicy, r as ScheduleStateStore, s as ScheduleConnectorConfig, t as FunnelScheduleListener, u as scheduleConnectorSchema } from "../schedule-listener-3M6WkH1Y.js";
|
|
2
2
|
|
|
3
3
|
//#region lib/connectors/match-cron.d.ts
|
|
4
4
|
declare const matchCron: (expr: string, date: Date) => boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as FunnelConnectorAdapter, t as CallInput } from "../connector-adapter-VA6undzc.js";
|
|
2
|
-
import { a as SlackProcessed, c as SlackRawEvent, d as slackConnectorSchema, i as FunnelSlackEventProcessor, l as SlackSkipReason, n as SlackOnAppCreated, o as SlackProcessedEmit, r as SlackPreprocessEvent, s as SlackProcessedSkip, t as FunnelSlackListener, u as SlackConnectorConfig } from "../slack-listener-
|
|
2
|
+
import { a as SlackProcessed, c as SlackRawEvent, d as slackConnectorSchema, i as FunnelSlackEventProcessor, l as SlackSkipReason, n as SlackOnAppCreated, o as SlackProcessedEmit, r as SlackPreprocessEvent, s as SlackProcessedSkip, t as FunnelSlackListener, u as SlackConnectorConfig } from "../slack-listener-CLTiOEJw.js";
|
|
3
3
|
|
|
4
4
|
//#region lib/connectors/slack-adapter.d.ts
|
|
5
5
|
type SlackWebClientLike = {
|