Added better auth. Still fixing issues
This commit is contained in:
@@ -320,11 +320,6 @@ export type PlanUncheckedUpdateManyInput = {
|
||||
lastUpdatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
export type PlanNullableScalarRelationFilter = {
|
||||
is?: Prisma.PlanWhereInput | null
|
||||
isNot?: Prisma.PlanWhereInput | null
|
||||
}
|
||||
|
||||
export type PlanCountOrderByAggregateInput = {
|
||||
code?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
@@ -355,18 +350,37 @@ export type PlanSumOrderByAggregateInput = {
|
||||
price?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type PlanScalarRelationFilter = {
|
||||
is?: Prisma.PlanWhereInput
|
||||
isNot?: Prisma.PlanWhereInput
|
||||
}
|
||||
|
||||
export type StringFieldUpdateOperationsInput = {
|
||||
set?: string
|
||||
}
|
||||
|
||||
export type DecimalFieldUpdateOperationsInput = {
|
||||
set?: runtime.Decimal | runtime.DecimalJsLike | number | string
|
||||
increment?: runtime.Decimal | runtime.DecimalJsLike | number | string
|
||||
decrement?: runtime.Decimal | runtime.DecimalJsLike | number | string
|
||||
multiply?: runtime.Decimal | runtime.DecimalJsLike | number | string
|
||||
divide?: runtime.Decimal | runtime.DecimalJsLike | number | string
|
||||
}
|
||||
|
||||
export type DateTimeFieldUpdateOperationsInput = {
|
||||
set?: Date | string
|
||||
}
|
||||
|
||||
export type PlanCreateNestedOneWithoutComplexesInput = {
|
||||
create?: Prisma.XOR<Prisma.PlanCreateWithoutComplexesInput, Prisma.PlanUncheckedCreateWithoutComplexesInput>
|
||||
connectOrCreate?: Prisma.PlanCreateOrConnectWithoutComplexesInput
|
||||
connect?: Prisma.PlanWhereUniqueInput
|
||||
}
|
||||
|
||||
export type PlanUpdateOneWithoutComplexesNestedInput = {
|
||||
export type PlanUpdateOneRequiredWithoutComplexesNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.PlanCreateWithoutComplexesInput, Prisma.PlanUncheckedCreateWithoutComplexesInput>
|
||||
connectOrCreate?: Prisma.PlanCreateOrConnectWithoutComplexesInput
|
||||
upsert?: Prisma.PlanUpsertWithoutComplexesInput
|
||||
disconnect?: Prisma.PlanWhereInput | boolean
|
||||
delete?: Prisma.PlanWhereInput | boolean
|
||||
connect?: Prisma.PlanWhereUniqueInput
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.PlanUpdateToOneWithWhereWithoutComplexesInput, Prisma.PlanUpdateWithoutComplexesInput>, Prisma.PlanUncheckedUpdateWithoutComplexesInput>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user