
* Redesign * Better form * Remove searchKey * Update macaw * Test setup * fix build * Create curly-jars-doubt.md * Unify vitest to (hopefully) fix build * fix lock * update macaw and review fixes * fix build
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
import { z } from "zod";
|
|
|
|
export const AppConfigurationSchema = z.object({
|
|
appId: z.string().min(3),
|
|
indexNamePrefix: z.string().optional(),
|
|
secretKey: z.string().min(3),
|
|
});
|
|
|
|
export type AppConfigurationFields = z.infer<typeof AppConfigurationSchema>;
|