Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@escape.tech/graphql-armor": "3.1.1",
"@graphql-tools/merge": "9.0.8",
"@graphql-tools/merge": "9.1.6",
"@graphql-yoga/plugin-response-cache": "3.10.0",
"@hono-rate-limiter/cloudflare": "0.2.1",
"@hono/zod-openapi": "1.1.5",
Expand All @@ -21,12 +21,12 @@
"@scalar/hono-api-reference": "0.5.158",
"graphql": "16.9.0",
"graphql-yoga": "5.8.0",
"hono": "4.6.8",
"hono": "4.10.7",
"hono-rate-limiter": "0.4.0",
"zod": "4.1.13"
},
"devDependencies": {
"@packages/key-types": "workspace:*",
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
3 changes: 2 additions & 1 deletion apps/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { DurableObjectRateLimiter } from "@hono-rate-limiter/cloudflare";
import { OpenAPIHono } from "@hono/zod-openapi";
import { apiReference } from "@scalar/hono-api-reference";
import { cors } from "hono/cors";
import type { ContentfulStatusCode } from "hono/utils/http-status";

const app = new OpenAPIHono<{ Bindings: Env }>({ defaultHook });

Expand All @@ -36,7 +37,7 @@ app.use("/reference", referenceOgTagInjector(ogTitle)).get(
app.onError((err, c) =>
c.json<ErrorSchema>(
{ ok: false, message: err.message.replaceAll(/"/g, "'") },
{ status: "getResponse" in err ? err.getResponse().status : 500 },
"getResponse" in err ? (err.getResponse().status as ContentfulStatusCode) : 500,
),
);
app.notFound((c) =>
Expand Down
2 changes: 1 addition & 1 deletion apps/data-pipeline/larc-scraper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"cross-fetch": "4.0.0"
},
"devDependencies": {
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
2 changes: 1 addition & 1 deletion apps/data-pipeline/library-traffic-scraper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"zod": "4.1.13"
},
"devDependencies": {
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
2 changes: 1 addition & 1 deletion apps/data-pipeline/mview-refresher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"@packages/db": "workspace:*"
},
"devDependencies": {
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
2 changes: 1 addition & 1 deletion apps/data-pipeline/study-location-scraper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
},
"devDependencies": {
"domhandler": "5.0.3",
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
2 changes: 1 addition & 1 deletion apps/data-pipeline/websoc-scraper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"cross-fetch": "4.0.0"
},
"devDependencies": {
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
12 changes: 6 additions & 6 deletions apps/key-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"clsx": "2.1.1",
"drizzle-orm": "0.36.0",
"lucide-react": "0.460.0",
"next": "15.0.3",
"next": "16.0.10",
"next-auth": "5.0.0-beta.25",
"react": "18.3.1",
"react-dom": "18.3.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "7.67.0",
"sst": "3.3.22",
"tailwind-merge": "2.5.4",
Expand All @@ -39,12 +39,12 @@
},
"devDependencies": {
"@packages/key-types": "workspace:*",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"drizzle-kit": "0.27.0",
"postcss": "8.4.49",
"tailwindcss": "3.4.15",
"typescript": "5.6.3",
"wrangler": "3.100.0"
"wrangler": "3.99.0"
}
}
2 changes: 1 addition & 1 deletion apps/key-manager/src/components/key/view/KeyTableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const KeyTableRow: React.FC<Props> = ({ apiKey, apiKeyData, apiKeys, setApiKeys
const keyTypeToIcon = (keyType: string) => {
const className = "size-4";

let icon: React.ReactElement | null;
let icon: React.JSX.Element | null;

switch (keyType) {
case "publishable":
Expand Down
Loading