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

export type AggregateSessionData = {
  _count: SessionDataCountAggregateOutputType | null
  _avg: SessionDataAvgAggregateOutputType | null
  _sum: SessionDataSumAggregateOutputType | null
  _min: SessionDataMinAggregateOutputType | null
  _max: SessionDataMaxAggregateOutputType | null
}

export type SessionDataAvgAggregateOutputType = {
  numberValue: runtime.Decimal | null
  dataType: number | null
}

export type SessionDataSumAggregateOutputType = {
  numberValue: runtime.Decimal | null
  dataType: number | null
}

export type SessionDataMinAggregateOutputType = {
  id: string | null
  websiteId: string | null
  sessionId: string | null
  dataKey: string | null
  stringValue: string | null
  numberValue: runtime.Decimal | null
  dateValue: Date | null
  dataType: number | null
  distinctId: string | null
  createdAt: Date | null
}

export type SessionDataMaxAggregateOutputType = {
  id: string | null
  websiteId: string | null
  sessionId: string | null
  dataKey: string | null
  stringValue: string | null
  numberValue: runtime.Decimal | null
  dateValue: Date | null
  dataType: number | null
  distinctId: string | null
  createdAt: Date | null
}

export type SessionDataCountAggregateOutputType = {
  id: number
  websiteId: number
  sessionId: number
  dataKey: number
  stringValue: number
  numberValue: number
  dateValue: number
  dataType: number
  distinctId: number
  createdAt: number
  _all: number
}


export type SessionDataAvgAggregateInputType = {
  numberValue?: true
  dataType?: true
}

export type SessionDataSumAggregateInputType = {
  numberValue?: true
  dataType?: true
}

export type SessionDataMinAggregateInputType = {
  id?: true
  websiteId?: true
  sessionId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  distinctId?: true
  createdAt?: true
}

export type SessionDataMaxAggregateInputType = {
  id?: true
  websiteId?: true
  sessionId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  distinctId?: true
  createdAt?: true
}

export type SessionDataCountAggregateInputType = {
  id?: true
  websiteId?: true
  sessionId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  distinctId?: true
  createdAt?: true
  _all?: true
}

export type SessionDataAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which SessionData to aggregate.
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of SessionData to fetch.
   */
  orderBy?: Prisma.SessionDataOrderByWithRelationInput | Prisma.SessionDataOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.SessionDataWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` SessionData 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` SessionData.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Count returned SessionData
  **/
  _count?: true | SessionDataCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to average
  **/
  _avg?: SessionDataAvgAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to sum
  **/
  _sum?: SessionDataSumAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: SessionDataMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: SessionDataMaxAggregateInputType
}

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




export type SessionDataGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.SessionDataWhereInput
  orderBy?: Prisma.SessionDataOrderByWithAggregationInput | Prisma.SessionDataOrderByWithAggregationInput[]
  by: Prisma.SessionDataScalarFieldEnum[] | Prisma.SessionDataScalarFieldEnum
  having?: Prisma.SessionDataScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: SessionDataCountAggregateInputType | true
  _avg?: SessionDataAvgAggregateInputType
  _sum?: SessionDataSumAggregateInputType
  _min?: SessionDataMinAggregateInputType
  _max?: SessionDataMaxAggregateInputType
}

export type SessionDataGroupByOutputType = {
  id: string
  websiteId: string
  sessionId: string
  dataKey: string
  stringValue: string | null
  numberValue: runtime.Decimal | null
  dateValue: Date | null
  dataType: number
  distinctId: string | null
  createdAt: Date | null
  _count: SessionDataCountAggregateOutputType | null
  _avg: SessionDataAvgAggregateOutputType | null
  _sum: SessionDataSumAggregateOutputType | null
  _min: SessionDataMinAggregateOutputType | null
  _max: SessionDataMaxAggregateOutputType | null
}

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



export type SessionDataWhereInput = {
  AND?: Prisma.SessionDataWhereInput | Prisma.SessionDataWhereInput[]
  OR?: Prisma.SessionDataWhereInput[]
  NOT?: Prisma.SessionDataWhereInput | Prisma.SessionDataWhereInput[]
  id?: Prisma.UuidFilter<"SessionData"> | string
  websiteId?: Prisma.UuidFilter<"SessionData"> | string
  sessionId?: Prisma.UuidFilter<"SessionData"> | string
  dataKey?: Prisma.StringFilter<"SessionData"> | string
  stringValue?: Prisma.StringNullableFilter<"SessionData"> | string | null
  numberValue?: Prisma.DecimalNullableFilter<"SessionData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
  dataType?: Prisma.IntFilter<"SessionData"> | number
  distinctId?: Prisma.StringNullableFilter<"SessionData"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
  website?: Prisma.XOR<Prisma.WebsiteScalarRelationFilter, Prisma.WebsiteWhereInput>
  session?: Prisma.XOR<Prisma.SessionScalarRelationFilter, Prisma.SessionWhereInput>
}

export type SessionDataOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  sessionId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrderInput | Prisma.SortOrder
  numberValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dateValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dataType?: Prisma.SortOrder
  distinctId?: Prisma.SortOrderInput | Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  website?: Prisma.WebsiteOrderByWithRelationInput
  session?: Prisma.SessionOrderByWithRelationInput
}

export type SessionDataWhereUniqueInput = Prisma.AtLeast<{
  id?: string
  AND?: Prisma.SessionDataWhereInput | Prisma.SessionDataWhereInput[]
  OR?: Prisma.SessionDataWhereInput[]
  NOT?: Prisma.SessionDataWhereInput | Prisma.SessionDataWhereInput[]
  websiteId?: Prisma.UuidFilter<"SessionData"> | string
  sessionId?: Prisma.UuidFilter<"SessionData"> | string
  dataKey?: Prisma.StringFilter<"SessionData"> | string
  stringValue?: Prisma.StringNullableFilter<"SessionData"> | string | null
  numberValue?: Prisma.DecimalNullableFilter<"SessionData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
  dataType?: Prisma.IntFilter<"SessionData"> | number
  distinctId?: Prisma.StringNullableFilter<"SessionData"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
  website?: Prisma.XOR<Prisma.WebsiteScalarRelationFilter, Prisma.WebsiteWhereInput>
  session?: Prisma.XOR<Prisma.SessionScalarRelationFilter, Prisma.SessionWhereInput>
}, "id">

export type SessionDataOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  sessionId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrderInput | Prisma.SortOrder
  numberValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dateValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dataType?: Prisma.SortOrder
  distinctId?: Prisma.SortOrderInput | Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.SessionDataCountOrderByAggregateInput
  _avg?: Prisma.SessionDataAvgOrderByAggregateInput
  _max?: Prisma.SessionDataMaxOrderByAggregateInput
  _min?: Prisma.SessionDataMinOrderByAggregateInput
  _sum?: Prisma.SessionDataSumOrderByAggregateInput
}

export type SessionDataScalarWhereWithAggregatesInput = {
  AND?: Prisma.SessionDataScalarWhereWithAggregatesInput | Prisma.SessionDataScalarWhereWithAggregatesInput[]
  OR?: Prisma.SessionDataScalarWhereWithAggregatesInput[]
  NOT?: Prisma.SessionDataScalarWhereWithAggregatesInput | Prisma.SessionDataScalarWhereWithAggregatesInput[]
  id?: Prisma.UuidWithAggregatesFilter<"SessionData"> | string
  websiteId?: Prisma.UuidWithAggregatesFilter<"SessionData"> | string
  sessionId?: Prisma.UuidWithAggregatesFilter<"SessionData"> | string
  dataKey?: Prisma.StringWithAggregatesFilter<"SessionData"> | string
  stringValue?: Prisma.StringNullableWithAggregatesFilter<"SessionData"> | string | null
  numberValue?: Prisma.DecimalNullableWithAggregatesFilter<"SessionData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableWithAggregatesFilter<"SessionData"> | Date | string | null
  dataType?: Prisma.IntWithAggregatesFilter<"SessionData"> | number
  distinctId?: Prisma.StringNullableWithAggregatesFilter<"SessionData"> | string | null
  createdAt?: Prisma.DateTimeNullableWithAggregatesFilter<"SessionData"> | Date | string | null
}

export type SessionDataCreateInput = {
  id: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
  website: Prisma.WebsiteCreateNestedOneWithoutSessionDataInput
  session: Prisma.SessionCreateNestedOneWithoutSessionDataInput
}

export type SessionDataUncheckedCreateInput = {
  id: string
  websiteId: string
  sessionId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  website?: Prisma.WebsiteUpdateOneRequiredWithoutSessionDataNestedInput
  session?: Prisma.SessionUpdateOneRequiredWithoutSessionDataNestedInput
}

export type SessionDataUncheckedUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  sessionId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataCreateManyInput = {
  id: string
  websiteId: string
  sessionId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataUpdateManyMutationInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataUncheckedUpdateManyInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  sessionId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataListRelationFilter = {
  every?: Prisma.SessionDataWhereInput
  some?: Prisma.SessionDataWhereInput
  none?: Prisma.SessionDataWhereInput
}

export type SessionDataOrderByRelationAggregateInput = {
  _count?: Prisma.SortOrder
}

export type SessionDataCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  sessionId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  distinctId?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

export type SessionDataAvgOrderByAggregateInput = {
  numberValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
}

export type SessionDataMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  sessionId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  distinctId?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

export type SessionDataMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  sessionId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  distinctId?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

export type SessionDataSumOrderByAggregateInput = {
  numberValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
}

export type SessionDataCreateNestedManyWithoutSessionInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput> | Prisma.SessionDataCreateWithoutSessionInput[] | Prisma.SessionDataUncheckedCreateWithoutSessionInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutSessionInput | Prisma.SessionDataCreateOrConnectWithoutSessionInput[]
  createMany?: Prisma.SessionDataCreateManySessionInputEnvelope
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
}

export type SessionDataUncheckedCreateNestedManyWithoutSessionInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput> | Prisma.SessionDataCreateWithoutSessionInput[] | Prisma.SessionDataUncheckedCreateWithoutSessionInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutSessionInput | Prisma.SessionDataCreateOrConnectWithoutSessionInput[]
  createMany?: Prisma.SessionDataCreateManySessionInputEnvelope
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
}

export type SessionDataUpdateManyWithoutSessionNestedInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput> | Prisma.SessionDataCreateWithoutSessionInput[] | Prisma.SessionDataUncheckedCreateWithoutSessionInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutSessionInput | Prisma.SessionDataCreateOrConnectWithoutSessionInput[]
  upsert?: Prisma.SessionDataUpsertWithWhereUniqueWithoutSessionInput | Prisma.SessionDataUpsertWithWhereUniqueWithoutSessionInput[]
  createMany?: Prisma.SessionDataCreateManySessionInputEnvelope
  set?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  disconnect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  delete?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  update?: Prisma.SessionDataUpdateWithWhereUniqueWithoutSessionInput | Prisma.SessionDataUpdateWithWhereUniqueWithoutSessionInput[]
  updateMany?: Prisma.SessionDataUpdateManyWithWhereWithoutSessionInput | Prisma.SessionDataUpdateManyWithWhereWithoutSessionInput[]
  deleteMany?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
}

export type SessionDataUncheckedUpdateManyWithoutSessionNestedInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput> | Prisma.SessionDataCreateWithoutSessionInput[] | Prisma.SessionDataUncheckedCreateWithoutSessionInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutSessionInput | Prisma.SessionDataCreateOrConnectWithoutSessionInput[]
  upsert?: Prisma.SessionDataUpsertWithWhereUniqueWithoutSessionInput | Prisma.SessionDataUpsertWithWhereUniqueWithoutSessionInput[]
  createMany?: Prisma.SessionDataCreateManySessionInputEnvelope
  set?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  disconnect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  delete?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  update?: Prisma.SessionDataUpdateWithWhereUniqueWithoutSessionInput | Prisma.SessionDataUpdateWithWhereUniqueWithoutSessionInput[]
  updateMany?: Prisma.SessionDataUpdateManyWithWhereWithoutSessionInput | Prisma.SessionDataUpdateManyWithWhereWithoutSessionInput[]
  deleteMany?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
}

export type SessionDataCreateNestedManyWithoutWebsiteInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput> | Prisma.SessionDataCreateWithoutWebsiteInput[] | Prisma.SessionDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutWebsiteInput | Prisma.SessionDataCreateOrConnectWithoutWebsiteInput[]
  createMany?: Prisma.SessionDataCreateManyWebsiteInputEnvelope
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
}

export type SessionDataUncheckedCreateNestedManyWithoutWebsiteInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput> | Prisma.SessionDataCreateWithoutWebsiteInput[] | Prisma.SessionDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutWebsiteInput | Prisma.SessionDataCreateOrConnectWithoutWebsiteInput[]
  createMany?: Prisma.SessionDataCreateManyWebsiteInputEnvelope
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
}

export type SessionDataUpdateManyWithoutWebsiteNestedInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput> | Prisma.SessionDataCreateWithoutWebsiteInput[] | Prisma.SessionDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutWebsiteInput | Prisma.SessionDataCreateOrConnectWithoutWebsiteInput[]
  upsert?: Prisma.SessionDataUpsertWithWhereUniqueWithoutWebsiteInput | Prisma.SessionDataUpsertWithWhereUniqueWithoutWebsiteInput[]
  createMany?: Prisma.SessionDataCreateManyWebsiteInputEnvelope
  set?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  disconnect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  delete?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  update?: Prisma.SessionDataUpdateWithWhereUniqueWithoutWebsiteInput | Prisma.SessionDataUpdateWithWhereUniqueWithoutWebsiteInput[]
  updateMany?: Prisma.SessionDataUpdateManyWithWhereWithoutWebsiteInput | Prisma.SessionDataUpdateManyWithWhereWithoutWebsiteInput[]
  deleteMany?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
}

export type SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput = {
  create?: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput> | Prisma.SessionDataCreateWithoutWebsiteInput[] | Prisma.SessionDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.SessionDataCreateOrConnectWithoutWebsiteInput | Prisma.SessionDataCreateOrConnectWithoutWebsiteInput[]
  upsert?: Prisma.SessionDataUpsertWithWhereUniqueWithoutWebsiteInput | Prisma.SessionDataUpsertWithWhereUniqueWithoutWebsiteInput[]
  createMany?: Prisma.SessionDataCreateManyWebsiteInputEnvelope
  set?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  disconnect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  delete?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  connect?: Prisma.SessionDataWhereUniqueInput | Prisma.SessionDataWhereUniqueInput[]
  update?: Prisma.SessionDataUpdateWithWhereUniqueWithoutWebsiteInput | Prisma.SessionDataUpdateWithWhereUniqueWithoutWebsiteInput[]
  updateMany?: Prisma.SessionDataUpdateManyWithWhereWithoutWebsiteInput | Prisma.SessionDataUpdateManyWithWhereWithoutWebsiteInput[]
  deleteMany?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
}

export type SessionDataCreateWithoutSessionInput = {
  id: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
  website: Prisma.WebsiteCreateNestedOneWithoutSessionDataInput
}

export type SessionDataUncheckedCreateWithoutSessionInput = {
  id: string
  websiteId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataCreateOrConnectWithoutSessionInput = {
  where: Prisma.SessionDataWhereUniqueInput
  create: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput>
}

export type SessionDataCreateManySessionInputEnvelope = {
  data: Prisma.SessionDataCreateManySessionInput | Prisma.SessionDataCreateManySessionInput[]
  skipDuplicates?: boolean
}

export type SessionDataUpsertWithWhereUniqueWithoutSessionInput = {
  where: Prisma.SessionDataWhereUniqueInput
  update: Prisma.XOR<Prisma.SessionDataUpdateWithoutSessionInput, Prisma.SessionDataUncheckedUpdateWithoutSessionInput>
  create: Prisma.XOR<Prisma.SessionDataCreateWithoutSessionInput, Prisma.SessionDataUncheckedCreateWithoutSessionInput>
}

export type SessionDataUpdateWithWhereUniqueWithoutSessionInput = {
  where: Prisma.SessionDataWhereUniqueInput
  data: Prisma.XOR<Prisma.SessionDataUpdateWithoutSessionInput, Prisma.SessionDataUncheckedUpdateWithoutSessionInput>
}

export type SessionDataUpdateManyWithWhereWithoutSessionInput = {
  where: Prisma.SessionDataScalarWhereInput
  data: Prisma.XOR<Prisma.SessionDataUpdateManyMutationInput, Prisma.SessionDataUncheckedUpdateManyWithoutSessionInput>
}

export type SessionDataScalarWhereInput = {
  AND?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
  OR?: Prisma.SessionDataScalarWhereInput[]
  NOT?: Prisma.SessionDataScalarWhereInput | Prisma.SessionDataScalarWhereInput[]
  id?: Prisma.UuidFilter<"SessionData"> | string
  websiteId?: Prisma.UuidFilter<"SessionData"> | string
  sessionId?: Prisma.UuidFilter<"SessionData"> | string
  dataKey?: Prisma.StringFilter<"SessionData"> | string
  stringValue?: Prisma.StringNullableFilter<"SessionData"> | string | null
  numberValue?: Prisma.DecimalNullableFilter<"SessionData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
  dataType?: Prisma.IntFilter<"SessionData"> | number
  distinctId?: Prisma.StringNullableFilter<"SessionData"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"SessionData"> | Date | string | null
}

export type SessionDataCreateWithoutWebsiteInput = {
  id: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
  session: Prisma.SessionCreateNestedOneWithoutSessionDataInput
}

export type SessionDataUncheckedCreateWithoutWebsiteInput = {
  id: string
  sessionId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataCreateOrConnectWithoutWebsiteInput = {
  where: Prisma.SessionDataWhereUniqueInput
  create: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput>
}

export type SessionDataCreateManyWebsiteInputEnvelope = {
  data: Prisma.SessionDataCreateManyWebsiteInput | Prisma.SessionDataCreateManyWebsiteInput[]
  skipDuplicates?: boolean
}

export type SessionDataUpsertWithWhereUniqueWithoutWebsiteInput = {
  where: Prisma.SessionDataWhereUniqueInput
  update: Prisma.XOR<Prisma.SessionDataUpdateWithoutWebsiteInput, Prisma.SessionDataUncheckedUpdateWithoutWebsiteInput>
  create: Prisma.XOR<Prisma.SessionDataCreateWithoutWebsiteInput, Prisma.SessionDataUncheckedCreateWithoutWebsiteInput>
}

export type SessionDataUpdateWithWhereUniqueWithoutWebsiteInput = {
  where: Prisma.SessionDataWhereUniqueInput
  data: Prisma.XOR<Prisma.SessionDataUpdateWithoutWebsiteInput, Prisma.SessionDataUncheckedUpdateWithoutWebsiteInput>
}

export type SessionDataUpdateManyWithWhereWithoutWebsiteInput = {
  where: Prisma.SessionDataScalarWhereInput
  data: Prisma.XOR<Prisma.SessionDataUpdateManyMutationInput, Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteInput>
}

export type SessionDataCreateManySessionInput = {
  id: string
  websiteId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataUpdateWithoutSessionInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  website?: Prisma.WebsiteUpdateOneRequiredWithoutSessionDataNestedInput
}

export type SessionDataUncheckedUpdateWithoutSessionInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataUncheckedUpdateManyWithoutSessionInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataCreateManyWebsiteInput = {
  id: string
  sessionId: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  distinctId?: string | null
  createdAt?: Date | string | null
}

export type SessionDataUpdateWithoutWebsiteInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  session?: Prisma.SessionUpdateOneRequiredWithoutSessionDataNestedInput
}

export type SessionDataUncheckedUpdateWithoutWebsiteInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  sessionId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type SessionDataUncheckedUpdateManyWithoutWebsiteInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  sessionId?: Prisma.StringFieldUpdateOperationsInput | string
  dataKey?: Prisma.StringFieldUpdateOperationsInput | string
  stringValue?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  numberValue?: Prisma.NullableDecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  dataType?: Prisma.IntFieldUpdateOperationsInput | number
  distinctId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}



export type SessionDataSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  sessionId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  distinctId?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}, ExtArgs["result"]["sessionData"]>

export type SessionDataSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  sessionId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  distinctId?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}, ExtArgs["result"]["sessionData"]>

export type SessionDataSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  sessionId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  distinctId?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}, ExtArgs["result"]["sessionData"]>

export type SessionDataSelectScalar = {
  id?: boolean
  websiteId?: boolean
  sessionId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  distinctId?: boolean
  createdAt?: boolean
}

export type SessionDataOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "websiteId" | "sessionId" | "dataKey" | "stringValue" | "numberValue" | "dateValue" | "dataType" | "distinctId" | "createdAt", ExtArgs["result"]["sessionData"]>
export type SessionDataInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}
export type SessionDataIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}
export type SessionDataIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  session?: boolean | Prisma.SessionDefaultArgs<ExtArgs>
}

export type $SessionDataPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "SessionData"
  objects: {
    website: Prisma.$WebsitePayload<ExtArgs>
    session: Prisma.$SessionPayload<ExtArgs>
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: string
    websiteId: string
    sessionId: string
    dataKey: string
    stringValue: string | null
    numberValue: runtime.Decimal | null
    dateValue: Date | null
    dataType: number
    distinctId: string | null
    createdAt: Date | null
  }, ExtArgs["result"]["sessionData"]>
  composites: {}
}

export type SessionDataGetPayload<S extends boolean | null | undefined | SessionDataDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$SessionDataPayload, S>

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

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

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

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

  /**
   * Find the first SessionData 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 {SessionDataFindFirstOrThrowArgs} args - Arguments to find a SessionData
   * @example
   * // Get one SessionData
   * const sessionData = await prisma.sessionData.findFirstOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirstOrThrow<T extends SessionDataFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, SessionDataFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__SessionDataClient<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find zero or more SessionData 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 {SessionDataFindManyArgs} args - Arguments to filter and select certain fields only.
   * @example
   * // Get all SessionData
   * const sessionData = await prisma.sessionData.findMany()
   * 
   * // Get first 10 SessionData
   * const sessionData = await prisma.sessionData.findMany({ take: 10 })
   * 
   * // Only select the `id`
   * const sessionDataWithIdOnly = await prisma.sessionData.findMany({ select: { id: true } })
   * 
   */
  findMany<T extends SessionDataFindManyArgs>(args?: Prisma.SelectSubset<T, SessionDataFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>

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

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

  /**
   * Create many SessionData and returns the data saved in the database.
   * @param {SessionDataCreateManyAndReturnArgs} args - Arguments to create many SessionData.
   * @example
   * // Create many SessionData
   * const sessionData = await prisma.sessionData.createManyAndReturn({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Create many SessionData and only return the `id`
   * const sessionDataWithIdOnly = await prisma.sessionData.createManyAndReturn({
   *   select: { id: true },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * 
   */
  createManyAndReturn<T extends SessionDataCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, SessionDataCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>

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

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

  /**
   * Delete zero or more SessionData.
   * @param {SessionDataDeleteManyArgs} args - Arguments to filter SessionData to delete.
   * @example
   * // Delete a few SessionData
   * const { count } = await prisma.sessionData.deleteMany({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   * 
   */
  deleteMany<T extends SessionDataDeleteManyArgs>(args?: Prisma.SelectSubset<T, SessionDataDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more SessionData.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {SessionDataUpdateManyArgs} args - Arguments to update one or more rows.
   * @example
   * // Update many SessionData
   * const sessionData = await prisma.sessionData.updateMany({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  updateMany<T extends SessionDataUpdateManyArgs>(args: Prisma.SelectSubset<T, SessionDataUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more SessionData and returns the data updated in the database.
   * @param {SessionDataUpdateManyAndReturnArgs} args - Arguments to update many SessionData.
   * @example
   * // Update many SessionData
   * const sessionData = await prisma.sessionData.updateManyAndReturn({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Update zero or more SessionData and only return the `id`
   * const sessionDataWithIdOnly = await prisma.sessionData.updateManyAndReturn({
   *   select: { id: true },
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * 
   */
  updateManyAndReturn<T extends SessionDataUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, SessionDataUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>

  /**
   * Create or update one SessionData.
   * @param {SessionDataUpsertArgs} args - Arguments to update or create a SessionData.
   * @example
   * // Update or create a SessionData
   * const sessionData = await prisma.sessionData.upsert({
   *   create: {
   *     // ... data to create a SessionData
   *   },
   *   update: {
   *     // ... in case it already exists, update
   *   },
   *   where: {
   *     // ... the filter for the SessionData we want to update
   *   }
   * })
   */
  upsert<T extends SessionDataUpsertArgs>(args: Prisma.SelectSubset<T, SessionDataUpsertArgs<ExtArgs>>): Prisma.Prisma__SessionDataClient<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>


  /**
   * Count the number of SessionData.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {SessionDataCountArgs} args - Arguments to filter SessionData to count.
   * @example
   * // Count the number of SessionData
   * const count = await prisma.sessionData.count({
   *   where: {
   *     // ... the filter for the SessionData we want to count
   *   }
   * })
  **/
  count<T extends SessionDataCountArgs>(
    args?: Prisma.Subset<T, SessionDataCountArgs>,
  ): Prisma.PrismaPromise<
    T extends runtime.Types.Utils.Record<'select', any>
      ? T['select'] extends true
        ? number
        : Prisma.GetScalarType<T['select'], SessionDataCountAggregateOutputType>
      : number
  >

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

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

/**
 * The delegate class that acts as a "Promise-like" for SessionData.
 * 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__SessionDataClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
  readonly [Symbol.toStringTag]: "PrismaPromise"
  website<T extends Prisma.WebsiteDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.WebsiteDefaultArgs<ExtArgs>>): Prisma.Prisma__WebsiteClient<runtime.Types.Result.GetResult<Prisma.$WebsitePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
  session<T extends Prisma.SessionDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.SessionDefaultArgs<ExtArgs>>): Prisma.Prisma__SessionClient<runtime.Types.Result.GetResult<Prisma.$SessionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
  /**
   * Attaches callbacks for the resolution and/or rejection of the Promise.
   * @param onfulfilled The callback to execute when the Promise is resolved.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of which ever callback is executed.
   */
  then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
  /**
   * Attaches a callback for only the rejection of the Promise.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of the callback.
   */
  catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
  /**
   * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
   * resolved value cannot be modified from the callback.
   * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
   * @returns A Promise for the completion of the callback.
   */
  finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
}




/**
 * Fields of the SessionData model
 */
export interface SessionDataFieldRefs {
  readonly id: Prisma.FieldRef<"SessionData", 'String'>
  readonly websiteId: Prisma.FieldRef<"SessionData", 'String'>
  readonly sessionId: Prisma.FieldRef<"SessionData", 'String'>
  readonly dataKey: Prisma.FieldRef<"SessionData", 'String'>
  readonly stringValue: Prisma.FieldRef<"SessionData", 'String'>
  readonly numberValue: Prisma.FieldRef<"SessionData", 'Decimal'>
  readonly dateValue: Prisma.FieldRef<"SessionData", 'DateTime'>
  readonly dataType: Prisma.FieldRef<"SessionData", 'Int'>
  readonly distinctId: Prisma.FieldRef<"SessionData", 'String'>
  readonly createdAt: Prisma.FieldRef<"SessionData", 'DateTime'>
}
    

// Custom InputTypes
/**
 * SessionData findUnique
 */
export type SessionDataFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter, which SessionData to fetch.
   */
  where: Prisma.SessionDataWhereUniqueInput
}

/**
 * SessionData findUniqueOrThrow
 */
export type SessionDataFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter, which SessionData to fetch.
   */
  where: Prisma.SessionDataWhereUniqueInput
}

/**
 * SessionData findFirst
 */
export type SessionDataFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter, which SessionData to fetch.
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of SessionData to fetch.
   */
  orderBy?: Prisma.SessionDataOrderByWithRelationInput | Prisma.SessionDataOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for SessionData.
   */
  cursor?: Prisma.SessionDataWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` SessionData 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` SessionData.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of SessionData.
   */
  distinct?: Prisma.SessionDataScalarFieldEnum | Prisma.SessionDataScalarFieldEnum[]
}

/**
 * SessionData findFirstOrThrow
 */
export type SessionDataFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter, which SessionData to fetch.
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of SessionData to fetch.
   */
  orderBy?: Prisma.SessionDataOrderByWithRelationInput | Prisma.SessionDataOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for SessionData.
   */
  cursor?: Prisma.SessionDataWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` SessionData 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` SessionData.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of SessionData.
   */
  distinct?: Prisma.SessionDataScalarFieldEnum | Prisma.SessionDataScalarFieldEnum[]
}

/**
 * SessionData findMany
 */
export type SessionDataFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter, which SessionData to fetch.
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of SessionData to fetch.
   */
  orderBy?: Prisma.SessionDataOrderByWithRelationInput | Prisma.SessionDataOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for listing SessionData.
   */
  cursor?: Prisma.SessionDataWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` SessionData 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` SessionData.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of SessionData.
   */
  distinct?: Prisma.SessionDataScalarFieldEnum | Prisma.SessionDataScalarFieldEnum[]
}

/**
 * SessionData create
 */
export type SessionDataCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * The data needed to create a SessionData.
   */
  data: Prisma.XOR<Prisma.SessionDataCreateInput, Prisma.SessionDataUncheckedCreateInput>
}

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

/**
 * SessionData createManyAndReturn
 */
export type SessionDataCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelectCreateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * The data used to create many SessionData.
   */
  data: Prisma.SessionDataCreateManyInput | Prisma.SessionDataCreateManyInput[]
  skipDuplicates?: boolean
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataIncludeCreateManyAndReturn<ExtArgs> | null
}

/**
 * SessionData update
 */
export type SessionDataUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * The data needed to update a SessionData.
   */
  data: Prisma.XOR<Prisma.SessionDataUpdateInput, Prisma.SessionDataUncheckedUpdateInput>
  /**
   * Choose, which SessionData to update.
   */
  where: Prisma.SessionDataWhereUniqueInput
}

/**
 * SessionData updateMany
 */
export type SessionDataUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update SessionData.
   */
  data: Prisma.XOR<Prisma.SessionDataUpdateManyMutationInput, Prisma.SessionDataUncheckedUpdateManyInput>
  /**
   * Filter which SessionData to update
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * Limit how many SessionData to update.
   */
  limit?: number
}

/**
 * SessionData updateManyAndReturn
 */
export type SessionDataUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * The data used to update SessionData.
   */
  data: Prisma.XOR<Prisma.SessionDataUpdateManyMutationInput, Prisma.SessionDataUncheckedUpdateManyInput>
  /**
   * Filter which SessionData to update
   */
  where?: Prisma.SessionDataWhereInput
  /**
   * Limit how many SessionData to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * SessionData upsert
 */
export type SessionDataUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * The filter to search for the SessionData to update in case it exists.
   */
  where: Prisma.SessionDataWhereUniqueInput
  /**
   * In case the SessionData found by the `where` argument doesn't exist, create a new SessionData with this data.
   */
  create: Prisma.XOR<Prisma.SessionDataCreateInput, Prisma.SessionDataUncheckedCreateInput>
  /**
   * In case the SessionData was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.SessionDataUpdateInput, Prisma.SessionDataUncheckedUpdateInput>
}

/**
 * SessionData delete
 */
export type SessionDataDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionData
   */
  select?: Prisma.SessionDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionData
   */
  omit?: Prisma.SessionDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionDataInclude<ExtArgs> | null
  /**
   * Filter which SessionData to delete.
   */
  where: Prisma.SessionDataWhereUniqueInput
}

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

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