|
|
|
|
@@ -16,8 +16,8 @@ import type * as Prisma from "./internal/prismaNamespace"
|
|
|
|
|
|
|
|
|
|
export type StringFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: string[]
|
|
|
|
|
notIn?: string[]
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -25,20 +25,21 @@ export type StringFilter<$PrismaModel = never> = {
|
|
|
|
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
mode?: Prisma.QueryMode
|
|
|
|
|
not?: Prisma.NestedStringFilter<$PrismaModel> | string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type EnumRoleFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.Role | Prisma.EnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.Role[]
|
|
|
|
|
notIn?: $Enums.Role[]
|
|
|
|
|
in?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumRoleFilter<$PrismaModel> | $Enums.Role
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type IntFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: number[]
|
|
|
|
|
notIn?: number[]
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -48,8 +49,8 @@ export type IntFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type StringNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: string[] | null
|
|
|
|
|
notIn?: string[] | null
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -57,13 +58,14 @@ export type StringNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
mode?: Prisma.QueryMode
|
|
|
|
|
not?: Prisma.NestedStringNullableFilter<$PrismaModel> | string | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type DateTimeFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: Date[] | string[]
|
|
|
|
|
notIn?: Date[] | string[]
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -73,8 +75,8 @@ export type DateTimeFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumCharacterClassNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.CharacterClass | Prisma.EnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
not?: Prisma.NestedEnumCharacterClassNullableFilter<$PrismaModel> | $Enums.CharacterClass | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -85,8 +87,8 @@ export type SortOrderInput = {
|
|
|
|
|
|
|
|
|
|
export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: string[]
|
|
|
|
|
notIn?: string[]
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -94,6 +96,7 @@ export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
mode?: Prisma.QueryMode
|
|
|
|
|
not?: Prisma.NestedStringWithAggregatesFilter<$PrismaModel> | string
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedStringFilter<$PrismaModel>
|
|
|
|
|
@@ -102,8 +105,8 @@ export type StringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.Role | Prisma.EnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.Role[]
|
|
|
|
|
notIn?: $Enums.Role[]
|
|
|
|
|
in?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumRoleWithAggregatesFilter<$PrismaModel> | $Enums.Role
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumRoleFilter<$PrismaModel>
|
|
|
|
|
@@ -112,8 +115,8 @@ export type EnumRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: number[]
|
|
|
|
|
notIn?: number[]
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -128,8 +131,8 @@ export type IntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: string[] | null
|
|
|
|
|
notIn?: string[] | null
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -137,6 +140,7 @@ export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
contains?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
startsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
endsWith?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
mode?: Prisma.QueryMode
|
|
|
|
|
not?: Prisma.NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
|
|
|
|
|
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedStringNullableFilter<$PrismaModel>
|
|
|
|
|
@@ -145,8 +149,8 @@ export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: Date[] | string[]
|
|
|
|
|
notIn?: Date[] | string[]
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -159,8 +163,8 @@ export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumCharacterClassNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.CharacterClass | Prisma.EnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
not?: Prisma.NestedEnumCharacterClassNullableWithAggregatesFilter<$PrismaModel> | $Enums.CharacterClass | null
|
|
|
|
|
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumCharacterClassNullableFilter<$PrismaModel>
|
|
|
|
|
@@ -169,15 +173,15 @@ export type EnumCharacterClassNullableWithAggregatesFilter<$PrismaModel = never>
|
|
|
|
|
|
|
|
|
|
export type EnumEventTypeFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.EventType | Prisma.EnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.EventType[]
|
|
|
|
|
notIn?: $Enums.EventType[]
|
|
|
|
|
in?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumEventTypeFilter<$PrismaModel> | $Enums.EventType
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type IntNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: number[] | null
|
|
|
|
|
notIn?: number[] | null
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -187,8 +191,8 @@ export type IntNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumEventTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.EventType | Prisma.EnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.EventType[]
|
|
|
|
|
notIn?: $Enums.EventType[]
|
|
|
|
|
in?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumEventTypeWithAggregatesFilter<$PrismaModel> | $Enums.EventType
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumEventTypeFilter<$PrismaModel>
|
|
|
|
|
@@ -197,8 +201,8 @@ export type EnumEventTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: number[] | null
|
|
|
|
|
notIn?: number[] | null
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -226,15 +230,15 @@ export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumChallengeStatusFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.ChallengeStatus | Prisma.EnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.ChallengeStatus[]
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[]
|
|
|
|
|
in?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumChallengeStatusFilter<$PrismaModel> | $Enums.ChallengeStatus
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: Date[] | string[] | null
|
|
|
|
|
notIn?: Date[] | string[] | null
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -244,8 +248,8 @@ export type DateTimeNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type EnumChallengeStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.ChallengeStatus | Prisma.EnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.ChallengeStatus[]
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[]
|
|
|
|
|
in?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumChallengeStatusWithAggregatesFilter<$PrismaModel> | $Enums.ChallengeStatus
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumChallengeStatusFilter<$PrismaModel>
|
|
|
|
|
@@ -254,8 +258,8 @@ export type EnumChallengeStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: Date[] | string[] | null
|
|
|
|
|
notIn?: Date[] | string[] | null
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -268,8 +272,8 @@ export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedStringFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: string[]
|
|
|
|
|
notIn?: string[]
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -282,15 +286,15 @@ export type NestedStringFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumRoleFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.Role | Prisma.EnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.Role[]
|
|
|
|
|
notIn?: $Enums.Role[]
|
|
|
|
|
in?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumRoleFilter<$PrismaModel> | $Enums.Role
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type NestedIntFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: number[]
|
|
|
|
|
notIn?: number[]
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -300,8 +304,8 @@ export type NestedIntFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: string[] | null
|
|
|
|
|
notIn?: string[] | null
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -314,8 +318,8 @@ export type NestedStringNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: Date[] | string[]
|
|
|
|
|
notIn?: Date[] | string[]
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -325,15 +329,15 @@ export type NestedDateTimeFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumCharacterClassNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.CharacterClass | Prisma.EnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
not?: Prisma.NestedEnumCharacterClassNullableFilter<$PrismaModel> | $Enums.CharacterClass | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: string[]
|
|
|
|
|
notIn?: string[]
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -349,8 +353,8 @@ export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.Role | Prisma.EnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.Role[]
|
|
|
|
|
notIn?: $Enums.Role[]
|
|
|
|
|
in?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.Role[] | Prisma.ListEnumRoleFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumRoleWithAggregatesFilter<$PrismaModel> | $Enums.Role
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumRoleFilter<$PrismaModel>
|
|
|
|
|
@@ -359,8 +363,8 @@ export type NestedEnumRoleWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: number[]
|
|
|
|
|
notIn?: number[]
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -375,8 +379,8 @@ export type NestedIntWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedFloatFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: number[]
|
|
|
|
|
notIn?: number[]
|
|
|
|
|
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -386,8 +390,8 @@ export type NestedFloatFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: string | Prisma.StringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: string[] | null
|
|
|
|
|
notIn?: string[] | null
|
|
|
|
|
in?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: string[] | Prisma.ListStringFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: string | Prisma.StringFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -403,8 +407,8 @@ export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: number[] | null
|
|
|
|
|
notIn?: number[] | null
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -414,8 +418,8 @@ export type NestedIntNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: Date[] | string[]
|
|
|
|
|
notIn?: Date[] | string[]
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -428,8 +432,8 @@ export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumCharacterClassNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.CharacterClass | Prisma.EnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | null
|
|
|
|
|
in?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: $Enums.CharacterClass[] | Prisma.ListEnumCharacterClassFieldRefInput<$PrismaModel> | null
|
|
|
|
|
not?: Prisma.NestedEnumCharacterClassNullableWithAggregatesFilter<$PrismaModel> | $Enums.CharacterClass | null
|
|
|
|
|
_count?: Prisma.NestedIntNullableFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumCharacterClassNullableFilter<$PrismaModel>
|
|
|
|
|
@@ -438,15 +442,15 @@ export type NestedEnumCharacterClassNullableWithAggregatesFilter<$PrismaModel =
|
|
|
|
|
|
|
|
|
|
export type NestedEnumEventTypeFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.EventType | Prisma.EnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.EventType[]
|
|
|
|
|
notIn?: $Enums.EventType[]
|
|
|
|
|
in?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumEventTypeFilter<$PrismaModel> | $Enums.EventType
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type NestedEnumEventTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.EventType | Prisma.EnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.EventType[]
|
|
|
|
|
notIn?: $Enums.EventType[]
|
|
|
|
|
in?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.EventType[] | Prisma.ListEnumEventTypeFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumEventTypeWithAggregatesFilter<$PrismaModel> | $Enums.EventType
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumEventTypeFilter<$PrismaModel>
|
|
|
|
|
@@ -455,8 +459,8 @@ export type NestedEnumEventTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.IntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: number[] | null
|
|
|
|
|
notIn?: number[] | null
|
|
|
|
|
in?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: number[] | Prisma.ListIntFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.IntFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -471,8 +475,8 @@ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: number | Prisma.FloatFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: number[] | null
|
|
|
|
|
notIn?: number[] | null
|
|
|
|
|
in?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: number[] | Prisma.ListFloatFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: number | Prisma.FloatFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -495,15 +499,15 @@ export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumChallengeStatusFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.ChallengeStatus | Prisma.EnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.ChallengeStatus[]
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[]
|
|
|
|
|
in?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumChallengeStatusFilter<$PrismaModel> | $Enums.ChallengeStatus
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: Date[] | string[] | null
|
|
|
|
|
notIn?: Date[] | string[] | null
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
@@ -513,8 +517,8 @@ export type NestedDateTimeNullableFilter<$PrismaModel = never> = {
|
|
|
|
|
|
|
|
|
|
export type NestedEnumChallengeStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: $Enums.ChallengeStatus | Prisma.EnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
in?: $Enums.ChallengeStatus[]
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[]
|
|
|
|
|
in?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
notIn?: $Enums.ChallengeStatus[] | Prisma.ListEnumChallengeStatusFieldRefInput<$PrismaModel>
|
|
|
|
|
not?: Prisma.NestedEnumChallengeStatusWithAggregatesFilter<$PrismaModel> | $Enums.ChallengeStatus
|
|
|
|
|
_count?: Prisma.NestedIntFilter<$PrismaModel>
|
|
|
|
|
_min?: Prisma.NestedEnumChallengeStatusFilter<$PrismaModel>
|
|
|
|
|
@@ -523,8 +527,8 @@ export type NestedEnumChallengeStatusWithAggregatesFilter<$PrismaModel = never>
|
|
|
|
|
|
|
|
|
|
export type NestedDateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
|
|
equals?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
in?: Date[] | string[] | null
|
|
|
|
|
notIn?: Date[] | string[] | null
|
|
|
|
|
in?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
notIn?: Date[] | string[] | Prisma.ListDateTimeFieldRefInput<$PrismaModel> | null
|
|
|
|
|
lt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
lte?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
gt?: Date | string | Prisma.DateTimeFieldRefInput<$PrismaModel>
|
|
|
|
|
|