Skip to content

Commit 3f6056e

Browse files
committed
Fix lint
1 parent 41b0767 commit 3f6056e

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

apps/interaction-worker/src/services/loop/loop-message-inbound-handler.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { LoopMessageInboundPayload } from "@poppy/schemas";
2-
import type { Env } from "hono";
32
import type { WorkerEnv } from "../../context";
43
import type { Database } from "../../db/client";
54
import type { MessageDebouncer } from "../../durable-objects/message-debouncer";

apps/interaction-worker/src/test/unit/do-debouncer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { env } from "cloudflare:test";
2-
import { beforeEach, describe, expect, it } from "vitest";
3-
import { DODebouncer } from "../../helpers/do-debouncer";
42
import type { LoopMessageInboundPayload } from "@poppy/schemas";
3+
import { beforeEach, describe, expect, it } from "vitest";
54
import type { WorkerEnv } from "../../context";
5+
import { DODebouncer } from "../../helpers/do-debouncer";
66

77
// Extend ProvidedEnv to include our bindings
88
declare module "cloudflare:test" {

apps/interaction-worker/worker-configuration.d.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
// Generated by Wrangler by running `wrangler types` (hash: d449d6645197778bf5655cecf9488ae7)
33
// Runtime types generated with workerd@1.20251105.0 2025-01-10 nodejs_compat
44
declare namespace Cloudflare {
5-
interface GlobalProps {
6-
mainModule: typeof import("./src/index");
7-
durableNamespaces: "MessageDebouncer";
8-
}
9-
interface Env {
10-
NAME: "poppy-interaction";
11-
LOOP_AUTHORIZATION_KEY: string;
12-
LOOP_SECRET_KEY: string;
13-
OPENAI_API_KEY: string;
14-
OPENROUTER_API_KEY: string;
15-
EXASEARCH_API_KEY: string;
16-
NODE_ENV: string;
17-
}
5+
interface GlobalProps {
6+
mainModule: typeof import("./src/index");
7+
durableNamespaces: "MessageDebouncer";
8+
}
9+
interface Env {
10+
NAME: "poppy-interaction";
11+
LOOP_AUTHORIZATION_KEY: string;
12+
LOOP_SECRET_KEY: string;
13+
OPENAI_API_KEY: string;
14+
OPENROUTER_API_KEY: string;
15+
EXASEARCH_API_KEY: string;
16+
NODE_ENV: string;
17+
}
1818
}
1919
interface Env extends Cloudflare.Env {}
2020

0 commit comments

Comments
 (0)