frontend client for gemstone. decentralised workplace app

refactor: rename export

serenity 8467cf40 3a4375b5

+2 -2
src/lib/types/lexicon/systems.gmstn.development.lattice.ts
···
import { z } from "zod";
-
export const systemsGmstnDevelopmentLattice = z.object({
+
export const systemsGmstnDevelopmentLatticeRecordSchema = z.object({
$type: z.string(),
createdAt: z.coerce.date(),
description: z.string(),
});
export type SystemsGmstnDevelopmentLattice = z.infer<
-
typeof systemsGmstnDevelopmentLattice
+
typeof systemsGmstnDevelopmentLatticeRecordSchema
>;
+2 -2
src/lib/types/lexicon/systems.gmstn.development.shard.ts
···
import { z } from "zod";
-
export const systemsGmstnDevelopmentShard = z.object({
+
export const systemsGmstnDevelopmentShardRecordSchema = z.object({
$type: z.string(),
createdAt: z.coerce.date(),
description: z.string(),
});
export type SystemsGmstnDevelopmentShard = z.infer<
-
typeof systemsGmstnDevelopmentShard
+
typeof systemsGmstnDevelopmentShardRecordSchema
>;