decentralised sync engine
0
fork

Configure Feed

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

refactor: additional session info fields

serenity a807aa04 4ce95eaa

+3 -1
+3 -1
src/lib/types/handshake.ts
··· 1 - import { atUriSchema } from "@/lib/types/atproto"; 1 + import { atUriSchema, didSchema } from "@/lib/types/atproto"; 2 2 import { z } from "zod"; 3 3 4 4 export const shardSessionInfoSchema = z.object({ ··· 6 6 token: z.string(), 7 7 fingerprint: z.string(), 8 8 allowedChannels: z.array(atUriSchema), 9 + shardDid: didSchema, 10 + latticeDid: didSchema, 9 11 }); 10 12 export type ShardSessionInfo = z.infer<typeof shardSessionInfoSchema>;