decentralised sync engine
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: expand uri schema

serenity 5e139ebd 0856d32d

+2
+2
src/lib/types/handshake.ts
··· 1 + import { atUriSchema } from "@/lib/types/atproto"; 1 2 import { z } from "zod"; 2 3 3 4 export const sessionInfoSchema = z.object({ 4 5 id: z.string(), 5 6 token: z.string(), 6 7 fingerprint: z.string(), 8 + allowedChannels: z.array(atUriSchema), 7 9 }); 8 10 export type SessionInfo = z.infer<typeof sessionInfoSchema>;