Added better auth. Still fixing issues

This commit is contained in:
Jose Selesan
2026-04-14 14:14:07 -03:00
parent e2299c6d46
commit 9133950d6a
42 changed files with 2453 additions and 1358 deletions

View File

@@ -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>
}