This commit is contained in:
@@ -10,6 +10,22 @@ const shape = z.object({
|
||||
})
|
||||
.nullable()
|
||||
.catch(null),
|
||||
dbAuth: z
|
||||
.object({
|
||||
username: z.string(),
|
||||
password: z.string(),
|
||||
database: z.string(),
|
||||
})
|
||||
.nullable()
|
||||
.catch(null),
|
||||
spacedAuth: z
|
||||
.object({
|
||||
username: z.string(),
|
||||
password: z.string(),
|
||||
})
|
||||
.nullable()
|
||||
.catch(null),
|
||||
enableExplorer: z.boolean().nullable().catch(null),
|
||||
})
|
||||
|
||||
export const storeJson = FileHelper.json(
|
||||
|
||||
Reference in New Issue
Block a user