refactor: 🚚 Rename @versia/kit to @versia-server/kit
Some checks failed
Mirror to Codeberg / Mirror (push) Failing after 0s
Test Publish / build (client) (push) Failing after 0s
Test Publish / build (sdk) (push) Failing after 0s

This commit is contained in:
Jesse Wierzbinski 2025-06-15 23:50:34 +02:00
parent 3798e170d0
commit 1f03017327
No known key found for this signature in database
182 changed files with 606 additions and 485 deletions

View file

@ -1,5 +1,5 @@
import { ApiError } from "@versia/kit";
import { config } from "@versia-server/config";
import { ApiError } from "@versia-server/kit";
import { createMiddleware } from "hono/factory";
export const agentBans = createMiddleware(async (context, next) => {

View file

@ -1,4 +1,4 @@
import { ApiError } from "@versia/kit";
import { ApiError } from "@versia-server/kit";
import { createMiddleware } from "hono/factory";
export const boundaryCheck = createMiddleware(async (context, next) => {

View file

@ -1,6 +1,6 @@
import { getLogger } from "@logtape/logtape";
import { ApiError } from "@versia/kit";
import { config } from "@versia-server/config";
import { ApiError } from "@versia-server/kit";
import type { SocketAddress } from "bun";
import { createMiddleware } from "hono/factory";
import { matches } from "ip-matching";

View file

@ -1,4 +1,4 @@
import type { ApiError } from "@versia/kit";
import type { ApiError } from "@versia-server/kit";
import { env } from "bun";
import type { MiddlewareHandler } from "hono";
import { rateLimiter } from "hono-rate-limiter";