fix: use rendering provider from claim form for MassHealth dentist search, default to Mary Scannell, select first office option
This commit is contained in:
@@ -5,6 +5,8 @@ export declare const UserFindFirstSelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
username: z.ZodOptional<z.ZodBoolean>;
|
||||
password: z.ZodOptional<z.ZodBoolean>;
|
||||
autoBackupEnabled: z.ZodOptional<z.ZodBoolean>;
|
||||
usbBackupEnabled: z.ZodOptional<z.ZodBoolean>;
|
||||
patients: z.ZodOptional<z.ZodBoolean>;
|
||||
appointments: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -27,6 +29,8 @@ export declare const UserFindFirstSelectZodSchema: z.ZodObject<{
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
communications?: boolean | undefined;
|
||||
autoBackupEnabled?: boolean | undefined;
|
||||
usbBackupEnabled?: boolean | undefined;
|
||||
patients?: boolean | undefined;
|
||||
npiProviders?: boolean | undefined;
|
||||
insuranceCredentials?: boolean | undefined;
|
||||
@@ -45,6 +49,8 @@ export declare const UserFindFirstSelectZodSchema: z.ZodObject<{
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
communications?: boolean | undefined;
|
||||
autoBackupEnabled?: boolean | undefined;
|
||||
usbBackupEnabled?: boolean | undefined;
|
||||
patients?: boolean | undefined;
|
||||
npiProviders?: boolean | undefined;
|
||||
insuranceCredentials?: boolean | undefined;
|
||||
@@ -65,7 +71,7 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.UserWhereUniqueInput, z.ZodTypeDef, Prisma.UserWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "username", "password"]>, z.ZodArray<z.ZodEnum<["id", "username", "password"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "username", "password", "autoBackupEnabled", "usbBackupEnabled"]>, z.ZodArray<z.ZodEnum<["id", "username", "password", "autoBackupEnabled", "usbBackupEnabled"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
include?: Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -74,7 +80,7 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "username" | "password" | ("id" | "username" | "password")[] | undefined;
|
||||
distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.UserWhereInput | undefined;
|
||||
include?: Prisma.UserInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -83,6 +89,6 @@ export declare const UserFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.UserWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "username" | "password" | ("id" | "username" | "password")[] | undefined;
|
||||
distinct?: "id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled" | ("id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstUser.schema.d.ts.map
|
||||
Reference in New Issue
Block a user