update: Remove unused schema, and disable export on local schema

This commit is contained in:
mbaharip
2025-01-24 17:50:22 +07:00
parent cd2a6ee781
commit 29d22288e0
+2 -28
View File
@@ -90,7 +90,7 @@ export const Schema_v1_Config = z.object({
}),
});
export const Schema_Config_API = z
const Schema_Config_API = z
.object({
rootFolder: z.string(),
isTeamDrive: z.coerce.boolean(),
@@ -122,7 +122,7 @@ export const Schema_Config_API = z
{ message: "sharedDrive is required when isTeamDrive is true" },
);
export const Schema_v2_3_Config_Site = z.object({
const Schema_v2_3_Config_Site = z.object({
siteName: z.string(),
siteNameTemplate: z.string().optional().default("%s"),
siteDescription: z.string(),
@@ -299,32 +299,6 @@ export type ConfigurationValue<
K extends keyof z.infer<typeof Schema_App_Configuration>[T],
> = z.infer<typeof Schema_App_Configuration>[T][K];
export type ButtonState = "idle" | "loading";
export const Schema_Theme = z.object({
"background": z.string(),
"foreground": z.string(),
"card": z.string(),
"card-foreground": z.string(),
"popover": z.string(),
"popover-foreground": z.string(),
"primary": z.string(),
"primary-foreground": z.string(),
"secondary": z.string(),
"secondary-foreground": z.string(),
"muted": z.string(),
"muted-foreground": z.string(),
"accent": z.string(),
"accent-foreground": z.string(),
"destructive": z.string(),
"destructive-foreground": z.string(),
"border": z.string(),
"input": z.string(),
"ring": z.string(),
"radius": z.string(),
});
export type ThemeKeys = keyof z.infer<typeof Schema_Theme>;
export const Schema_FileToken = z.object({
id: z.string(),
exp: z.number(),