initial commit
This commit is contained in:
175
packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts
vendored
Normal file
175
packages/db/shared/schemas/results/UserGroupByResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,175 @@
|
||||
import * as z from 'zod';
|
||||
export declare const UserGroupByResultSchema: z.ZodArray<z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
username: z.ZodString;
|
||||
password: z.ZodString;
|
||||
_count: z.ZodOptional<z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
username: z.ZodNumber;
|
||||
password: z.ZodNumber;
|
||||
patients: z.ZodNumber;
|
||||
appointments: z.ZodNumber;
|
||||
staff: z.ZodNumber;
|
||||
npiProviders: z.ZodNumber;
|
||||
claims: z.ZodNumber;
|
||||
insuranceCredentials: z.ZodNumber;
|
||||
updatedPayments: z.ZodNumber;
|
||||
backups: z.ZodNumber;
|
||||
backupDestinations: z.ZodNumber;
|
||||
notifications: z.ZodNumber;
|
||||
cloudFolders: z.ZodNumber;
|
||||
cloudFiles: z.ZodNumber;
|
||||
communications: z.ZodNumber;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number;
|
||||
staff: number;
|
||||
claims: number;
|
||||
appointments: number;
|
||||
username: number;
|
||||
password: number;
|
||||
communications: number;
|
||||
patients: number;
|
||||
npiProviders: number;
|
||||
insuranceCredentials: number;
|
||||
updatedPayments: number;
|
||||
backups: number;
|
||||
backupDestinations: number;
|
||||
notifications: number;
|
||||
cloudFolders: number;
|
||||
cloudFiles: number;
|
||||
}, {
|
||||
id: number;
|
||||
staff: number;
|
||||
claims: number;
|
||||
appointments: number;
|
||||
username: number;
|
||||
password: number;
|
||||
communications: number;
|
||||
patients: number;
|
||||
npiProviders: number;
|
||||
insuranceCredentials: number;
|
||||
updatedPayments: number;
|
||||
backups: number;
|
||||
backupDestinations: number;
|
||||
notifications: number;
|
||||
cloudFolders: number;
|
||||
cloudFiles: number;
|
||||
}>>;
|
||||
_sum: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
||||
id: z.ZodNullable<z.ZodNumber>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number | null;
|
||||
}, {
|
||||
id: number | null;
|
||||
}>>>;
|
||||
_avg: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
||||
id: z.ZodNullable<z.ZodNumber>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number | null;
|
||||
}, {
|
||||
id: number | null;
|
||||
}>>>;
|
||||
_min: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
||||
id: z.ZodNullable<z.ZodNumber>;
|
||||
username: z.ZodNullable<z.ZodString>;
|
||||
password: z.ZodNullable<z.ZodString>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
}, {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
}>>>;
|
||||
_max: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
||||
id: z.ZodNullable<z.ZodNumber>;
|
||||
username: z.ZodNullable<z.ZodString>;
|
||||
password: z.ZodNullable<z.ZodString>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
}, {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
}>>>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number;
|
||||
username: string;
|
||||
password: string;
|
||||
_count?: {
|
||||
id: number;
|
||||
staff: number;
|
||||
claims: number;
|
||||
appointments: number;
|
||||
username: number;
|
||||
password: number;
|
||||
communications: number;
|
||||
patients: number;
|
||||
npiProviders: number;
|
||||
insuranceCredentials: number;
|
||||
updatedPayments: number;
|
||||
backups: number;
|
||||
backupDestinations: number;
|
||||
notifications: number;
|
||||
cloudFolders: number;
|
||||
cloudFiles: number;
|
||||
} | undefined;
|
||||
_min?: {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
} | null | undefined;
|
||||
_max?: {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
} | null | undefined;
|
||||
_avg?: {
|
||||
id: number | null;
|
||||
} | null | undefined;
|
||||
_sum?: {
|
||||
id: number | null;
|
||||
} | null | undefined;
|
||||
}, {
|
||||
id: number;
|
||||
username: string;
|
||||
password: string;
|
||||
_count?: {
|
||||
id: number;
|
||||
staff: number;
|
||||
claims: number;
|
||||
appointments: number;
|
||||
username: number;
|
||||
password: number;
|
||||
communications: number;
|
||||
patients: number;
|
||||
npiProviders: number;
|
||||
insuranceCredentials: number;
|
||||
updatedPayments: number;
|
||||
backups: number;
|
||||
backupDestinations: number;
|
||||
notifications: number;
|
||||
cloudFolders: number;
|
||||
cloudFiles: number;
|
||||
} | undefined;
|
||||
_min?: {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
} | null | undefined;
|
||||
_max?: {
|
||||
id: number | null;
|
||||
username: string | null;
|
||||
password: string | null;
|
||||
} | null | undefined;
|
||||
_avg?: {
|
||||
id: number | null;
|
||||
} | null | undefined;
|
||||
_sum?: {
|
||||
id: number | null;
|
||||
} | null | undefined;
|
||||
}>, "many">;
|
||||
//# sourceMappingURL=UserGroupByResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user