feat: handshake request schema
serenity 1 month ago a9101e4c 8b5b62cf
··· 1 1 + import { z } from "zod"; 2 2 + 3 3 + export const handshakeDataSchema = z.object({ 4 4 + interServiceJwt: z.string(), 5 5 + channelAtUris: z.array(z.string()), 6 6 + }); 7 7 + export type HandshakeData = z.infer<typeof handshakeDataSchema>;