feat: database management - auto/USB backup toggles, folder browser, cron jobs

This commit is contained in:
ff
2026-04-11 00:32:39 -04:00
parent b9a7ddb6d7
commit 4025ca45e0
218 changed files with 1995 additions and 1381 deletions

View File

@@ -3489,18 +3489,24 @@ export namespace Prisma {
id: number | null
username: string | null
password: string | null
autoBackupEnabled: boolean | null
usbBackupEnabled: boolean | null
}
export type UserMaxAggregateOutputType = {
id: number | null
username: string | null
password: string | null
autoBackupEnabled: boolean | null
usbBackupEnabled: boolean | null
}
export type UserCountAggregateOutputType = {
id: number
username: number
password: number
autoBackupEnabled: number
usbBackupEnabled: number
_all: number
}
@@ -3517,18 +3523,24 @@ export namespace Prisma {
id?: true
username?: true
password?: true
autoBackupEnabled?: true
usbBackupEnabled?: true
}
export type UserMaxAggregateInputType = {
id?: true
username?: true
password?: true
autoBackupEnabled?: true
usbBackupEnabled?: true
}
export type UserCountAggregateInputType = {
id?: true
username?: true
password?: true
autoBackupEnabled?: true
usbBackupEnabled?: true
_all?: true
}
@@ -3622,6 +3634,8 @@ export namespace Prisma {
id: number
username: string
password: string
autoBackupEnabled: boolean
usbBackupEnabled: boolean
_count: UserCountAggregateOutputType | null
_avg: UserAvgAggregateOutputType | null
_sum: UserSumAggregateOutputType | null
@@ -3647,6 +3661,8 @@ export namespace Prisma {
id?: boolean
username?: boolean
password?: boolean
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: boolean | User$patientsArgs<ExtArgs>
appointments?: boolean | User$appointmentsArgs<ExtArgs>
staff?: boolean | User$staffArgs<ExtArgs>
@@ -3667,21 +3683,27 @@ export namespace Prisma {
id?: boolean
username?: boolean
password?: boolean
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
}, ExtArgs["result"]["user"]>
export type UserSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
id?: boolean
username?: boolean
password?: boolean
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
}, ExtArgs["result"]["user"]>
export type UserSelectScalar = {
id?: boolean
username?: boolean
password?: boolean
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
}
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "username" | "password", ExtArgs["result"]["user"]>
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "username" | "password" | "autoBackupEnabled" | "usbBackupEnabled", ExtArgs["result"]["user"]>
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
patients?: boolean | User$patientsArgs<ExtArgs>
appointments?: boolean | User$appointmentsArgs<ExtArgs>
@@ -3722,6 +3744,8 @@ export namespace Prisma {
id: number
username: string
password: string
autoBackupEnabled: boolean
usbBackupEnabled: boolean
}, ExtArgs["result"]["user"]>
composites: {}
}
@@ -4161,6 +4185,8 @@ export namespace Prisma {
readonly id: FieldRef<"User", 'Int'>
readonly username: FieldRef<"User", 'String'>
readonly password: FieldRef<"User", 'String'>
readonly autoBackupEnabled: FieldRef<"User", 'Boolean'>
readonly usbBackupEnabled: FieldRef<"User", 'Boolean'>
}
@@ -30008,7 +30034,9 @@ export namespace Prisma {
export const UserScalarFieldEnum: {
id: 'id',
username: 'username',
password: 'password'
password: 'password',
autoBackupEnabled: 'autoBackupEnabled',
usbBackupEnabled: 'usbBackupEnabled'
};
export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
@@ -30401,6 +30429,13 @@ export namespace Prisma {
/**
* Reference to a field of type 'Boolean'
*/
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
/**
* Reference to a field of type 'DateTime'
*/
@@ -30569,13 +30604,6 @@ export namespace Prisma {
/**
* Reference to a field of type 'Boolean'
*/
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
/**
* Reference to a field of type 'NotificationTypes'
*/
@@ -30670,6 +30698,8 @@ export namespace Prisma {
id?: IntFilter<"User"> | number
username?: StringFilter<"User"> | string
password?: StringFilter<"User"> | string
autoBackupEnabled?: BoolFilter<"User"> | boolean
usbBackupEnabled?: BoolFilter<"User"> | boolean
patients?: PatientListRelationFilter
appointments?: AppointmentListRelationFilter
staff?: StaffListRelationFilter
@@ -30689,6 +30719,8 @@ export namespace Prisma {
id?: SortOrder
username?: SortOrder
password?: SortOrder
autoBackupEnabled?: SortOrder
usbBackupEnabled?: SortOrder
patients?: PatientOrderByRelationAggregateInput
appointments?: AppointmentOrderByRelationAggregateInput
staff?: StaffOrderByRelationAggregateInput
@@ -30711,6 +30743,8 @@ export namespace Prisma {
OR?: UserWhereInput[]
NOT?: UserWhereInput | UserWhereInput[]
password?: StringFilter<"User"> | string
autoBackupEnabled?: BoolFilter<"User"> | boolean
usbBackupEnabled?: BoolFilter<"User"> | boolean
patients?: PatientListRelationFilter
appointments?: AppointmentListRelationFilter
staff?: StaffListRelationFilter
@@ -30730,6 +30764,8 @@ export namespace Prisma {
id?: SortOrder
username?: SortOrder
password?: SortOrder
autoBackupEnabled?: SortOrder
usbBackupEnabled?: SortOrder
_count?: UserCountOrderByAggregateInput
_avg?: UserAvgOrderByAggregateInput
_max?: UserMaxOrderByAggregateInput
@@ -30744,6 +30780,8 @@ export namespace Prisma {
id?: IntWithAggregatesFilter<"User"> | number
username?: StringWithAggregatesFilter<"User"> | string
password?: StringWithAggregatesFilter<"User"> | string
autoBackupEnabled?: BoolWithAggregatesFilter<"User"> | boolean
usbBackupEnabled?: BoolWithAggregatesFilter<"User"> | boolean
}
export type PatientWhereInput = {
@@ -32462,6 +32500,8 @@ export namespace Prisma {
export type UserCreateInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -32481,6 +32521,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -32499,6 +32541,8 @@ export namespace Prisma {
export type UserUpdateInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -32518,6 +32562,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -32537,17 +32583,23 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
}
export type UserUpdateManyMutationInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
}
export type UserUncheckedUpdateManyInput = {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
}
export type PatientCreateInput = {
@@ -34313,6 +34365,11 @@ export namespace Prisma {
not?: NestedStringFilter<$PrismaModel> | string
}
export type BoolFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolFilter<$PrismaModel> | boolean
}
export type PatientListRelationFilter = {
every?: PatientWhereInput
some?: PatientWhereInput
@@ -34447,6 +34504,8 @@ export namespace Prisma {
id?: SortOrder
username?: SortOrder
password?: SortOrder
autoBackupEnabled?: SortOrder
usbBackupEnabled?: SortOrder
}
export type UserAvgOrderByAggregateInput = {
@@ -34457,12 +34516,16 @@ export namespace Prisma {
id?: SortOrder
username?: SortOrder
password?: SortOrder
autoBackupEnabled?: SortOrder
usbBackupEnabled?: SortOrder
}
export type UserMinOrderByAggregateInput = {
id?: SortOrder
username?: SortOrder
password?: SortOrder
autoBackupEnabled?: SortOrder
usbBackupEnabled?: SortOrder
}
export type UserSumOrderByAggregateInput = {
@@ -34503,6 +34566,14 @@ export namespace Prisma {
_max?: NestedStringFilter<$PrismaModel>
}
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
_count?: NestedIntFilter<$PrismaModel>
_min?: NestedBoolFilter<$PrismaModel>
_max?: NestedBoolFilter<$PrismaModel>
}
export type DateTimeFilter<$PrismaModel = never> = {
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
in?: Date[] | string[] | ListDateTimeFieldRefInput<$PrismaModel>
@@ -35700,11 +35771,6 @@ export namespace Prisma {
userId?: SortOrder
}
export type BoolFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolFilter<$PrismaModel> | boolean
}
export type BackupDestinationCountOrderByAggregateInput = {
id?: SortOrder
userId?: SortOrder
@@ -35739,14 +35805,6 @@ export namespace Prisma {
userId?: SortOrder
}
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
_count?: NestedIntFilter<$PrismaModel>
_min?: NestedBoolFilter<$PrismaModel>
_max?: NestedBoolFilter<$PrismaModel>
}
export type EnumNotificationTypesFilter<$PrismaModel = never> = {
equals?: $Enums.NotificationTypes | EnumNotificationTypesFieldRefInput<$PrismaModel>
in?: $Enums.NotificationTypes[] | ListEnumNotificationTypesFieldRefInput<$PrismaModel>
@@ -36327,6 +36385,10 @@ export namespace Prisma {
set?: string
}
export type BoolFieldUpdateOperationsInput = {
set?: boolean
}
export type PatientUpdateManyWithoutUserNestedInput = {
create?: XOR<PatientCreateWithoutUserInput, PatientUncheckedCreateWithoutUserInput> | PatientCreateWithoutUserInput[] | PatientUncheckedCreateWithoutUserInput[]
connectOrCreate?: PatientCreateOrConnectWithoutUserInput | PatientCreateOrConnectWithoutUserInput[]
@@ -37871,10 +37933,6 @@ export namespace Prisma {
connect?: UserWhereUniqueInput
}
export type BoolFieldUpdateOperationsInput = {
set?: boolean
}
export type UserUpdateOneRequiredWithoutBackupDestinationsNestedInput = {
create?: XOR<UserCreateWithoutBackupDestinationsInput, UserUncheckedCreateWithoutBackupDestinationsInput>
connectOrCreate?: UserCreateOrConnectWithoutBackupDestinationsInput
@@ -38190,6 +38248,11 @@ export namespace Prisma {
not?: NestedStringFilter<$PrismaModel> | string
}
export type NestedBoolFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolFilter<$PrismaModel> | boolean
}
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
equals?: number | IntFieldRefInput<$PrismaModel>
in?: number[] | ListIntFieldRefInput<$PrismaModel>
@@ -38234,6 +38297,14 @@ export namespace Prisma {
_max?: NestedStringFilter<$PrismaModel>
}
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
_count?: NestedIntFilter<$PrismaModel>
_min?: NestedBoolFilter<$PrismaModel>
_max?: NestedBoolFilter<$PrismaModel>
}
export type NestedDateTimeFilter<$PrismaModel = never> = {
equals?: Date | string | DateTimeFieldRefInput<$PrismaModel>
in?: Date[] | string[] | ListDateTimeFieldRefInput<$PrismaModel>
@@ -38558,19 +38629,6 @@ export namespace Prisma {
_max?: NestedEnumPaymentMethodFilter<$PrismaModel>
}
export type NestedBoolFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolFilter<$PrismaModel> | boolean
}
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
_count?: NestedIntFilter<$PrismaModel>
_min?: NestedBoolFilter<$PrismaModel>
_max?: NestedBoolFilter<$PrismaModel>
}
export type NestedEnumNotificationTypesFilter<$PrismaModel = never> = {
equals?: $Enums.NotificationTypes | EnumNotificationTypesFieldRefInput<$PrismaModel>
in?: $Enums.NotificationTypes[] | ListEnumNotificationTypesFieldRefInput<$PrismaModel>
@@ -39525,6 +39583,8 @@ export namespace Prisma {
export type UserCreateWithoutPatientsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderCreateNestedManyWithoutUserInput
@@ -39543,6 +39603,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderUncheckedCreateNestedManyWithoutUserInput
@@ -39847,6 +39909,8 @@ export namespace Prisma {
export type UserUpdateWithoutPatientsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUpdateManyWithoutUserNestedInput
@@ -39865,6 +39929,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUncheckedUpdateManyWithoutUserNestedInput
@@ -40099,6 +40165,8 @@ export namespace Prisma {
export type UserCreateWithoutAppointmentsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderCreateNestedManyWithoutUserInput
@@ -40117,6 +40185,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderUncheckedCreateNestedManyWithoutUserInput
@@ -40334,6 +40404,8 @@ export namespace Prisma {
export type UserUpdateWithoutAppointmentsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUpdateManyWithoutUserNestedInput
@@ -40352,6 +40424,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUncheckedUpdateManyWithoutUserNestedInput
@@ -40433,6 +40507,8 @@ export namespace Prisma {
export type UserCreateWithoutStaffInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderCreateNestedManyWithoutUserInput
@@ -40451,6 +40527,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
npiProviders?: NpiProviderUncheckedCreateNestedManyWithoutUserInput
@@ -40582,6 +40660,8 @@ export namespace Prisma {
export type UserUpdateWithoutStaffInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUpdateManyWithoutUserNestedInput
@@ -40600,6 +40680,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
npiProviders?: NpiProviderUncheckedUpdateManyWithoutUserNestedInput
@@ -40649,6 +40731,8 @@ export namespace Prisma {
export type UserCreateWithoutNpiProvidersInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -40667,6 +40751,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -40700,6 +40786,8 @@ export namespace Prisma {
export type UserUpdateWithoutNpiProvidersInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -40718,6 +40806,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -41047,6 +41137,8 @@ export namespace Prisma {
export type UserCreateWithoutClaimsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -41065,6 +41157,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -41340,6 +41434,8 @@ export namespace Prisma {
export type UserUpdateWithoutClaimsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -41358,6 +41454,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -41873,6 +41971,8 @@ export namespace Prisma {
export type UserCreateWithoutInsuranceCredentialsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -41891,6 +41991,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -41924,6 +42026,8 @@ export namespace Prisma {
export type UserUpdateWithoutInsuranceCredentialsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -41942,6 +42046,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -42289,6 +42395,8 @@ export namespace Prisma {
export type UserCreateWithoutUpdatedPaymentsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -42307,6 +42415,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -42538,6 +42648,8 @@ export namespace Prisma {
export type UserUpdateWithoutUpdatedPaymentsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -42556,6 +42668,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -42773,6 +42887,8 @@ export namespace Prisma {
export type UserCreateWithoutBackupsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -42791,6 +42907,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -42824,6 +42942,8 @@ export namespace Prisma {
export type UserUpdateWithoutBackupsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -42842,6 +42962,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -42859,6 +42981,8 @@ export namespace Prisma {
export type UserCreateWithoutBackupDestinationsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -42877,6 +43001,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -42910,6 +43036,8 @@ export namespace Prisma {
export type UserUpdateWithoutBackupDestinationsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -42928,6 +43056,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -42945,6 +43075,8 @@ export namespace Prisma {
export type UserCreateWithoutNotificationsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -42963,6 +43095,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -42996,6 +43130,8 @@ export namespace Prisma {
export type UserUpdateWithoutNotificationsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -43014,6 +43150,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -43084,6 +43222,8 @@ export namespace Prisma {
export type UserCreateWithoutCloudFoldersInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -43102,6 +43242,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -43216,6 +43358,8 @@ export namespace Prisma {
export type UserUpdateWithoutCloudFoldersInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -43234,6 +43378,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -43267,6 +43413,8 @@ export namespace Prisma {
export type UserCreateWithoutCloudFilesInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -43285,6 +43433,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -43365,6 +43515,8 @@ export namespace Prisma {
export type UserUpdateWithoutCloudFilesInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -43383,6 +43535,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput
@@ -43583,6 +43737,8 @@ export namespace Prisma {
export type UserCreateWithoutCommunicationsInput = {
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientCreateNestedManyWithoutUserInput
appointments?: AppointmentCreateNestedManyWithoutUserInput
staff?: StaffCreateNestedManyWithoutUserInput
@@ -43601,6 +43757,8 @@ export namespace Prisma {
id?: number
username: string
password: string
autoBackupEnabled?: boolean
usbBackupEnabled?: boolean
patients?: PatientUncheckedCreateNestedManyWithoutUserInput
appointments?: AppointmentUncheckedCreateNestedManyWithoutUserInput
staff?: StaffUncheckedCreateNestedManyWithoutUserInput
@@ -43700,6 +43858,8 @@ export namespace Prisma {
export type UserUpdateWithoutCommunicationsInput = {
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUpdateManyWithoutUserNestedInput
appointments?: AppointmentUpdateManyWithoutUserNestedInput
staff?: StaffUpdateManyWithoutUserNestedInput
@@ -43718,6 +43878,8 @@ export namespace Prisma {
id?: IntFieldUpdateOperationsInput | number
username?: StringFieldUpdateOperationsInput | string
password?: StringFieldUpdateOperationsInput | string
autoBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
usbBackupEnabled?: BoolFieldUpdateOperationsInput | boolean
patients?: PatientUncheckedUpdateManyWithoutUserNestedInput
appointments?: AppointmentUncheckedUpdateManyWithoutUserNestedInput
staff?: StaffUncheckedUpdateManyWithoutUserNestedInput