initial commit
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
import * as z from 'zod';
|
||||
export const UserGroupByResultSchema = z.array(z.object({
|
||||
id: z.number().int(),
|
||||
username: z.string(),
|
||||
password: z.string(),
|
||||
_count: z.object({
|
||||
id: z.number(),
|
||||
username: z.number(),
|
||||
password: z.number(),
|
||||
patients: z.number(),
|
||||
appointments: z.number(),
|
||||
staff: z.number(),
|
||||
npiProviders: z.number(),
|
||||
claims: z.number(),
|
||||
insuranceCredentials: z.number(),
|
||||
updatedPayments: z.number(),
|
||||
backups: z.number(),
|
||||
backupDestinations: z.number(),
|
||||
notifications: z.number(),
|
||||
cloudFolders: z.number(),
|
||||
cloudFiles: z.number(),
|
||||
communications: z.number()
|
||||
}).optional(),
|
||||
_sum: z.object({
|
||||
id: z.number().nullable()
|
||||
}).nullable().optional(),
|
||||
_avg: z.object({
|
||||
id: z.number().nullable()
|
||||
}).nullable().optional(),
|
||||
_min: z.object({
|
||||
id: z.number().int().nullable(),
|
||||
username: z.string().nullable(),
|
||||
password: z.string().nullable()
|
||||
}).nullable().optional(),
|
||||
_max: z.object({
|
||||
id: z.number().int().nullable(),
|
||||
username: z.string().nullable(),
|
||||
password: z.string().nullable()
|
||||
}).nullable().optional()
|
||||
}));
|
||||
Reference in New Issue
Block a user