@interactive-inc/claude-funnel 0.67.0 → 0.68.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 +24 -3
- package/dist/bin.js +276 -270
- package/dist/{channels-BBA3GTAa.d.ts → channels-B0cifCfw.d.ts} +2 -1
- package/dist/claude.d.ts +2 -2
- package/dist/claude.js +5 -5
- package/dist/connector-descriptor-D4XtEsH8.d.ts +215 -0
- package/dist/connectors/discord.d.ts +3 -2
- package/dist/connectors/discord.js +1 -1
- package/dist/connectors/gh.d.ts +3 -2
- package/dist/connectors/gh.js +1 -1
- package/dist/connectors/schedule.d.ts +13 -11
- package/dist/connectors/schedule.js +3 -3
- package/dist/connectors/slack.d.ts +3 -2
- package/dist/connectors/slack.js +1 -1
- package/dist/diagnostic-event-CxMM5Bl2.js +78 -0
- package/dist/diagnostic-log-BsAg5qZK.d.ts +186 -0
- package/dist/diagnostics.d.ts +2 -2
- package/dist/diagnostics.js +3 -2
- package/dist/{discord-connector-CdjwPoty.js → discord-connector-CAcWifJn.js} +1 -1
- package/dist/docs.js +1 -1
- package/dist/doctor.d.ts +1 -1
- package/dist/event-log.d.ts +2 -0
- package/dist/event-log.js +3 -0
- package/dist/{file-process-guard-DAYe9Ndt.d.ts → file-process-guard-D-QatrwL.d.ts} +1 -1
- package/dist/{flume-source-listener-CLtsdcT2.d.ts → flume-source-listener-Ba8_1Mg-.d.ts} +2 -1
- package/dist/{funnel-diagnostics-B-PCuv_E.js → funnel-diagnostics-CAG7hJP0.js} +82 -139
- package/dist/{funnel-diagnostics-CnKus3Jg.d.ts → funnel-diagnostics-CDrZznTB.d.ts} +10 -13
- package/dist/{funnel-docs-BFcqITFA.js → funnel-docs-CI4hMkhq.js} +8 -3
- package/dist/{funnel-doctor-CviUTINw.d.ts → funnel-doctor-CY4S5cnz.d.ts} +1 -1
- package/dist/gateway/daemon.js +59 -79
- package/dist/gateway.d.ts +2 -2
- package/dist/gateway.js +1 -1
- package/dist/{gh-connector-D-iyjl-d.js → gh-connector-DMwI6zJA.js} +1 -1
- package/dist/{index-B4RvEaW-.d.ts → index-fHrKn4jm.d.ts} +7 -2
- package/dist/index.d.ts +18 -14
- package/dist/index.js +124 -30
- package/dist/local-config.d.ts +1 -1
- package/dist/logger.d.ts +6 -270
- package/dist/logger.js +6 -141
- package/dist/memory-event-log-BY8XjFzi.js +147 -0
- package/dist/{memory-token-prompter-D3R_kgM_.d.ts → memory-token-prompter-B20tl_aU.d.ts} +1 -1
- package/dist/{schedule-connector-teeDMHUe.js → schedule-connector-BXUOYgwZ.js} +59 -95
- package/dist/schedule-connector-schema-CNV8PgWX.js +137 -0
- package/dist/schedule-connector-schema-Tq5kJul-.d.ts +127 -0
- package/dist/{slack-connector-BE0KAjCs.js → slack-connector-CC3V2VXQ.js} +1 -1
- package/dist/{slot-fields-5ERhytIA.js → slot-fields-eCWizJqS.js} +1 -1
- package/dist/{sqlite-diagnostic-log-BDxfXGZy.js → sqlite-diagnostic-log-Qs4cf9I_.js} +53 -84
- package/dist/sqlite-event-log-BYgCFMxC.d.ts +284 -0
- package/dist/{funnel-log-sqlite-sink-CXbs3qQp.js → sqlite-event-log-eZuXKszJ.js} +52 -11
- package/package.json +16 -1
- package/dist/connector-descriptor-F75ZI8Fh.d.ts +0 -391
- package/dist/diagnostic-sql-reader-CoBk_EFF.js +0 -83
- package/dist/schedule-connector-schema-C2AChpwX.js +0 -31
- package/dist/schedule-connector-schema-DBko_Bf7.d.ts +0 -48
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
//#region lib/engine/connectors/schedule-connector-schema.d.ts
|
|
3
|
-
/**
|
|
4
|
-
* Catch-up behavior when the daemon was down past one or more matching minutes.
|
|
5
|
-
*
|
|
6
|
-
* - `latest`: fire once with the most recent missed match (default; preserves prior behavior).
|
|
7
|
-
* - `all`: fire once per missed minute, oldest first (capped at 24 h).
|
|
8
|
-
* - `skip`: never fire missed matches; only fire when the current minute matches.
|
|
9
|
-
*/
|
|
10
|
-
declare const scheduleCatchupPolicySchema: z.ZodEnum<{
|
|
11
|
-
latest: "latest";
|
|
12
|
-
all: "all";
|
|
13
|
-
skip: "skip";
|
|
14
|
-
}>;
|
|
15
|
-
type ScheduleCatchupPolicy = z.infer<typeof scheduleCatchupPolicySchema>;
|
|
16
|
-
declare const scheduleEntrySchema: z.ZodObject<{
|
|
17
|
-
id: z.ZodString;
|
|
18
|
-
cron: z.ZodString;
|
|
19
|
-
prompt: z.ZodString;
|
|
20
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
21
|
-
catchupPolicy: z.ZodDefault<z.ZodEnum<{
|
|
22
|
-
latest: "latest";
|
|
23
|
-
all: "all";
|
|
24
|
-
skip: "skip";
|
|
25
|
-
}>>;
|
|
26
|
-
}, z.core.$strip>;
|
|
27
|
-
type ScheduleEntry = z.infer<typeof scheduleEntrySchema>;
|
|
28
|
-
declare const scheduleConnectorSchema: z.ZodObject<{
|
|
29
|
-
id: z.ZodString;
|
|
30
|
-
name: z.ZodString;
|
|
31
|
-
type: z.ZodLiteral<"schedule">;
|
|
32
|
-
entries: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
33
|
-
id: z.ZodString;
|
|
34
|
-
cron: z.ZodString;
|
|
35
|
-
prompt: z.ZodString;
|
|
36
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
37
|
-
catchupPolicy: z.ZodDefault<z.ZodEnum<{
|
|
38
|
-
latest: "latest";
|
|
39
|
-
all: "all";
|
|
40
|
-
skip: "skip";
|
|
41
|
-
}>>;
|
|
42
|
-
}, z.core.$strip>>>;
|
|
43
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
44
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
45
|
-
}, z.core.$strip>;
|
|
46
|
-
type ScheduleConnectorConfig = z.infer<typeof scheduleConnectorSchema>;
|
|
47
|
-
//#endregion
|
|
48
|
-
export { scheduleConnectorSchema as a, scheduleCatchupPolicySchema as i, ScheduleConnectorConfig as n, scheduleEntrySchema as o, ScheduleEntry as r, ScheduleCatchupPolicy as t };
|