decentralised message store

feat: handshake request schema

serenity a9101e4c 8b5b62cf

Changed files
+7
src
lib
types
+7
src/lib/types/http/handlers.ts
···
+
import { z } from "zod";
+
+
export const handshakeDataSchema = z.object({
+
interServiceJwt: z.string(),
+
channelAtUris: z.array(z.string()),
+
});
+
export type HandshakeData = z.infer<typeof handshakeDataSchema>;