decentralised sync engine

refactor: what was i doing lol

serenity 98a7c777 74ae5ca8

Changed files
-14
src
-14
src/lib/types/lexicon/systems.gmstn.development.lattice.ts
···
-
import { comAtprotoRepoStrongRefSchema } from "@/lib/types/atproto";
-
import { z } from "zod";
-
-
export const systemsGmstnDevelopmentChannelRecordSchema = z.object({
-
$type: z.string(),
-
name: z.string(),
-
topic: z.string(),
-
storeAt: comAtprotoRepoStrongRefSchema,
-
routeThrough: comAtprotoRepoStrongRefSchema,
-
createdAt: z.coerce.date(),
-
});
-
export type SystemsGmstnDevelopmentChannel = z.infer<
-
typeof systemsGmstnDevelopmentChannelRecordSchema
-
>;