decentralised message store

chore: cleanup imports

serenity f2e7da01 fef7220f

Changed files
+4 -4
src
+1 -1
src/lib/sessions.ts
···
import type { WebSocket } from "ws";
import * as crypto from "node:crypto";
import { SESSIONS_SECRET } from "@/lib/utils/crypto";
-
import z from "zod";
+
import { z } from "zod";
export const sessionInfoSchema = z.object({
id: z.string(),
+1 -1
src/lib/types/gmstn.ts
···
import { comAtprotoRepoStrongRefSchema } from "@/lib/types/atproto";
-
import z from "zod";
+
import { z } from "zod";
export const systemsGmstnDevelopmentChannelRecordSchema = z.object({
$type: z.string(),
+1 -1
src/lib/types/ws/verify.ts
···
import { atUriSchema } from "@/lib/types/atproto";
-
import z from "zod/v4";
+
import { z } from "zod";
export const verificationRequestSchema = z.object({
interServiceJwt: z.unknown(),
+1 -1
src/lib/utils/atproto.ts
···
WebDidDocumentResolver,
WellKnownHandleResolver,
} from "@atcute/identity-resolver";
-
import z from "zod";
+
import { z } from "zod";
export const getRecordFromAtUri = async ({
authority,