1747 lines
64 KiB
TypeScript
1747 lines
64 KiB
TypeScript
|
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
/* eslint-disable */
|
|
// biome-ignore-all lint: generated file
|
|
// @ts-nocheck
|
|
/*
|
|
* This file exports the `Users` model and its related types.
|
|
*
|
|
* 🟢 You can import this file directly.
|
|
*/
|
|
import type * as runtime from "@prisma/client/runtime/client"
|
|
import type * as $Enums from "../enums"
|
|
import type * as Prisma from "../internal/prismaNamespace"
|
|
|
|
/**
|
|
* Model Users
|
|
*
|
|
*/
|
|
export type UsersModel = runtime.Types.Result.DefaultSelection<Prisma.$UsersPayload>
|
|
|
|
export type AggregateUsers = {
|
|
_count: UsersCountAggregateOutputType | null
|
|
_min: UsersMinAggregateOutputType | null
|
|
_max: UsersMaxAggregateOutputType | null
|
|
}
|
|
|
|
export type UsersMinAggregateOutputType = {
|
|
id: string | null
|
|
first_name: string | null
|
|
last_name: string | null
|
|
email: string | null
|
|
phone_number: string | null
|
|
residence: string | null
|
|
role: $Enums.Roles | null
|
|
}
|
|
|
|
export type UsersMaxAggregateOutputType = {
|
|
id: string | null
|
|
first_name: string | null
|
|
last_name: string | null
|
|
email: string | null
|
|
phone_number: string | null
|
|
residence: string | null
|
|
role: $Enums.Roles | null
|
|
}
|
|
|
|
export type UsersCountAggregateOutputType = {
|
|
id: number
|
|
first_name: number
|
|
last_name: number
|
|
email: number
|
|
phone_number: number
|
|
residence: number
|
|
role: number
|
|
_all: number
|
|
}
|
|
|
|
|
|
export type UsersMinAggregateInputType = {
|
|
id?: true
|
|
first_name?: true
|
|
last_name?: true
|
|
email?: true
|
|
phone_number?: true
|
|
residence?: true
|
|
role?: true
|
|
}
|
|
|
|
export type UsersMaxAggregateInputType = {
|
|
id?: true
|
|
first_name?: true
|
|
last_name?: true
|
|
email?: true
|
|
phone_number?: true
|
|
residence?: true
|
|
role?: true
|
|
}
|
|
|
|
export type UsersCountAggregateInputType = {
|
|
id?: true
|
|
first_name?: true
|
|
last_name?: true
|
|
email?: true
|
|
phone_number?: true
|
|
residence?: true
|
|
role?: true
|
|
_all?: true
|
|
}
|
|
|
|
export type UsersAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Filter which Users to aggregate.
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of Users to fetch.
|
|
*/
|
|
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the start position
|
|
*/
|
|
cursor?: Prisma.UsersWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` Users from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` Users.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Count returned Users
|
|
**/
|
|
_count?: true | UsersCountAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to find the minimum value
|
|
**/
|
|
_min?: UsersMinAggregateInputType
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
*
|
|
* Select which fields to find the maximum value
|
|
**/
|
|
_max?: UsersMaxAggregateInputType
|
|
}
|
|
|
|
export type GetUsersAggregateType<T extends UsersAggregateArgs> = {
|
|
[P in keyof T & keyof AggregateUsers]: P extends '_count' | 'count'
|
|
? T[P] extends true
|
|
? number
|
|
: Prisma.GetScalarType<T[P], AggregateUsers[P]>
|
|
: Prisma.GetScalarType<T[P], AggregateUsers[P]>
|
|
}
|
|
|
|
|
|
|
|
|
|
export type UsersGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
where?: Prisma.UsersWhereInput
|
|
orderBy?: Prisma.UsersOrderByWithAggregationInput | Prisma.UsersOrderByWithAggregationInput[]
|
|
by: Prisma.UsersScalarFieldEnum[] | Prisma.UsersScalarFieldEnum
|
|
having?: Prisma.UsersScalarWhereWithAggregatesInput
|
|
take?: number
|
|
skip?: number
|
|
_count?: UsersCountAggregateInputType | true
|
|
_min?: UsersMinAggregateInputType
|
|
_max?: UsersMaxAggregateInputType
|
|
}
|
|
|
|
export type UsersGroupByOutputType = {
|
|
id: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence: string | null
|
|
role: $Enums.Roles
|
|
_count: UsersCountAggregateOutputType | null
|
|
_min: UsersMinAggregateOutputType | null
|
|
_max: UsersMaxAggregateOutputType | null
|
|
}
|
|
|
|
type GetUsersGroupByPayload<T extends UsersGroupByArgs> = Prisma.PrismaPromise<
|
|
Array<
|
|
Prisma.PickEnumerable<UsersGroupByOutputType, T['by']> &
|
|
{
|
|
[P in ((keyof T) & (keyof UsersGroupByOutputType))]: P extends '_count'
|
|
? T[P] extends boolean
|
|
? number
|
|
: Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]>
|
|
: Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]>
|
|
}
|
|
>
|
|
>
|
|
|
|
|
|
|
|
export type UsersWhereInput = {
|
|
AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
|
|
OR?: Prisma.UsersWhereInput[]
|
|
NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
|
|
id?: Prisma.UuidFilter<"Users"> | string
|
|
first_name?: Prisma.StringFilter<"Users"> | string
|
|
last_name?: Prisma.StringFilter<"Users"> | string
|
|
email?: Prisma.StringFilter<"Users"> | string
|
|
phone_number?: Prisma.StringFilter<"Users"> | string
|
|
residence?: Prisma.StringNullableFilter<"Users"> | string | null
|
|
role?: Prisma.EnumRolesFilter<"Users"> | $Enums.Roles
|
|
employee?: Prisma.XOR<Prisma.EmployeesNullableScalarRelationFilter, Prisma.EmployeesWhereInput> | null
|
|
oauth_sessions?: Prisma.OAuthSessionsListRelationFilter
|
|
preferences?: Prisma.XOR<Prisma.PreferencesNullableScalarRelationFilter, Prisma.PreferencesWhereInput> | null
|
|
user_module_access?: Prisma.XOR<Prisma.UserModuleAccessNullableScalarRelationFilter, Prisma.userModuleAccessWhereInput> | null
|
|
}
|
|
|
|
export type UsersOrderByWithRelationInput = {
|
|
id?: Prisma.SortOrder
|
|
first_name?: Prisma.SortOrder
|
|
last_name?: Prisma.SortOrder
|
|
email?: Prisma.SortOrder
|
|
phone_number?: Prisma.SortOrder
|
|
residence?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
role?: Prisma.SortOrder
|
|
employee?: Prisma.EmployeesOrderByWithRelationInput
|
|
oauth_sessions?: Prisma.OAuthSessionsOrderByRelationAggregateInput
|
|
preferences?: Prisma.PreferencesOrderByWithRelationInput
|
|
user_module_access?: Prisma.userModuleAccessOrderByWithRelationInput
|
|
}
|
|
|
|
export type UsersWhereUniqueInput = Prisma.AtLeast<{
|
|
id?: string
|
|
email?: string
|
|
AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
|
|
OR?: Prisma.UsersWhereInput[]
|
|
NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
|
|
first_name?: Prisma.StringFilter<"Users"> | string
|
|
last_name?: Prisma.StringFilter<"Users"> | string
|
|
phone_number?: Prisma.StringFilter<"Users"> | string
|
|
residence?: Prisma.StringNullableFilter<"Users"> | string | null
|
|
role?: Prisma.EnumRolesFilter<"Users"> | $Enums.Roles
|
|
employee?: Prisma.XOR<Prisma.EmployeesNullableScalarRelationFilter, Prisma.EmployeesWhereInput> | null
|
|
oauth_sessions?: Prisma.OAuthSessionsListRelationFilter
|
|
preferences?: Prisma.XOR<Prisma.PreferencesNullableScalarRelationFilter, Prisma.PreferencesWhereInput> | null
|
|
user_module_access?: Prisma.XOR<Prisma.UserModuleAccessNullableScalarRelationFilter, Prisma.userModuleAccessWhereInput> | null
|
|
}, "id" | "email">
|
|
|
|
export type UsersOrderByWithAggregationInput = {
|
|
id?: Prisma.SortOrder
|
|
first_name?: Prisma.SortOrder
|
|
last_name?: Prisma.SortOrder
|
|
email?: Prisma.SortOrder
|
|
phone_number?: Prisma.SortOrder
|
|
residence?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
role?: Prisma.SortOrder
|
|
_count?: Prisma.UsersCountOrderByAggregateInput
|
|
_max?: Prisma.UsersMaxOrderByAggregateInput
|
|
_min?: Prisma.UsersMinOrderByAggregateInput
|
|
}
|
|
|
|
export type UsersScalarWhereWithAggregatesInput = {
|
|
AND?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[]
|
|
OR?: Prisma.UsersScalarWhereWithAggregatesInput[]
|
|
NOT?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[]
|
|
id?: Prisma.UuidWithAggregatesFilter<"Users"> | string
|
|
first_name?: Prisma.StringWithAggregatesFilter<"Users"> | string
|
|
last_name?: Prisma.StringWithAggregatesFilter<"Users"> | string
|
|
email?: Prisma.StringWithAggregatesFilter<"Users"> | string
|
|
phone_number?: Prisma.StringWithAggregatesFilter<"Users"> | string
|
|
residence?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null
|
|
role?: Prisma.EnumRolesWithAggregatesFilter<"Users"> | $Enums.Roles
|
|
}
|
|
|
|
export type UsersCreateInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUncheckedCreateInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUpdateInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersUncheckedUpdateInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersCreateManyInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
}
|
|
|
|
export type UsersUpdateManyMutationInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
}
|
|
|
|
export type UsersUncheckedUpdateManyInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
}
|
|
|
|
export type UsersCountOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
first_name?: Prisma.SortOrder
|
|
last_name?: Prisma.SortOrder
|
|
email?: Prisma.SortOrder
|
|
phone_number?: Prisma.SortOrder
|
|
residence?: Prisma.SortOrder
|
|
role?: Prisma.SortOrder
|
|
}
|
|
|
|
export type UsersMaxOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
first_name?: Prisma.SortOrder
|
|
last_name?: Prisma.SortOrder
|
|
email?: Prisma.SortOrder
|
|
phone_number?: Prisma.SortOrder
|
|
residence?: Prisma.SortOrder
|
|
role?: Prisma.SortOrder
|
|
}
|
|
|
|
export type UsersMinOrderByAggregateInput = {
|
|
id?: Prisma.SortOrder
|
|
first_name?: Prisma.SortOrder
|
|
last_name?: Prisma.SortOrder
|
|
email?: Prisma.SortOrder
|
|
phone_number?: Prisma.SortOrder
|
|
residence?: Prisma.SortOrder
|
|
role?: Prisma.SortOrder
|
|
}
|
|
|
|
export type UsersScalarRelationFilter = {
|
|
is?: Prisma.UsersWhereInput
|
|
isNot?: Prisma.UsersWhereInput
|
|
}
|
|
|
|
export type StringFieldUpdateOperationsInput = {
|
|
set?: string
|
|
}
|
|
|
|
export type NullableStringFieldUpdateOperationsInput = {
|
|
set?: string | null
|
|
}
|
|
|
|
export type EnumRolesFieldUpdateOperationsInput = {
|
|
set?: $Enums.Roles
|
|
}
|
|
|
|
export type UsersCreateNestedOneWithoutUser_module_accessInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutUser_module_accessInput, Prisma.UsersUncheckedCreateWithoutUser_module_accessInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutUser_module_accessInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
export type UsersUpdateOneRequiredWithoutUser_module_accessNestedInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutUser_module_accessInput, Prisma.UsersUncheckedCreateWithoutUser_module_accessInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutUser_module_accessInput
|
|
upsert?: Prisma.UsersUpsertWithoutUser_module_accessInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutUser_module_accessInput, Prisma.UsersUpdateWithoutUser_module_accessInput>, Prisma.UsersUncheckedUpdateWithoutUser_module_accessInput>
|
|
}
|
|
|
|
export type UsersCreateNestedOneWithoutEmployeeInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutEmployeeInput, Prisma.UsersUncheckedCreateWithoutEmployeeInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutEmployeeInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
export type UsersUpdateOneRequiredWithoutEmployeeNestedInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutEmployeeInput, Prisma.UsersUncheckedCreateWithoutEmployeeInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutEmployeeInput
|
|
upsert?: Prisma.UsersUpsertWithoutEmployeeInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutEmployeeInput, Prisma.UsersUpdateWithoutEmployeeInput>, Prisma.UsersUncheckedUpdateWithoutEmployeeInput>
|
|
}
|
|
|
|
export type UsersCreateNestedOneWithoutOauth_sessionsInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutOauth_sessionsInput, Prisma.UsersUncheckedCreateWithoutOauth_sessionsInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutOauth_sessionsInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
export type UsersUpdateOneRequiredWithoutOauth_sessionsNestedInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutOauth_sessionsInput, Prisma.UsersUncheckedCreateWithoutOauth_sessionsInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutOauth_sessionsInput
|
|
upsert?: Prisma.UsersUpsertWithoutOauth_sessionsInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutOauth_sessionsInput, Prisma.UsersUpdateWithoutOauth_sessionsInput>, Prisma.UsersUncheckedUpdateWithoutOauth_sessionsInput>
|
|
}
|
|
|
|
export type UsersCreateNestedOneWithoutPreferencesInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutPreferencesInput, Prisma.UsersUncheckedCreateWithoutPreferencesInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutPreferencesInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
export type UsersUpdateOneRequiredWithoutPreferencesNestedInput = {
|
|
create?: Prisma.XOR<Prisma.UsersCreateWithoutPreferencesInput, Prisma.UsersUncheckedCreateWithoutPreferencesInput>
|
|
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutPreferencesInput
|
|
upsert?: Prisma.UsersUpsertWithoutPreferencesInput
|
|
connect?: Prisma.UsersWhereUniqueInput
|
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutPreferencesInput, Prisma.UsersUpdateWithoutPreferencesInput>, Prisma.UsersUncheckedUpdateWithoutPreferencesInput>
|
|
}
|
|
|
|
export type UsersCreateWithoutUser_module_accessInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUncheckedCreateWithoutUser_module_accessInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersCreateOrConnectWithoutUser_module_accessInput = {
|
|
where: Prisma.UsersWhereUniqueInput
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutUser_module_accessInput, Prisma.UsersUncheckedCreateWithoutUser_module_accessInput>
|
|
}
|
|
|
|
export type UsersUpsertWithoutUser_module_accessInput = {
|
|
update: Prisma.XOR<Prisma.UsersUpdateWithoutUser_module_accessInput, Prisma.UsersUncheckedUpdateWithoutUser_module_accessInput>
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutUser_module_accessInput, Prisma.UsersUncheckedCreateWithoutUser_module_accessInput>
|
|
where?: Prisma.UsersWhereInput
|
|
}
|
|
|
|
export type UsersUpdateToOneWithWhereWithoutUser_module_accessInput = {
|
|
where?: Prisma.UsersWhereInput
|
|
data: Prisma.XOR<Prisma.UsersUpdateWithoutUser_module_accessInput, Prisma.UsersUncheckedUpdateWithoutUser_module_accessInput>
|
|
}
|
|
|
|
export type UsersUpdateWithoutUser_module_accessInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersUncheckedUpdateWithoutUser_module_accessInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersCreateWithoutEmployeeInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUncheckedCreateWithoutEmployeeInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput
|
|
preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersCreateOrConnectWithoutEmployeeInput = {
|
|
where: Prisma.UsersWhereUniqueInput
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutEmployeeInput, Prisma.UsersUncheckedCreateWithoutEmployeeInput>
|
|
}
|
|
|
|
export type UsersUpsertWithoutEmployeeInput = {
|
|
update: Prisma.XOR<Prisma.UsersUpdateWithoutEmployeeInput, Prisma.UsersUncheckedUpdateWithoutEmployeeInput>
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutEmployeeInput, Prisma.UsersUncheckedCreateWithoutEmployeeInput>
|
|
where?: Prisma.UsersWhereInput
|
|
}
|
|
|
|
export type UsersUpdateToOneWithWhereWithoutEmployeeInput = {
|
|
where?: Prisma.UsersWhereInput
|
|
data: Prisma.XOR<Prisma.UsersUpdateWithoutEmployeeInput, Prisma.UsersUncheckedUpdateWithoutEmployeeInput>
|
|
}
|
|
|
|
export type UsersUpdateWithoutEmployeeInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersUncheckedUpdateWithoutEmployeeInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersCreateWithoutOauth_sessionsInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput
|
|
preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUncheckedCreateWithoutOauth_sessionsInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput
|
|
preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersCreateOrConnectWithoutOauth_sessionsInput = {
|
|
where: Prisma.UsersWhereUniqueInput
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutOauth_sessionsInput, Prisma.UsersUncheckedCreateWithoutOauth_sessionsInput>
|
|
}
|
|
|
|
export type UsersUpsertWithoutOauth_sessionsInput = {
|
|
update: Prisma.XOR<Prisma.UsersUpdateWithoutOauth_sessionsInput, Prisma.UsersUncheckedUpdateWithoutOauth_sessionsInput>
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutOauth_sessionsInput, Prisma.UsersUncheckedCreateWithoutOauth_sessionsInput>
|
|
where?: Prisma.UsersWhereInput
|
|
}
|
|
|
|
export type UsersUpdateToOneWithWhereWithoutOauth_sessionsInput = {
|
|
where?: Prisma.UsersWhereInput
|
|
data: Prisma.XOR<Prisma.UsersUpdateWithoutOauth_sessionsInput, Prisma.UsersUncheckedUpdateWithoutOauth_sessionsInput>
|
|
}
|
|
|
|
export type UsersUpdateWithoutOauth_sessionsInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersUncheckedUpdateWithoutOauth_sessionsInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput
|
|
preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersCreateWithoutPreferencesInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersUncheckedCreateWithoutPreferencesInput = {
|
|
id?: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence?: string | null
|
|
role?: $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput
|
|
}
|
|
|
|
export type UsersCreateOrConnectWithoutPreferencesInput = {
|
|
where: Prisma.UsersWhereUniqueInput
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutPreferencesInput, Prisma.UsersUncheckedCreateWithoutPreferencesInput>
|
|
}
|
|
|
|
export type UsersUpsertWithoutPreferencesInput = {
|
|
update: Prisma.XOR<Prisma.UsersUpdateWithoutPreferencesInput, Prisma.UsersUncheckedUpdateWithoutPreferencesInput>
|
|
create: Prisma.XOR<Prisma.UsersCreateWithoutPreferencesInput, Prisma.UsersUncheckedCreateWithoutPreferencesInput>
|
|
where?: Prisma.UsersWhereInput
|
|
}
|
|
|
|
export type UsersUpdateToOneWithWhereWithoutPreferencesInput = {
|
|
where?: Prisma.UsersWhereInput
|
|
data: Prisma.XOR<Prisma.UsersUpdateWithoutPreferencesInput, Prisma.UsersUncheckedUpdateWithoutPreferencesInput>
|
|
}
|
|
|
|
export type UsersUpdateWithoutPreferencesInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
export type UsersUncheckedUpdateWithoutPreferencesInput = {
|
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
first_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
last_name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
phone_number?: Prisma.StringFieldUpdateOperationsInput | string
|
|
residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles
|
|
employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput
|
|
oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput
|
|
user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput
|
|
}
|
|
|
|
|
|
/**
|
|
* Count Type UsersCountOutputType
|
|
*/
|
|
|
|
export type UsersCountOutputType = {
|
|
oauth_sessions: number
|
|
}
|
|
|
|
export type UsersCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
oauth_sessions?: boolean | UsersCountOutputTypeCountOauth_sessionsArgs
|
|
}
|
|
|
|
/**
|
|
* UsersCountOutputType without action
|
|
*/
|
|
export type UsersCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the UsersCountOutputType
|
|
*/
|
|
select?: Prisma.UsersCountOutputTypeSelect<ExtArgs> | null
|
|
}
|
|
|
|
/**
|
|
* UsersCountOutputType without action
|
|
*/
|
|
export type UsersCountOutputTypeCountOauth_sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
where?: Prisma.OAuthSessionsWhereInput
|
|
}
|
|
|
|
|
|
export type UsersSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
id?: boolean
|
|
first_name?: boolean
|
|
last_name?: boolean
|
|
email?: boolean
|
|
phone_number?: boolean
|
|
residence?: boolean
|
|
role?: boolean
|
|
employee?: boolean | Prisma.Users$employeeArgs<ExtArgs>
|
|
oauth_sessions?: boolean | Prisma.Users$oauth_sessionsArgs<ExtArgs>
|
|
preferences?: boolean | Prisma.Users$preferencesArgs<ExtArgs>
|
|
user_module_access?: boolean | Prisma.Users$user_module_accessArgs<ExtArgs>
|
|
_count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs>
|
|
}, ExtArgs["result"]["users"]>
|
|
|
|
export type UsersSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
id?: boolean
|
|
first_name?: boolean
|
|
last_name?: boolean
|
|
email?: boolean
|
|
phone_number?: boolean
|
|
residence?: boolean
|
|
role?: boolean
|
|
}, ExtArgs["result"]["users"]>
|
|
|
|
export type UsersSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
id?: boolean
|
|
first_name?: boolean
|
|
last_name?: boolean
|
|
email?: boolean
|
|
phone_number?: boolean
|
|
residence?: boolean
|
|
role?: boolean
|
|
}, ExtArgs["result"]["users"]>
|
|
|
|
export type UsersSelectScalar = {
|
|
id?: boolean
|
|
first_name?: boolean
|
|
last_name?: boolean
|
|
email?: boolean
|
|
phone_number?: boolean
|
|
residence?: boolean
|
|
role?: boolean
|
|
}
|
|
|
|
export type UsersOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "first_name" | "last_name" | "email" | "phone_number" | "residence" | "role", ExtArgs["result"]["users"]>
|
|
export type UsersInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
employee?: boolean | Prisma.Users$employeeArgs<ExtArgs>
|
|
oauth_sessions?: boolean | Prisma.Users$oauth_sessionsArgs<ExtArgs>
|
|
preferences?: boolean | Prisma.Users$preferencesArgs<ExtArgs>
|
|
user_module_access?: boolean | Prisma.Users$user_module_accessArgs<ExtArgs>
|
|
_count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs>
|
|
}
|
|
export type UsersIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
|
export type UsersIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
|
|
|
export type $UsersPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
name: "Users"
|
|
objects: {
|
|
employee: Prisma.$EmployeesPayload<ExtArgs> | null
|
|
oauth_sessions: Prisma.$OAuthSessionsPayload<ExtArgs>[]
|
|
preferences: Prisma.$PreferencesPayload<ExtArgs> | null
|
|
user_module_access: Prisma.$userModuleAccessPayload<ExtArgs> | null
|
|
}
|
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
id: string
|
|
first_name: string
|
|
last_name: string
|
|
email: string
|
|
phone_number: string
|
|
residence: string | null
|
|
role: $Enums.Roles
|
|
}, ExtArgs["result"]["users"]>
|
|
composites: {}
|
|
}
|
|
|
|
export type UsersGetPayload<S extends boolean | null | undefined | UsersDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$UsersPayload, S>
|
|
|
|
export type UsersCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
|
|
Omit<UsersFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
select?: UsersCountAggregateInputType | true
|
|
}
|
|
|
|
export interface UsersDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Users'], meta: { name: 'Users' } }
|
|
/**
|
|
* Find zero or one Users that matches the filter.
|
|
* @param {UsersFindUniqueArgs} args - Arguments to find a Users
|
|
* @example
|
|
* // Get one Users
|
|
* const users = await prisma.users.findUnique({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findUnique<T extends UsersFindUniqueArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find one Users that matches the filter or throw an error with `error.code='P2025'`
|
|
* if no matches were found.
|
|
* @param {UsersFindUniqueOrThrowArgs} args - Arguments to find a Users
|
|
* @example
|
|
* // Get one Users
|
|
* const users = await prisma.users.findUniqueOrThrow({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findUniqueOrThrow<T extends UsersFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find the first Users that matches the filter.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersFindFirstArgs} args - Arguments to find a Users
|
|
* @example
|
|
* // Get one Users
|
|
* const users = await prisma.users.findFirst({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findFirst<T extends UsersFindFirstArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find the first Users that matches the filter or
|
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersFindFirstOrThrowArgs} args - Arguments to find a Users
|
|
* @example
|
|
* // Get one Users
|
|
* const users = await prisma.users.findFirstOrThrow({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*/
|
|
findFirstOrThrow<T extends UsersFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Find zero or more Users that matches the filter.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
* @example
|
|
* // Get all Users
|
|
* const users = await prisma.users.findMany()
|
|
*
|
|
* // Get first 10 Users
|
|
* const users = await prisma.users.findMany({ take: 10 })
|
|
*
|
|
* // Only select the `id`
|
|
* const usersWithIdOnly = await prisma.users.findMany({ select: { id: true } })
|
|
*
|
|
*/
|
|
findMany<T extends UsersFindManyArgs>(args?: Prisma.SelectSubset<T, UsersFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
|
|
/**
|
|
* Create a Users.
|
|
* @param {UsersCreateArgs} args - Arguments to create a Users.
|
|
* @example
|
|
* // Create one Users
|
|
* const Users = await prisma.users.create({
|
|
* data: {
|
|
* // ... data to create a Users
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
create<T extends UsersCreateArgs>(args: Prisma.SelectSubset<T, UsersCreateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Create many Users.
|
|
* @param {UsersCreateManyArgs} args - Arguments to create many Users.
|
|
* @example
|
|
* // Create many Users
|
|
* const users = await prisma.users.createMany({
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
*
|
|
*/
|
|
createMany<T extends UsersCreateManyArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Create many Users and returns the data saved in the database.
|
|
* @param {UsersCreateManyAndReturnArgs} args - Arguments to create many Users.
|
|
* @example
|
|
* // Create many Users
|
|
* const users = await prisma.users.createManyAndReturn({
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
*
|
|
* // Create many Users and only return the `id`
|
|
* const usersWithIdOnly = await prisma.users.createManyAndReturn({
|
|
* select: { id: true },
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
*
|
|
*/
|
|
createManyAndReturn<T extends UsersCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
|
|
/**
|
|
* Delete a Users.
|
|
* @param {UsersDeleteArgs} args - Arguments to delete one Users.
|
|
* @example
|
|
* // Delete one Users
|
|
* const Users = await prisma.users.delete({
|
|
* where: {
|
|
* // ... filter to delete one Users
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
delete<T extends UsersDeleteArgs>(args: Prisma.SelectSubset<T, UsersDeleteArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Update one Users.
|
|
* @param {UsersUpdateArgs} args - Arguments to update one Users.
|
|
* @example
|
|
* // Update one Users
|
|
* const users = await prisma.users.update({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: {
|
|
* // ... provide data here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
update<T extends UsersUpdateArgs>(args: Prisma.SelectSubset<T, UsersUpdateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
/**
|
|
* Delete zero or more Users.
|
|
* @param {UsersDeleteManyArgs} args - Arguments to filter Users to delete.
|
|
* @example
|
|
* // Delete a few Users
|
|
* const { count } = await prisma.users.deleteMany({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
deleteMany<T extends UsersDeleteManyArgs>(args?: Prisma.SelectSubset<T, UsersDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Update zero or more Users.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersUpdateManyArgs} args - Arguments to update one or more rows.
|
|
* @example
|
|
* // Update many Users
|
|
* const users = await prisma.users.updateMany({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: {
|
|
* // ... provide data here
|
|
* }
|
|
* })
|
|
*
|
|
*/
|
|
updateMany<T extends UsersUpdateManyArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
|
|
|
|
/**
|
|
* Update zero or more Users and returns the data updated in the database.
|
|
* @param {UsersUpdateManyAndReturnArgs} args - Arguments to update many Users.
|
|
* @example
|
|
* // Update many Users
|
|
* const users = await prisma.users.updateManyAndReturn({
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
*
|
|
* // Update zero or more Users and only return the `id`
|
|
* const usersWithIdOnly = await prisma.users.updateManyAndReturn({
|
|
* select: { id: true },
|
|
* where: {
|
|
* // ... provide filter here
|
|
* },
|
|
* data: [
|
|
* // ... provide data here
|
|
* ]
|
|
* })
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
*
|
|
*/
|
|
updateManyAndReturn<T extends UsersUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
|
|
/**
|
|
* Create or update one Users.
|
|
* @param {UsersUpsertArgs} args - Arguments to update or create a Users.
|
|
* @example
|
|
* // Update or create a Users
|
|
* const users = await prisma.users.upsert({
|
|
* create: {
|
|
* // ... data to create a Users
|
|
* },
|
|
* update: {
|
|
* // ... in case it already exists, update
|
|
* },
|
|
* where: {
|
|
* // ... the filter for the Users we want to update
|
|
* }
|
|
* })
|
|
*/
|
|
upsert<T extends UsersUpsertArgs>(args: Prisma.SelectSubset<T, UsersUpsertArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
|
|
|
|
/**
|
|
* Count the number of Users.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersCountArgs} args - Arguments to filter Users to count.
|
|
* @example
|
|
* // Count the number of Users
|
|
* const count = await prisma.users.count({
|
|
* where: {
|
|
* // ... the filter for the Users we want to count
|
|
* }
|
|
* })
|
|
**/
|
|
count<T extends UsersCountArgs>(
|
|
args?: Prisma.Subset<T, UsersCountArgs>,
|
|
): Prisma.PrismaPromise<
|
|
T extends runtime.Types.Utils.Record<'select', any>
|
|
? T['select'] extends true
|
|
? number
|
|
: Prisma.GetScalarType<T['select'], UsersCountAggregateOutputType>
|
|
: number
|
|
>
|
|
|
|
/**
|
|
* Allows you to perform aggregations operations on a Users.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
* @example
|
|
* // Ordered by age ascending
|
|
* // Where email contains prisma.io
|
|
* // Limited to the 10 users
|
|
* const aggregations = await prisma.user.aggregate({
|
|
* _avg: {
|
|
* age: true,
|
|
* },
|
|
* where: {
|
|
* email: {
|
|
* contains: "prisma.io",
|
|
* },
|
|
* },
|
|
* orderBy: {
|
|
* age: "asc",
|
|
* },
|
|
* take: 10,
|
|
* })
|
|
**/
|
|
aggregate<T extends UsersAggregateArgs>(args: Prisma.Subset<T, UsersAggregateArgs>): Prisma.PrismaPromise<GetUsersAggregateType<T>>
|
|
|
|
/**
|
|
* Group by Users.
|
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
* Read more here: https://pris.ly/d/null-undefined
|
|
* @param {UsersGroupByArgs} args - Group by arguments.
|
|
* @example
|
|
* // Group by city, order by createdAt, get count
|
|
* const result = await prisma.user.groupBy({
|
|
* by: ['city', 'createdAt'],
|
|
* orderBy: {
|
|
* createdAt: true
|
|
* },
|
|
* _count: {
|
|
* _all: true
|
|
* },
|
|
* })
|
|
*
|
|
**/
|
|
groupBy<
|
|
T extends UsersGroupByArgs,
|
|
HasSelectOrTake extends Prisma.Or<
|
|
Prisma.Extends<'skip', Prisma.Keys<T>>,
|
|
Prisma.Extends<'take', Prisma.Keys<T>>
|
|
>,
|
|
OrderByArg extends Prisma.True extends HasSelectOrTake
|
|
? { orderBy: UsersGroupByArgs['orderBy'] }
|
|
: { orderBy?: UsersGroupByArgs['orderBy'] },
|
|
OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
|
|
ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
|
|
ByValid extends Prisma.Has<ByFields, OrderFields>,
|
|
HavingFields extends Prisma.GetHavingFields<T['having']>,
|
|
HavingValid extends Prisma.Has<ByFields, HavingFields>,
|
|
ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
|
|
InputErrors extends ByEmpty extends Prisma.True
|
|
? `Error: "by" must not be empty.`
|
|
: HavingValid extends Prisma.False
|
|
? {
|
|
[P in HavingFields]: P extends ByFields
|
|
? never
|
|
: P extends string
|
|
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
: [
|
|
Error,
|
|
'Field ',
|
|
P,
|
|
` in "having" needs to be provided in "by"`,
|
|
]
|
|
}[HavingFields]
|
|
: 'take' extends Prisma.Keys<T>
|
|
? 'orderBy' extends Prisma.Keys<T>
|
|
? ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
: 'skip' extends Prisma.Keys<T>
|
|
? 'orderBy' extends Prisma.Keys<T>
|
|
? ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
: ByValid extends Prisma.True
|
|
? {}
|
|
: {
|
|
[P in OrderFields]: P extends ByFields
|
|
? never
|
|
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
}[OrderFields]
|
|
>(args: Prisma.SubsetIntersection<T, UsersGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetUsersGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
/**
|
|
* Fields of the Users model
|
|
*/
|
|
readonly fields: UsersFieldRefs;
|
|
}
|
|
|
|
/**
|
|
* The delegate class that acts as a "Promise-like" for Users.
|
|
* Why is this prefixed with `Prisma__`?
|
|
* Because we want to prevent naming conflicts as mentioned in
|
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
*/
|
|
export interface Prisma__UsersClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
employee<T extends Prisma.Users$employeeArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$employeeArgs<ExtArgs>>): Prisma.Prisma__EmployeesClient<runtime.Types.Result.GetResult<Prisma.$EmployeesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
oauth_sessions<T extends Prisma.Users$oauth_sessionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$oauth_sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$OAuthSessionsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
preferences<T extends Prisma.Users$preferencesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$preferencesArgs<ExtArgs>>): Prisma.Prisma__PreferencesClient<runtime.Types.Result.GetResult<Prisma.$PreferencesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
user_module_access<T extends Prisma.Users$user_module_accessArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$user_module_accessArgs<ExtArgs>>): Prisma.Prisma__userModuleAccessClient<runtime.Types.Result.GetResult<Prisma.$userModuleAccessPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
/**
|
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
*/
|
|
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
|
|
/**
|
|
* Attaches a callback for only the rejection of the Promise.
|
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
* @returns A Promise for the completion of the callback.
|
|
*/
|
|
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
|
|
/**
|
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
* resolved value cannot be modified from the callback.
|
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
* @returns A Promise for the completion of the callback.
|
|
*/
|
|
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Fields of the Users model
|
|
*/
|
|
export interface UsersFieldRefs {
|
|
readonly id: Prisma.FieldRef<"Users", 'String'>
|
|
readonly first_name: Prisma.FieldRef<"Users", 'String'>
|
|
readonly last_name: Prisma.FieldRef<"Users", 'String'>
|
|
readonly email: Prisma.FieldRef<"Users", 'String'>
|
|
readonly phone_number: Prisma.FieldRef<"Users", 'String'>
|
|
readonly residence: Prisma.FieldRef<"Users", 'String'>
|
|
readonly role: Prisma.FieldRef<"Users", 'Roles'>
|
|
}
|
|
|
|
|
|
// Custom InputTypes
|
|
/**
|
|
* Users findUnique
|
|
*/
|
|
export type UsersFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter, which Users to fetch.
|
|
*/
|
|
where: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* Users findUniqueOrThrow
|
|
*/
|
|
export type UsersFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter, which Users to fetch.
|
|
*/
|
|
where: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* Users findFirst
|
|
*/
|
|
export type UsersFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter, which Users to fetch.
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of Users to fetch.
|
|
*/
|
|
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for searching for Users.
|
|
*/
|
|
cursor?: Prisma.UsersWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` Users from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` Users.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
*
|
|
* Filter by unique combinations of Users.
|
|
*/
|
|
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* Users findFirstOrThrow
|
|
*/
|
|
export type UsersFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter, which Users to fetch.
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of Users to fetch.
|
|
*/
|
|
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for searching for Users.
|
|
*/
|
|
cursor?: Prisma.UsersWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` Users from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` Users.
|
|
*/
|
|
skip?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
*
|
|
* Filter by unique combinations of Users.
|
|
*/
|
|
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* Users findMany
|
|
*/
|
|
export type UsersFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter, which Users to fetch.
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
*
|
|
* Determine the order of Users to fetch.
|
|
*/
|
|
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
*
|
|
* Sets the position for listing Users.
|
|
*/
|
|
cursor?: Prisma.UsersWhereUniqueInput
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Take `±n` Users from the position of the cursor.
|
|
*/
|
|
take?: number
|
|
/**
|
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
*
|
|
* Skip the first `n` Users.
|
|
*/
|
|
skip?: number
|
|
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* Users create
|
|
*/
|
|
export type UsersCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* The data needed to create a Users.
|
|
*/
|
|
data: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput>
|
|
}
|
|
|
|
/**
|
|
* Users createMany
|
|
*/
|
|
export type UsersCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* The data used to create many Users.
|
|
*/
|
|
data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[]
|
|
skipDuplicates?: boolean
|
|
}
|
|
|
|
/**
|
|
* Users createManyAndReturn
|
|
*/
|
|
export type UsersCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelectCreateManyAndReturn<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* The data used to create many Users.
|
|
*/
|
|
data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[]
|
|
skipDuplicates?: boolean
|
|
}
|
|
|
|
/**
|
|
* Users update
|
|
*/
|
|
export type UsersUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* The data needed to update a Users.
|
|
*/
|
|
data: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput>
|
|
/**
|
|
* Choose, which Users to update.
|
|
*/
|
|
where: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* Users updateMany
|
|
*/
|
|
export type UsersUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* The data used to update Users.
|
|
*/
|
|
data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput>
|
|
/**
|
|
* Filter which Users to update
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* Limit how many Users to update.
|
|
*/
|
|
limit?: number
|
|
}
|
|
|
|
/**
|
|
* Users updateManyAndReturn
|
|
*/
|
|
export type UsersUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelectUpdateManyAndReturn<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* The data used to update Users.
|
|
*/
|
|
data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput>
|
|
/**
|
|
* Filter which Users to update
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* Limit how many Users to update.
|
|
*/
|
|
limit?: number
|
|
}
|
|
|
|
/**
|
|
* Users upsert
|
|
*/
|
|
export type UsersUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* The filter to search for the Users to update in case it exists.
|
|
*/
|
|
where: Prisma.UsersWhereUniqueInput
|
|
/**
|
|
* In case the Users found by the `where` argument doesn't exist, create a new Users with this data.
|
|
*/
|
|
create: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput>
|
|
/**
|
|
* In case the Users was found with the provided `where` argument, update it with this data.
|
|
*/
|
|
update: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput>
|
|
}
|
|
|
|
/**
|
|
* Users delete
|
|
*/
|
|
export type UsersDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
/**
|
|
* Filter which Users to delete.
|
|
*/
|
|
where: Prisma.UsersWhereUniqueInput
|
|
}
|
|
|
|
/**
|
|
* Users deleteMany
|
|
*/
|
|
export type UsersDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Filter which Users to delete
|
|
*/
|
|
where?: Prisma.UsersWhereInput
|
|
/**
|
|
* Limit how many Users to delete.
|
|
*/
|
|
limit?: number
|
|
}
|
|
|
|
/**
|
|
* Users.employee
|
|
*/
|
|
export type Users$employeeArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Employees
|
|
*/
|
|
select?: Prisma.EmployeesSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Employees
|
|
*/
|
|
omit?: Prisma.EmployeesOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.EmployeesInclude<ExtArgs> | null
|
|
where?: Prisma.EmployeesWhereInput
|
|
}
|
|
|
|
/**
|
|
* Users.oauth_sessions
|
|
*/
|
|
export type Users$oauth_sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the OAuthSessions
|
|
*/
|
|
select?: Prisma.OAuthSessionsSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the OAuthSessions
|
|
*/
|
|
omit?: Prisma.OAuthSessionsOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.OAuthSessionsInclude<ExtArgs> | null
|
|
where?: Prisma.OAuthSessionsWhereInput
|
|
orderBy?: Prisma.OAuthSessionsOrderByWithRelationInput | Prisma.OAuthSessionsOrderByWithRelationInput[]
|
|
cursor?: Prisma.OAuthSessionsWhereUniqueInput
|
|
take?: number
|
|
skip?: number
|
|
distinct?: Prisma.OAuthSessionsScalarFieldEnum | Prisma.OAuthSessionsScalarFieldEnum[]
|
|
}
|
|
|
|
/**
|
|
* Users.preferences
|
|
*/
|
|
export type Users$preferencesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Preferences
|
|
*/
|
|
select?: Prisma.PreferencesSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Preferences
|
|
*/
|
|
omit?: Prisma.PreferencesOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.PreferencesInclude<ExtArgs> | null
|
|
where?: Prisma.PreferencesWhereInput
|
|
}
|
|
|
|
/**
|
|
* Users.user_module_access
|
|
*/
|
|
export type Users$user_module_accessArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the userModuleAccess
|
|
*/
|
|
select?: Prisma.userModuleAccessSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the userModuleAccess
|
|
*/
|
|
omit?: Prisma.userModuleAccessOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.userModuleAccessInclude<ExtArgs> | null
|
|
where?: Prisma.userModuleAccessWhereInput
|
|
}
|
|
|
|
/**
|
|
* Users without action
|
|
*/
|
|
export type UsersDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
/**
|
|
* Select specific fields to fetch from the Users
|
|
*/
|
|
select?: Prisma.UsersSelect<ExtArgs> | null
|
|
/**
|
|
* Omit specific fields from the Users
|
|
*/
|
|
omit?: Prisma.UsersOmit<ExtArgs> | null
|
|
/**
|
|
* Choose, which related nodes to fetch as well
|
|
*/
|
|
include?: Prisma.UsersInclude<ExtArgs> | null
|
|
}
|