chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2024-12-18 20:42:40 +01:00
parent f67fed12e0
commit 1509786090
No known key found for this signature in database
16 changed files with 35 additions and 34 deletions

View file

@ -1,7 +1,7 @@
import { getCookie } from "@hono/hono/cookie";
import { Hooks, Plugin } from "@versia/kit";
import { User } from "@versia/kit/db";
import chalk from "chalk";
import { getCookie } from "hono/cookie";
import { jwtVerify } from "jose";
import { JOSEError, JWTExpired } from "jose/errors";
import { z } from "zod";

View file

@ -1,10 +1,10 @@
import { mimeLookup } from "@/content_types.ts";
import { randomString } from "@/math.ts";
import { setCookie } from "@hono/hono/cookie";
import { createRoute, z } from "@hono/zod-openapi";
import { Token, User, db } from "@versia/kit/db";
import { type SQL, and, eq, isNull } from "@versia/kit/drizzle";
import { OpenIdAccounts, RolePermissions, Users } from "@versia/kit/tables";
import { setCookie } from "hono/cookie";
import { SignJWT } from "jose";
import type { PluginType } from "../../index.ts";
import { automaticOidcFlow } from "../../utils.ts";