
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck 
/*
 * This file exports the `User` 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 User
 * 
 */
export type UserModel = runtime.Types.Result.DefaultSelection<Prisma.$UserPayload>

export type AggregateUser = {
  _count: UserCountAggregateOutputType | null
  _min: UserMinAggregateOutputType | null
  _max: UserMaxAggregateOutputType | null
}

export type UserMinAggregateOutputType = {
  id: string | null
  clerkId: string | null
  email: string | null
  role: string | null
  createdAt: Date | null
  updatedAt: Date | null
}

export type UserMaxAggregateOutputType = {
  id: string | null
  clerkId: string | null
  email: string | null
  role: string | null
  createdAt: Date | null
  updatedAt: Date | null
}

export type UserCountAggregateOutputType = {
  id: number
  clerkId: number
  email: number
  role: number
  createdAt: number
  updatedAt: number
  _all: number
}


export type UserMinAggregateInputType = {
  id?: true
  clerkId?: true
  email?: true
  role?: true
  createdAt?: true
  updatedAt?: true
}

export type UserMaxAggregateInputType = {
  id?: true
  clerkId?: true
  email?: true
  role?: true
  createdAt?: true
  updatedAt?: true
}

export type UserCountAggregateInputType = {
  id?: true
  clerkId?: true
  email?: true
  role?: true
  createdAt?: true
  updatedAt?: true
  _all?: true
}

export type UserAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which User to aggregate.
   */
  where?: Prisma.UserWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of Users to fetch.
   */
  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.UserWhereUniqueInput
  /**
   * {@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 | UserCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: UserMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: UserMaxAggregateInputType
}

export type GetUserAggregateType<T extends UserAggregateArgs> = {
      [P in keyof T & keyof AggregateUser]: P extends '_count' | 'count'
    ? T[P] extends true
      ? number
      : Prisma.GetScalarType<T[P], AggregateUser[P]>
    : Prisma.GetScalarType<T[P], AggregateUser[P]>
}




export type UserGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.UserWhereInput
  orderBy?: Prisma.UserOrderByWithAggregationInput | Prisma.UserOrderByWithAggregationInput[]
  by: Prisma.UserScalarFieldEnum[] | Prisma.UserScalarFieldEnum
  having?: Prisma.UserScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: UserCountAggregateInputType | true
  _min?: UserMinAggregateInputType
  _max?: UserMaxAggregateInputType
}

export type UserGroupByOutputType = {
  id: string
  clerkId: string
  email: string
  role: string
  createdAt: Date
  updatedAt: Date
  _count: UserCountAggregateOutputType | null
  _min: UserMinAggregateOutputType | null
  _max: UserMaxAggregateOutputType | null
}

type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<
  Array<
    Prisma.PickEnumerable<UserGroupByOutputType, T['by']> &
      {
        [P in ((keyof T) & (keyof UserGroupByOutputType))]: P extends '_count'
          ? T[P] extends boolean
            ? number
            : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>
          : Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>
      }
    >
  >



export type UserWhereInput = {
  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]
  OR?: Prisma.UserWhereInput[]
  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]
  id?: Prisma.StringFilter<"User"> | string
  clerkId?: Prisma.StringFilter<"User"> | string
  email?: Prisma.StringFilter<"User"> | string
  role?: Prisma.StringFilter<"User"> | string
  createdAt?: Prisma.DateTimeFilter<"User"> | Date | string
  updatedAt?: Prisma.DateTimeFilter<"User"> | Date | string
  certificates?: Prisma.CertificateListRelationFilter
  enrollments?: Prisma.EnrollmentListRelationFilter
  notes?: Prisma.NoteListRelationFilter
  purchases?: Prisma.PurchaseListRelationFilter
  quizAssignments?: Prisma.QuizAssignmentListRelationFilter
  reviews?: Prisma.ReviewListRelationFilter
  progress?: Prisma.UserProgressListRelationFilter
}

export type UserOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  clerkId?: Prisma.SortOrder
  email?: Prisma.SortOrder
  role?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
  certificates?: Prisma.CertificateOrderByRelationAggregateInput
  enrollments?: Prisma.EnrollmentOrderByRelationAggregateInput
  notes?: Prisma.NoteOrderByRelationAggregateInput
  purchases?: Prisma.PurchaseOrderByRelationAggregateInput
  quizAssignments?: Prisma.QuizAssignmentOrderByRelationAggregateInput
  reviews?: Prisma.ReviewOrderByRelationAggregateInput
  progress?: Prisma.UserProgressOrderByRelationAggregateInput
  _relevance?: Prisma.UserOrderByRelevanceInput
}

export type UserWhereUniqueInput = Prisma.AtLeast<{
  id?: string
  clerkId?: string
  email?: string
  AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[]
  OR?: Prisma.UserWhereInput[]
  NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[]
  role?: Prisma.StringFilter<"User"> | string
  createdAt?: Prisma.DateTimeFilter<"User"> | Date | string
  updatedAt?: Prisma.DateTimeFilter<"User"> | Date | string
  certificates?: Prisma.CertificateListRelationFilter
  enrollments?: Prisma.EnrollmentListRelationFilter
  notes?: Prisma.NoteListRelationFilter
  purchases?: Prisma.PurchaseListRelationFilter
  quizAssignments?: Prisma.QuizAssignmentListRelationFilter
  reviews?: Prisma.ReviewListRelationFilter
  progress?: Prisma.UserProgressListRelationFilter
}, "id" | "clerkId" | "email">

export type UserOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  clerkId?: Prisma.SortOrder
  email?: Prisma.SortOrder
  role?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
  _count?: Prisma.UserCountOrderByAggregateInput
  _max?: Prisma.UserMaxOrderByAggregateInput
  _min?: Prisma.UserMinOrderByAggregateInput
}

export type UserScalarWhereWithAggregatesInput = {
  AND?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]
  OR?: Prisma.UserScalarWhereWithAggregatesInput[]
  NOT?: Prisma.UserScalarWhereWithAggregatesInput | Prisma.UserScalarWhereWithAggregatesInput[]
  id?: Prisma.StringWithAggregatesFilter<"User"> | string
  clerkId?: Prisma.StringWithAggregatesFilter<"User"> | string
  email?: Prisma.StringWithAggregatesFilter<"User"> | string
  role?: Prisma.StringWithAggregatesFilter<"User"> | string
  createdAt?: Prisma.DateTimeWithAggregatesFilter<"User"> | Date | string
  updatedAt?: Prisma.DateTimeWithAggregatesFilter<"User"> | Date | string
}

export type UserCreateInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateManyInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
}

export type UserUpdateManyMutationInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
}

export type UserUncheckedUpdateManyInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
}

export type UserOrderByRelevanceInput = {
  fields: Prisma.UserOrderByRelevanceFieldEnum | Prisma.UserOrderByRelevanceFieldEnum[]
  sort: Prisma.SortOrder
  search: string
}

export type UserCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  clerkId?: Prisma.SortOrder
  email?: Prisma.SortOrder
  role?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
}

export type UserMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  clerkId?: Prisma.SortOrder
  email?: Prisma.SortOrder
  role?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
}

export type UserMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  clerkId?: Prisma.SortOrder
  email?: Prisma.SortOrder
  role?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
}

export type UserScalarRelationFilter = {
  is?: Prisma.UserWhereInput
  isNot?: Prisma.UserWhereInput
}

export type StringFieldUpdateOperationsInput = {
  set?: string
}

export type DateTimeFieldUpdateOperationsInput = {
  set?: Date | string
}

export type UserCreateNestedOneWithoutEnrollmentsInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutEnrollmentsInput, Prisma.UserUncheckedCreateWithoutEnrollmentsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutEnrollmentsInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutEnrollmentsNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutEnrollmentsInput, Prisma.UserUncheckedCreateWithoutEnrollmentsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutEnrollmentsInput
  upsert?: Prisma.UserUpsertWithoutEnrollmentsInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutEnrollmentsInput, Prisma.UserUpdateWithoutEnrollmentsInput>, Prisma.UserUncheckedUpdateWithoutEnrollmentsInput>
}

export type UserCreateNestedOneWithoutQuizAssignmentsInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutQuizAssignmentsInput, Prisma.UserUncheckedCreateWithoutQuizAssignmentsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutQuizAssignmentsInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutQuizAssignmentsNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutQuizAssignmentsInput, Prisma.UserUncheckedCreateWithoutQuizAssignmentsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutQuizAssignmentsInput
  upsert?: Prisma.UserUpsertWithoutQuizAssignmentsInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutQuizAssignmentsInput, Prisma.UserUpdateWithoutQuizAssignmentsInput>, Prisma.UserUncheckedUpdateWithoutQuizAssignmentsInput>
}

export type UserCreateNestedOneWithoutReviewsInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutReviewsInput, Prisma.UserUncheckedCreateWithoutReviewsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutReviewsInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutReviewsNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutReviewsInput, Prisma.UserUncheckedCreateWithoutReviewsInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutReviewsInput
  upsert?: Prisma.UserUpsertWithoutReviewsInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutReviewsInput, Prisma.UserUpdateWithoutReviewsInput>, Prisma.UserUncheckedUpdateWithoutReviewsInput>
}

export type UserCreateNestedOneWithoutNotesInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutNotesInput, Prisma.UserUncheckedCreateWithoutNotesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutNotesInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutNotesNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutNotesInput, Prisma.UserUncheckedCreateWithoutNotesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutNotesInput
  upsert?: Prisma.UserUpsertWithoutNotesInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutNotesInput, Prisma.UserUpdateWithoutNotesInput>, Prisma.UserUncheckedUpdateWithoutNotesInput>
}

export type UserCreateNestedOneWithoutProgressInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutProgressInput, Prisma.UserUncheckedCreateWithoutProgressInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutProgressInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutProgressNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutProgressInput, Prisma.UserUncheckedCreateWithoutProgressInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutProgressInput
  upsert?: Prisma.UserUpsertWithoutProgressInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutProgressInput, Prisma.UserUpdateWithoutProgressInput>, Prisma.UserUncheckedUpdateWithoutProgressInput>
}

export type UserCreateNestedOneWithoutPurchasesInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutPurchasesInput, Prisma.UserUncheckedCreateWithoutPurchasesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPurchasesInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutPurchasesNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutPurchasesInput, Prisma.UserUncheckedCreateWithoutPurchasesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutPurchasesInput
  upsert?: Prisma.UserUpsertWithoutPurchasesInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPurchasesInput, Prisma.UserUpdateWithoutPurchasesInput>, Prisma.UserUncheckedUpdateWithoutPurchasesInput>
}

export type UserCreateNestedOneWithoutCertificatesInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutCertificatesInput, Prisma.UserUncheckedCreateWithoutCertificatesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutCertificatesInput
  connect?: Prisma.UserWhereUniqueInput
}

export type UserUpdateOneRequiredWithoutCertificatesNestedInput = {
  create?: Prisma.XOR<Prisma.UserCreateWithoutCertificatesInput, Prisma.UserUncheckedCreateWithoutCertificatesInput>
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutCertificatesInput
  upsert?: Prisma.UserUpsertWithoutCertificatesInput
  connect?: Prisma.UserWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutCertificatesInput, Prisma.UserUpdateWithoutCertificatesInput>, Prisma.UserUncheckedUpdateWithoutCertificatesInput>
}

export type UserCreateWithoutEnrollmentsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutEnrollmentsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutEnrollmentsInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutEnrollmentsInput, Prisma.UserUncheckedCreateWithoutEnrollmentsInput>
}

export type UserUpsertWithoutEnrollmentsInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutEnrollmentsInput, Prisma.UserUncheckedUpdateWithoutEnrollmentsInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutEnrollmentsInput, Prisma.UserUncheckedCreateWithoutEnrollmentsInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutEnrollmentsInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutEnrollmentsInput, Prisma.UserUncheckedUpdateWithoutEnrollmentsInput>
}

export type UserUpdateWithoutEnrollmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutEnrollmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutQuizAssignmentsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutQuizAssignmentsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutQuizAssignmentsInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutQuizAssignmentsInput, Prisma.UserUncheckedCreateWithoutQuizAssignmentsInput>
}

export type UserUpsertWithoutQuizAssignmentsInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutQuizAssignmentsInput, Prisma.UserUncheckedUpdateWithoutQuizAssignmentsInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutQuizAssignmentsInput, Prisma.UserUncheckedCreateWithoutQuizAssignmentsInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutQuizAssignmentsInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutQuizAssignmentsInput, Prisma.UserUncheckedUpdateWithoutQuizAssignmentsInput>
}

export type UserUpdateWithoutQuizAssignmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutQuizAssignmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutReviewsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutReviewsInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutReviewsInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutReviewsInput, Prisma.UserUncheckedCreateWithoutReviewsInput>
}

export type UserUpsertWithoutReviewsInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutReviewsInput, Prisma.UserUncheckedUpdateWithoutReviewsInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutReviewsInput, Prisma.UserUncheckedCreateWithoutReviewsInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutReviewsInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutReviewsInput, Prisma.UserUncheckedUpdateWithoutReviewsInput>
}

export type UserUpdateWithoutReviewsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutReviewsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutNotesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutNotesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutNotesInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutNotesInput, Prisma.UserUncheckedCreateWithoutNotesInput>
}

export type UserUpsertWithoutNotesInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutNotesInput, Prisma.UserUncheckedUpdateWithoutNotesInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutNotesInput, Prisma.UserUncheckedCreateWithoutNotesInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutNotesInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutNotesInput, Prisma.UserUncheckedUpdateWithoutNotesInput>
}

export type UserUpdateWithoutNotesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutNotesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutProgressInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutProgressInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutProgressInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutProgressInput, Prisma.UserUncheckedCreateWithoutProgressInput>
}

export type UserUpsertWithoutProgressInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutProgressInput, Prisma.UserUncheckedUpdateWithoutProgressInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutProgressInput, Prisma.UserUncheckedCreateWithoutProgressInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutProgressInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutProgressInput, Prisma.UserUncheckedUpdateWithoutProgressInput>
}

export type UserUpdateWithoutProgressInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutProgressInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutPurchasesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutPurchasesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  certificates?: Prisma.CertificateUncheckedCreateNestedManyWithoutUserInput
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutPurchasesInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutPurchasesInput, Prisma.UserUncheckedCreateWithoutPurchasesInput>
}

export type UserUpsertWithoutPurchasesInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutPurchasesInput, Prisma.UserUncheckedUpdateWithoutPurchasesInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutPurchasesInput, Prisma.UserUncheckedCreateWithoutPurchasesInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutPurchasesInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutPurchasesInput, Prisma.UserUncheckedUpdateWithoutPurchasesInput>
}

export type UserUpdateWithoutPurchasesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutPurchasesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  certificates?: Prisma.CertificateUncheckedUpdateManyWithoutUserNestedInput
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}

export type UserCreateWithoutCertificatesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  enrollments?: Prisma.EnrollmentCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressCreateNestedManyWithoutUserInput
}

export type UserUncheckedCreateWithoutCertificatesInput = {
  id?: string
  clerkId: string
  email: string
  role?: string
  createdAt?: Date | string
  updatedAt?: Date | string
  enrollments?: Prisma.EnrollmentUncheckedCreateNestedManyWithoutUserInput
  notes?: Prisma.NoteUncheckedCreateNestedManyWithoutUserInput
  purchases?: Prisma.PurchaseUncheckedCreateNestedManyWithoutUserInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedCreateNestedManyWithoutUserInput
  reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutUserInput
  progress?: Prisma.UserProgressUncheckedCreateNestedManyWithoutUserInput
}

export type UserCreateOrConnectWithoutCertificatesInput = {
  where: Prisma.UserWhereUniqueInput
  create: Prisma.XOR<Prisma.UserCreateWithoutCertificatesInput, Prisma.UserUncheckedCreateWithoutCertificatesInput>
}

export type UserUpsertWithoutCertificatesInput = {
  update: Prisma.XOR<Prisma.UserUpdateWithoutCertificatesInput, Prisma.UserUncheckedUpdateWithoutCertificatesInput>
  create: Prisma.XOR<Prisma.UserCreateWithoutCertificatesInput, Prisma.UserUncheckedCreateWithoutCertificatesInput>
  where?: Prisma.UserWhereInput
}

export type UserUpdateToOneWithWhereWithoutCertificatesInput = {
  where?: Prisma.UserWhereInput
  data: Prisma.XOR<Prisma.UserUpdateWithoutCertificatesInput, Prisma.UserUncheckedUpdateWithoutCertificatesInput>
}

export type UserUpdateWithoutCertificatesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  enrollments?: Prisma.EnrollmentUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUpdateManyWithoutUserNestedInput
}

export type UserUncheckedUpdateWithoutCertificatesInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  clerkId?: Prisma.StringFieldUpdateOperationsInput | string
  email?: Prisma.StringFieldUpdateOperationsInput | string
  role?: Prisma.StringFieldUpdateOperationsInput | string
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
  enrollments?: Prisma.EnrollmentUncheckedUpdateManyWithoutUserNestedInput
  notes?: Prisma.NoteUncheckedUpdateManyWithoutUserNestedInput
  purchases?: Prisma.PurchaseUncheckedUpdateManyWithoutUserNestedInput
  quizAssignments?: Prisma.QuizAssignmentUncheckedUpdateManyWithoutUserNestedInput
  reviews?: Prisma.ReviewUncheckedUpdateManyWithoutUserNestedInput
  progress?: Prisma.UserProgressUncheckedUpdateManyWithoutUserNestedInput
}


/**
 * Count Type UserCountOutputType
 */

export type UserCountOutputType = {
  certificates: number
  enrollments: number
  notes: number
  purchases: number
  quizAssignments: number
  reviews: number
  progress: number
}

export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  certificates?: boolean | UserCountOutputTypeCountCertificatesArgs
  enrollments?: boolean | UserCountOutputTypeCountEnrollmentsArgs
  notes?: boolean | UserCountOutputTypeCountNotesArgs
  purchases?: boolean | UserCountOutputTypeCountPurchasesArgs
  quizAssignments?: boolean | UserCountOutputTypeCountQuizAssignmentsArgs
  reviews?: boolean | UserCountOutputTypeCountReviewsArgs
  progress?: boolean | UserCountOutputTypeCountProgressArgs
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the UserCountOutputType
   */
  select?: Prisma.UserCountOutputTypeSelect<ExtArgs> | null
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountCertificatesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.CertificateWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountEnrollmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.EnrollmentWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountNotesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.NoteWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountPurchasesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.PurchaseWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountQuizAssignmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.QuizAssignmentWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountReviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.ReviewWhereInput
}

/**
 * UserCountOutputType without action
 */
export type UserCountOutputTypeCountProgressArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.UserProgressWhereInput
}


export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  clerkId?: boolean
  email?: boolean
  role?: boolean
  createdAt?: boolean
  updatedAt?: boolean
  certificates?: boolean | Prisma.User$certificatesArgs<ExtArgs>
  enrollments?: boolean | Prisma.User$enrollmentsArgs<ExtArgs>
  notes?: boolean | Prisma.User$notesArgs<ExtArgs>
  purchases?: boolean | Prisma.User$purchasesArgs<ExtArgs>
  quizAssignments?: boolean | Prisma.User$quizAssignmentsArgs<ExtArgs>
  reviews?: boolean | Prisma.User$reviewsArgs<ExtArgs>
  progress?: boolean | Prisma.User$progressArgs<ExtArgs>
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
}, ExtArgs["result"]["user"]>



export type UserSelectScalar = {
  id?: boolean
  clerkId?: boolean
  email?: boolean
  role?: boolean
  createdAt?: boolean
  updatedAt?: boolean
}

export type UserOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "clerkId" | "email" | "role" | "createdAt" | "updatedAt", ExtArgs["result"]["user"]>
export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  certificates?: boolean | Prisma.User$certificatesArgs<ExtArgs>
  enrollments?: boolean | Prisma.User$enrollmentsArgs<ExtArgs>
  notes?: boolean | Prisma.User$notesArgs<ExtArgs>
  purchases?: boolean | Prisma.User$purchasesArgs<ExtArgs>
  quizAssignments?: boolean | Prisma.User$quizAssignmentsArgs<ExtArgs>
  reviews?: boolean | Prisma.User$reviewsArgs<ExtArgs>
  progress?: boolean | Prisma.User$progressArgs<ExtArgs>
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
}

export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "User"
  objects: {
    certificates: Prisma.$CertificatePayload<ExtArgs>[]
    enrollments: Prisma.$EnrollmentPayload<ExtArgs>[]
    notes: Prisma.$NotePayload<ExtArgs>[]
    purchases: Prisma.$PurchasePayload<ExtArgs>[]
    quizAssignments: Prisma.$QuizAssignmentPayload<ExtArgs>[]
    reviews: Prisma.$ReviewPayload<ExtArgs>[]
    progress: Prisma.$UserProgressPayload<ExtArgs>[]
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: string
    clerkId: string
    email: string
    role: string
    createdAt: Date
    updatedAt: Date
  }, ExtArgs["result"]["user"]>
  composites: {}
}

export type UserGetPayload<S extends boolean | null | undefined | UserDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$UserPayload, S>

export type UserCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
  Omit<UserFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
    select?: UserCountAggregateInputType | true
  }

export interface UserDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
  [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['User'], meta: { name: 'User' } }
  /**
   * Find zero or one User that matches the filter.
   * @param {UserFindUniqueArgs} args - Arguments to find a User
   * @example
   * // Get one User
   * const user = await prisma.user.findUnique({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUnique<T extends UserFindUniqueArgs>(args: Prisma.SelectSubset<T, UserFindUniqueArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find one User that matches the filter or throw an error with `error.code='P2025'`
   * if no matches were found.
   * @param {UserFindUniqueOrThrowArgs} args - Arguments to find a User
   * @example
   * // Get one User
   * const user = await prisma.user.findUniqueOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUniqueOrThrow<T extends UserFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, UserFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first User 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 {UserFindFirstArgs} args - Arguments to find a User
   * @example
   * // Get one User
   * const user = await prisma.user.findFirst({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirst<T extends UserFindFirstArgs>(args?: Prisma.SelectSubset<T, UserFindFirstArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first User 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 {UserFindFirstOrThrowArgs} args - Arguments to find a User
   * @example
   * // Get one User
   * const user = await prisma.user.findFirstOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirstOrThrow<T extends UserFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, UserFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<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 {UserFindManyArgs} args - Arguments to filter and select certain fields only.
   * @example
   * // Get all Users
   * const users = await prisma.user.findMany()
   * 
   * // Get first 10 Users
   * const users = await prisma.user.findMany({ take: 10 })
   * 
   * // Only select the `id`
   * const userWithIdOnly = await prisma.user.findMany({ select: { id: true } })
   * 
   */
  findMany<T extends UserFindManyArgs>(args?: Prisma.SelectSubset<T, UserFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>

  /**
   * Create a User.
   * @param {UserCreateArgs} args - Arguments to create a User.
   * @example
   * // Create one User
   * const User = await prisma.user.create({
   *   data: {
   *     // ... data to create a User
   *   }
   * })
   * 
   */
  create<T extends UserCreateArgs>(args: Prisma.SelectSubset<T, UserCreateArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Create many Users.
   * @param {UserCreateManyArgs} args - Arguments to create many Users.
   * @example
   * // Create many Users
   * const user = await prisma.user.createMany({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   *     
   */
  createMany<T extends UserCreateManyArgs>(args?: Prisma.SelectSubset<T, UserCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Delete a User.
   * @param {UserDeleteArgs} args - Arguments to delete one User.
   * @example
   * // Delete one User
   * const User = await prisma.user.delete({
   *   where: {
   *     // ... filter to delete one User
   *   }
   * })
   * 
   */
  delete<T extends UserDeleteArgs>(args: Prisma.SelectSubset<T, UserDeleteArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Update one User.
   * @param {UserUpdateArgs} args - Arguments to update one User.
   * @example
   * // Update one User
   * const user = await prisma.user.update({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  update<T extends UserUpdateArgs>(args: Prisma.SelectSubset<T, UserUpdateArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Delete zero or more Users.
   * @param {UserDeleteManyArgs} args - Arguments to filter Users to delete.
   * @example
   * // Delete a few Users
   * const { count } = await prisma.user.deleteMany({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   * 
   */
  deleteMany<T extends UserDeleteManyArgs>(args?: Prisma.SelectSubset<T, UserDeleteManyArgs<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 {UserUpdateManyArgs} args - Arguments to update one or more rows.
   * @example
   * // Update many Users
   * const user = await prisma.user.updateMany({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  updateMany<T extends UserUpdateManyArgs>(args: Prisma.SelectSubset<T, UserUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Create or update one User.
   * @param {UserUpsertArgs} args - Arguments to update or create a User.
   * @example
   * // Update or create a User
   * const user = await prisma.user.upsert({
   *   create: {
   *     // ... data to create a User
   *   },
   *   update: {
   *     // ... in case it already exists, update
   *   },
   *   where: {
   *     // ... the filter for the User we want to update
   *   }
   * })
   */
  upsert<T extends UserUpsertArgs>(args: Prisma.SelectSubset<T, UserUpsertArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<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 {UserCountArgs} args - Arguments to filter Users to count.
   * @example
   * // Count the number of Users
   * const count = await prisma.user.count({
   *   where: {
   *     // ... the filter for the Users we want to count
   *   }
   * })
  **/
  count<T extends UserCountArgs>(
    args?: Prisma.Subset<T, UserCountArgs>,
  ): Prisma.PrismaPromise<
    T extends runtime.Types.Utils.Record<'select', any>
      ? T['select'] extends true
        ? number
        : Prisma.GetScalarType<T['select'], UserCountAggregateOutputType>
      : number
  >

  /**
   * Allows you to perform aggregations operations on a User.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {UserAggregateArgs} 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 UserAggregateArgs>(args: Prisma.Subset<T, UserAggregateArgs>): Prisma.PrismaPromise<GetUserAggregateType<T>>

  /**
   * Group by User.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {UserGroupByArgs} 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 UserGroupByArgs,
    HasSelectOrTake extends Prisma.Or<
      Prisma.Extends<'skip', Prisma.Keys<T>>,
      Prisma.Extends<'take', Prisma.Keys<T>>
    >,
    OrderByArg extends Prisma.True extends HasSelectOrTake
      ? { orderBy: UserGroupByArgs['orderBy'] }
      : { orderBy?: UserGroupByArgs['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, UserGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetUserGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
/**
 * Fields of the User model
 */
readonly fields: UserFieldRefs;
}

/**
 * The delegate class that acts as a "Promise-like" for User.
 * 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__UserClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
  readonly [Symbol.toStringTag]: "PrismaPromise"
  certificates<T extends Prisma.User$certificatesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$certificatesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CertificatePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  enrollments<T extends Prisma.User$enrollmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$enrollmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EnrollmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  notes<T extends Prisma.User$notesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$notesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$NotePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  purchases<T extends Prisma.User$purchasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$purchasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PurchasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  quizAssignments<T extends Prisma.User$quizAssignmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$quizAssignmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$QuizAssignmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  reviews<T extends Prisma.User$reviewsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$reviewsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ReviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  progress<T extends Prisma.User$progressArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$progressArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UserProgressPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  /**
   * 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 User model
 */
export interface UserFieldRefs {
  readonly id: Prisma.FieldRef<"User", 'String'>
  readonly clerkId: Prisma.FieldRef<"User", 'String'>
  readonly email: Prisma.FieldRef<"User", 'String'>
  readonly role: Prisma.FieldRef<"User", 'String'>
  readonly createdAt: Prisma.FieldRef<"User", 'DateTime'>
  readonly updatedAt: Prisma.FieldRef<"User", 'DateTime'>
}
    

// Custom InputTypes
/**
 * User findUnique
 */
export type UserFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter, which User to fetch.
   */
  where: Prisma.UserWhereUniqueInput
}

/**
 * User findUniqueOrThrow
 */
export type UserFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter, which User to fetch.
   */
  where: Prisma.UserWhereUniqueInput
}

/**
 * User findFirst
 */
export type UserFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter, which User to fetch.
   */
  where?: Prisma.UserWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of Users to fetch.
   */
  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]
  /**
   * {@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.UserWhereUniqueInput
  /**
   * {@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.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[]
}

/**
 * User findFirstOrThrow
 */
export type UserFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter, which User to fetch.
   */
  where?: Prisma.UserWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of Users to fetch.
   */
  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]
  /**
   * {@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.UserWhereUniqueInput
  /**
   * {@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.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[]
}

/**
 * User findMany
 */
export type UserFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter, which Users to fetch.
   */
  where?: Prisma.UserWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of Users to fetch.
   */
  orderBy?: Prisma.UserOrderByWithRelationInput | Prisma.UserOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for listing Users.
   */
  cursor?: Prisma.UserWhereUniqueInput
  /**
   * {@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.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[]
}

/**
 * User create
 */
export type UserCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * The data needed to create a User.
   */
  data: Prisma.XOR<Prisma.UserCreateInput, Prisma.UserUncheckedCreateInput>
}

/**
 * User createMany
 */
export type UserCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to create many Users.
   */
  data: Prisma.UserCreateManyInput | Prisma.UserCreateManyInput[]
  skipDuplicates?: boolean
}

/**
 * User update
 */
export type UserUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * The data needed to update a User.
   */
  data: Prisma.XOR<Prisma.UserUpdateInput, Prisma.UserUncheckedUpdateInput>
  /**
   * Choose, which User to update.
   */
  where: Prisma.UserWhereUniqueInput
}

/**
 * User updateMany
 */
export type UserUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update Users.
   */
  data: Prisma.XOR<Prisma.UserUpdateManyMutationInput, Prisma.UserUncheckedUpdateManyInput>
  /**
   * Filter which Users to update
   */
  where?: Prisma.UserWhereInput
  /**
   * Limit how many Users to update.
   */
  limit?: number
}

/**
 * User upsert
 */
export type UserUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * The filter to search for the User to update in case it exists.
   */
  where: Prisma.UserWhereUniqueInput
  /**
   * In case the User found by the `where` argument doesn't exist, create a new User with this data.
   */
  create: Prisma.XOR<Prisma.UserCreateInput, Prisma.UserUncheckedCreateInput>
  /**
   * In case the User was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.UserUpdateInput, Prisma.UserUncheckedUpdateInput>
}

/**
 * User delete
 */
export type UserDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
  /**
   * Filter which User to delete.
   */
  where: Prisma.UserWhereUniqueInput
}

/**
 * User deleteMany
 */
export type UserDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which Users to delete
   */
  where?: Prisma.UserWhereInput
  /**
   * Limit how many Users to delete.
   */
  limit?: number
}

/**
 * User.certificates
 */
export type User$certificatesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Certificate
   */
  select?: Prisma.CertificateSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Certificate
   */
  omit?: Prisma.CertificateOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.CertificateInclude<ExtArgs> | null
  where?: Prisma.CertificateWhereInput
  orderBy?: Prisma.CertificateOrderByWithRelationInput | Prisma.CertificateOrderByWithRelationInput[]
  cursor?: Prisma.CertificateWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.CertificateScalarFieldEnum | Prisma.CertificateScalarFieldEnum[]
}

/**
 * User.enrollments
 */
export type User$enrollmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Enrollment
   */
  select?: Prisma.EnrollmentSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Enrollment
   */
  omit?: Prisma.EnrollmentOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EnrollmentInclude<ExtArgs> | null
  where?: Prisma.EnrollmentWhereInput
  orderBy?: Prisma.EnrollmentOrderByWithRelationInput | Prisma.EnrollmentOrderByWithRelationInput[]
  cursor?: Prisma.EnrollmentWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.EnrollmentScalarFieldEnum | Prisma.EnrollmentScalarFieldEnum[]
}

/**
 * User.notes
 */
export type User$notesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Note
   */
  select?: Prisma.NoteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Note
   */
  omit?: Prisma.NoteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.NoteInclude<ExtArgs> | null
  where?: Prisma.NoteWhereInput
  orderBy?: Prisma.NoteOrderByWithRelationInput | Prisma.NoteOrderByWithRelationInput[]
  cursor?: Prisma.NoteWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.NoteScalarFieldEnum | Prisma.NoteScalarFieldEnum[]
}

/**
 * User.purchases
 */
export type User$purchasesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Purchase
   */
  select?: Prisma.PurchaseSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Purchase
   */
  omit?: Prisma.PurchaseOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.PurchaseInclude<ExtArgs> | null
  where?: Prisma.PurchaseWhereInput
  orderBy?: Prisma.PurchaseOrderByWithRelationInput | Prisma.PurchaseOrderByWithRelationInput[]
  cursor?: Prisma.PurchaseWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.PurchaseScalarFieldEnum | Prisma.PurchaseScalarFieldEnum[]
}

/**
 * User.quizAssignments
 */
export type User$quizAssignmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the QuizAssignment
   */
  select?: Prisma.QuizAssignmentSelect<ExtArgs> | null
  /**
   * Omit specific fields from the QuizAssignment
   */
  omit?: Prisma.QuizAssignmentOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.QuizAssignmentInclude<ExtArgs> | null
  where?: Prisma.QuizAssignmentWhereInput
  orderBy?: Prisma.QuizAssignmentOrderByWithRelationInput | Prisma.QuizAssignmentOrderByWithRelationInput[]
  cursor?: Prisma.QuizAssignmentWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.QuizAssignmentScalarFieldEnum | Prisma.QuizAssignmentScalarFieldEnum[]
}

/**
 * User.reviews
 */
export type User$reviewsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Review
   */
  select?: Prisma.ReviewSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Review
   */
  omit?: Prisma.ReviewOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.ReviewInclude<ExtArgs> | null
  where?: Prisma.ReviewWhereInput
  orderBy?: Prisma.ReviewOrderByWithRelationInput | Prisma.ReviewOrderByWithRelationInput[]
  cursor?: Prisma.ReviewWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.ReviewScalarFieldEnum | Prisma.ReviewScalarFieldEnum[]
}

/**
 * User.progress
 */
export type User$progressArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the UserProgress
   */
  select?: Prisma.UserProgressSelect<ExtArgs> | null
  /**
   * Omit specific fields from the UserProgress
   */
  omit?: Prisma.UserProgressOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserProgressInclude<ExtArgs> | null
  where?: Prisma.UserProgressWhereInput
  orderBy?: Prisma.UserProgressOrderByWithRelationInput | Prisma.UserProgressOrderByWithRelationInput[]
  cursor?: Prisma.UserProgressWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.UserProgressScalarFieldEnum | Prisma.UserProgressScalarFieldEnum[]
}

/**
 * User without action
 */
export type UserDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the User
   */
  select?: Prisma.UserSelect<ExtArgs> | null
  /**
   * Omit specific fields from the User
   */
  omit?: Prisma.UserOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.UserInclude<ExtArgs> | null
}
