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

export type AggregateEventData = {
  _count: EventDataCountAggregateOutputType | null
  _avg: EventDataAvgAggregateOutputType | null
  _sum: EventDataSumAggregateOutputType | null
  _min: EventDataMinAggregateOutputType | null
  _max: EventDataMaxAggregateOutputType | null
}

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

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

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

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

export type EventDataCountAggregateOutputType = {
  id: number
  websiteId: number
  websiteEventId: number
  dataKey: number
  stringValue: number
  numberValue: number
  dateValue: number
  dataType: number
  createdAt: number
  _all: number
}


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

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

export type EventDataMinAggregateInputType = {
  id?: true
  websiteId?: true
  websiteEventId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  createdAt?: true
}

export type EventDataMaxAggregateInputType = {
  id?: true
  websiteId?: true
  websiteEventId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  createdAt?: true
}

export type EventDataCountAggregateInputType = {
  id?: true
  websiteId?: true
  websiteEventId?: true
  dataKey?: true
  stringValue?: true
  numberValue?: true
  dateValue?: true
  dataType?: true
  createdAt?: true
  _all?: true
}

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

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




export type EventDataGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.EventDataWhereInput
  orderBy?: Prisma.EventDataOrderByWithAggregationInput | Prisma.EventDataOrderByWithAggregationInput[]
  by: Prisma.EventDataScalarFieldEnum[] | Prisma.EventDataScalarFieldEnum
  having?: Prisma.EventDataScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: EventDataCountAggregateInputType | true
  _avg?: EventDataAvgAggregateInputType
  _sum?: EventDataSumAggregateInputType
  _min?: EventDataMinAggregateInputType
  _max?: EventDataMaxAggregateInputType
}

export type EventDataGroupByOutputType = {
  id: string
  websiteId: string
  websiteEventId: string
  dataKey: string
  stringValue: string | null
  numberValue: runtime.Decimal | null
  dateValue: Date | null
  dataType: number
  createdAt: Date | null
  _count: EventDataCountAggregateOutputType | null
  _avg: EventDataAvgAggregateOutputType | null
  _sum: EventDataSumAggregateOutputType | null
  _min: EventDataMinAggregateOutputType | null
  _max: EventDataMaxAggregateOutputType | null
}

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



export type EventDataWhereInput = {
  AND?: Prisma.EventDataWhereInput | Prisma.EventDataWhereInput[]
  OR?: Prisma.EventDataWhereInput[]
  NOT?: Prisma.EventDataWhereInput | Prisma.EventDataWhereInput[]
  id?: Prisma.UuidFilter<"EventData"> | string
  websiteId?: Prisma.UuidFilter<"EventData"> | string
  websiteEventId?: Prisma.UuidFilter<"EventData"> | string
  dataKey?: Prisma.StringFilter<"EventData"> | string
  stringValue?: Prisma.StringNullableFilter<"EventData"> | string | null
  numberValue?: Prisma.DecimalNullableFilter<"EventData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableFilter<"EventData"> | Date | string | null
  dataType?: Prisma.IntFilter<"EventData"> | number
  createdAt?: Prisma.DateTimeNullableFilter<"EventData"> | Date | string | null
  website?: Prisma.XOR<Prisma.WebsiteScalarRelationFilter, Prisma.WebsiteWhereInput>
  websiteEvent?: Prisma.XOR<Prisma.WebsiteEventScalarRelationFilter, Prisma.WebsiteEventWhereInput>
}

export type EventDataOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  websiteEventId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrderInput | Prisma.SortOrder
  numberValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dateValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dataType?: Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  website?: Prisma.WebsiteOrderByWithRelationInput
  websiteEvent?: Prisma.WebsiteEventOrderByWithRelationInput
}

export type EventDataWhereUniqueInput = Prisma.AtLeast<{
  id?: string
  AND?: Prisma.EventDataWhereInput | Prisma.EventDataWhereInput[]
  OR?: Prisma.EventDataWhereInput[]
  NOT?: Prisma.EventDataWhereInput | Prisma.EventDataWhereInput[]
  websiteId?: Prisma.UuidFilter<"EventData"> | string
  websiteEventId?: Prisma.UuidFilter<"EventData"> | string
  dataKey?: Prisma.StringFilter<"EventData"> | string
  stringValue?: Prisma.StringNullableFilter<"EventData"> | string | null
  numberValue?: Prisma.DecimalNullableFilter<"EventData"> | runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Prisma.DateTimeNullableFilter<"EventData"> | Date | string | null
  dataType?: Prisma.IntFilter<"EventData"> | number
  createdAt?: Prisma.DateTimeNullableFilter<"EventData"> | Date | string | null
  website?: Prisma.XOR<Prisma.WebsiteScalarRelationFilter, Prisma.WebsiteWhereInput>
  websiteEvent?: Prisma.XOR<Prisma.WebsiteEventScalarRelationFilter, Prisma.WebsiteEventWhereInput>
}, "id">

export type EventDataOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  websiteEventId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrderInput | Prisma.SortOrder
  numberValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dateValue?: Prisma.SortOrderInput | Prisma.SortOrder
  dataType?: Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.EventDataCountOrderByAggregateInput
  _avg?: Prisma.EventDataAvgOrderByAggregateInput
  _max?: Prisma.EventDataMaxOrderByAggregateInput
  _min?: Prisma.EventDataMinOrderByAggregateInput
  _sum?: Prisma.EventDataSumOrderByAggregateInput
}

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

export type EventDataCreateInput = {
  id: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  createdAt?: Date | string | null
  website: Prisma.WebsiteCreateNestedOneWithoutEventDataInput
  websiteEvent: Prisma.WebsiteEventCreateNestedOneWithoutEventDataInput
}

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

export type EventDataUpdateInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  website?: Prisma.WebsiteUpdateOneRequiredWithoutEventDataNestedInput
  websiteEvent?: Prisma.WebsiteEventUpdateOneRequiredWithoutEventDataNestedInput
}

export type EventDataUncheckedUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  websiteEventId?: 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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

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

export type EventDataUpdateManyMutationInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type EventDataUncheckedUpdateManyInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteId?: Prisma.StringFieldUpdateOperationsInput | string
  websiteEventId?: 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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type EventDataListRelationFilter = {
  every?: Prisma.EventDataWhereInput
  some?: Prisma.EventDataWhereInput
  none?: Prisma.EventDataWhereInput
}

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

export type EventDataCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  websiteEventId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

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

export type EventDataMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  websiteEventId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

export type EventDataMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  websiteId?: Prisma.SortOrder
  websiteEventId?: Prisma.SortOrder
  dataKey?: Prisma.SortOrder
  stringValue?: Prisma.SortOrder
  numberValue?: Prisma.SortOrder
  dateValue?: Prisma.SortOrder
  dataType?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
}

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

export type EventDataCreateNestedManyWithoutWebsiteInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput> | Prisma.EventDataCreateWithoutWebsiteInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteInput | Prisma.EventDataCreateOrConnectWithoutWebsiteInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteInputEnvelope
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
}

export type EventDataUncheckedCreateNestedManyWithoutWebsiteInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput> | Prisma.EventDataCreateWithoutWebsiteInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteInput | Prisma.EventDataCreateOrConnectWithoutWebsiteInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteInputEnvelope
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
}

export type EventDataUpdateManyWithoutWebsiteNestedInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput> | Prisma.EventDataCreateWithoutWebsiteInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteInput | Prisma.EventDataCreateOrConnectWithoutWebsiteInput[]
  upsert?: Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteInput | Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteInputEnvelope
  set?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  disconnect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  delete?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  update?: Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteInput | Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteInput[]
  updateMany?: Prisma.EventDataUpdateManyWithWhereWithoutWebsiteInput | Prisma.EventDataUpdateManyWithWhereWithoutWebsiteInput[]
  deleteMany?: Prisma.EventDataScalarWhereInput | Prisma.EventDataScalarWhereInput[]
}

export type EventDataUncheckedUpdateManyWithoutWebsiteNestedInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput> | Prisma.EventDataCreateWithoutWebsiteInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteInput | Prisma.EventDataCreateOrConnectWithoutWebsiteInput[]
  upsert?: Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteInput | Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteInputEnvelope
  set?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  disconnect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  delete?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  update?: Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteInput | Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteInput[]
  updateMany?: Prisma.EventDataUpdateManyWithWhereWithoutWebsiteInput | Prisma.EventDataUpdateManyWithWhereWithoutWebsiteInput[]
  deleteMany?: Prisma.EventDataScalarWhereInput | Prisma.EventDataScalarWhereInput[]
}

export type EventDataCreateNestedManyWithoutWebsiteEventInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput> | Prisma.EventDataCreateWithoutWebsiteEventInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput | Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteEventInputEnvelope
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
}

export type EventDataUncheckedCreateNestedManyWithoutWebsiteEventInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput> | Prisma.EventDataCreateWithoutWebsiteEventInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput | Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteEventInputEnvelope
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
}

export type EventDataUpdateManyWithoutWebsiteEventNestedInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput> | Prisma.EventDataCreateWithoutWebsiteEventInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput | Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput[]
  upsert?: Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteEventInput | Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteEventInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteEventInputEnvelope
  set?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  disconnect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  delete?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  update?: Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteEventInput | Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteEventInput[]
  updateMany?: Prisma.EventDataUpdateManyWithWhereWithoutWebsiteEventInput | Prisma.EventDataUpdateManyWithWhereWithoutWebsiteEventInput[]
  deleteMany?: Prisma.EventDataScalarWhereInput | Prisma.EventDataScalarWhereInput[]
}

export type EventDataUncheckedUpdateManyWithoutWebsiteEventNestedInput = {
  create?: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput> | Prisma.EventDataCreateWithoutWebsiteEventInput[] | Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput[]
  connectOrCreate?: Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput | Prisma.EventDataCreateOrConnectWithoutWebsiteEventInput[]
  upsert?: Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteEventInput | Prisma.EventDataUpsertWithWhereUniqueWithoutWebsiteEventInput[]
  createMany?: Prisma.EventDataCreateManyWebsiteEventInputEnvelope
  set?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  disconnect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  delete?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  connect?: Prisma.EventDataWhereUniqueInput | Prisma.EventDataWhereUniqueInput[]
  update?: Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteEventInput | Prisma.EventDataUpdateWithWhereUniqueWithoutWebsiteEventInput[]
  updateMany?: Prisma.EventDataUpdateManyWithWhereWithoutWebsiteEventInput | Prisma.EventDataUpdateManyWithWhereWithoutWebsiteEventInput[]
  deleteMany?: Prisma.EventDataScalarWhereInput | Prisma.EventDataScalarWhereInput[]
}

export type EventDataCreateWithoutWebsiteInput = {
  id: string
  dataKey: string
  stringValue?: string | null
  numberValue?: runtime.Decimal | runtime.DecimalJsLike | number | string | null
  dateValue?: Date | string | null
  dataType: number
  createdAt?: Date | string | null
  websiteEvent: Prisma.WebsiteEventCreateNestedOneWithoutEventDataInput
}

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

export type EventDataCreateOrConnectWithoutWebsiteInput = {
  where: Prisma.EventDataWhereUniqueInput
  create: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput>
}

export type EventDataCreateManyWebsiteInputEnvelope = {
  data: Prisma.EventDataCreateManyWebsiteInput | Prisma.EventDataCreateManyWebsiteInput[]
  skipDuplicates?: boolean
}

export type EventDataUpsertWithWhereUniqueWithoutWebsiteInput = {
  where: Prisma.EventDataWhereUniqueInput
  update: Prisma.XOR<Prisma.EventDataUpdateWithoutWebsiteInput, Prisma.EventDataUncheckedUpdateWithoutWebsiteInput>
  create: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteInput, Prisma.EventDataUncheckedCreateWithoutWebsiteInput>
}

export type EventDataUpdateWithWhereUniqueWithoutWebsiteInput = {
  where: Prisma.EventDataWhereUniqueInput
  data: Prisma.XOR<Prisma.EventDataUpdateWithoutWebsiteInput, Prisma.EventDataUncheckedUpdateWithoutWebsiteInput>
}

export type EventDataUpdateManyWithWhereWithoutWebsiteInput = {
  where: Prisma.EventDataScalarWhereInput
  data: Prisma.XOR<Prisma.EventDataUpdateManyMutationInput, Prisma.EventDataUncheckedUpdateManyWithoutWebsiteInput>
}

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

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

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

export type EventDataCreateOrConnectWithoutWebsiteEventInput = {
  where: Prisma.EventDataWhereUniqueInput
  create: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput>
}

export type EventDataCreateManyWebsiteEventInputEnvelope = {
  data: Prisma.EventDataCreateManyWebsiteEventInput | Prisma.EventDataCreateManyWebsiteEventInput[]
  skipDuplicates?: boolean
}

export type EventDataUpsertWithWhereUniqueWithoutWebsiteEventInput = {
  where: Prisma.EventDataWhereUniqueInput
  update: Prisma.XOR<Prisma.EventDataUpdateWithoutWebsiteEventInput, Prisma.EventDataUncheckedUpdateWithoutWebsiteEventInput>
  create: Prisma.XOR<Prisma.EventDataCreateWithoutWebsiteEventInput, Prisma.EventDataUncheckedCreateWithoutWebsiteEventInput>
}

export type EventDataUpdateWithWhereUniqueWithoutWebsiteEventInput = {
  where: Prisma.EventDataWhereUniqueInput
  data: Prisma.XOR<Prisma.EventDataUpdateWithoutWebsiteEventInput, Prisma.EventDataUncheckedUpdateWithoutWebsiteEventInput>
}

export type EventDataUpdateManyWithWhereWithoutWebsiteEventInput = {
  where: Prisma.EventDataScalarWhereInput
  data: Prisma.XOR<Prisma.EventDataUpdateManyMutationInput, Prisma.EventDataUncheckedUpdateManyWithoutWebsiteEventInput>
}

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

export type EventDataUpdateWithoutWebsiteInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  websiteEvent?: Prisma.WebsiteEventUpdateOneRequiredWithoutEventDataNestedInput
}

export type EventDataUncheckedUpdateWithoutWebsiteInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteEventId?: 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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type EventDataUncheckedUpdateManyWithoutWebsiteInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  websiteEventId?: 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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

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

export type EventDataUpdateWithoutWebsiteEventInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  website?: Prisma.WebsiteUpdateOneRequiredWithoutEventDataNestedInput
}

export type EventDataUncheckedUpdateWithoutWebsiteEventInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type EventDataUncheckedUpdateManyWithoutWebsiteEventInput = {
  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
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}



export type EventDataSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  websiteEventId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}, ExtArgs["result"]["eventData"]>

export type EventDataSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  websiteEventId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}, ExtArgs["result"]["eventData"]>

export type EventDataSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  websiteId?: boolean
  websiteEventId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  createdAt?: boolean
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}, ExtArgs["result"]["eventData"]>

export type EventDataSelectScalar = {
  id?: boolean
  websiteId?: boolean
  websiteEventId?: boolean
  dataKey?: boolean
  stringValue?: boolean
  numberValue?: boolean
  dateValue?: boolean
  dataType?: boolean
  createdAt?: boolean
}

export type EventDataOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "websiteId" | "websiteEventId" | "dataKey" | "stringValue" | "numberValue" | "dateValue" | "dataType" | "createdAt", ExtArgs["result"]["eventData"]>
export type EventDataInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}
export type EventDataIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}
export type EventDataIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  website?: boolean | Prisma.WebsiteDefaultArgs<ExtArgs>
  websiteEvent?: boolean | Prisma.WebsiteEventDefaultArgs<ExtArgs>
}

export type $EventDataPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "EventData"
  objects: {
    website: Prisma.$WebsitePayload<ExtArgs>
    websiteEvent: Prisma.$WebsiteEventPayload<ExtArgs>
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: string
    websiteId: string
    websiteEventId: string
    dataKey: string
    stringValue: string | null
    numberValue: runtime.Decimal | null
    dateValue: Date | null
    dataType: number
    createdAt: Date | null
  }, ExtArgs["result"]["eventData"]>
  composites: {}
}

export type EventDataGetPayload<S extends boolean | null | undefined | EventDataDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$EventDataPayload, S>

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

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

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

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

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

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

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

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

  /**
   * Create many EventData and returns the data saved in the database.
   * @param {EventDataCreateManyAndReturnArgs} args - Arguments to create many EventData.
   * @example
   * // Create many EventData
   * const eventData = await prisma.eventData.createManyAndReturn({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Create many EventData and only return the `id`
   * const eventDataWithIdOnly = await prisma.eventData.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 EventDataCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, EventDataCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventDataPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>

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

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

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

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

  /**
   * Update zero or more EventData and returns the data updated in the database.
   * @param {EventDataUpdateManyAndReturnArgs} args - Arguments to update many EventData.
   * @example
   * // Update many EventData
   * const eventData = await prisma.eventData.updateManyAndReturn({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Update zero or more EventData and only return the `id`
   * const eventDataWithIdOnly = await prisma.eventData.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 EventDataUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, EventDataUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventDataPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>

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


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

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

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

/**
 * The delegate class that acts as a "Promise-like" for EventData.
 * 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__EventDataClient<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>
  websiteEvent<T extends Prisma.WebsiteEventDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.WebsiteEventDefaultArgs<ExtArgs>>): Prisma.Prisma__WebsiteEventClient<runtime.Types.Result.GetResult<Prisma.$WebsiteEventPayload<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 EventData model
 */
export interface EventDataFieldRefs {
  readonly id: Prisma.FieldRef<"EventData", 'String'>
  readonly websiteId: Prisma.FieldRef<"EventData", 'String'>
  readonly websiteEventId: Prisma.FieldRef<"EventData", 'String'>
  readonly dataKey: Prisma.FieldRef<"EventData", 'String'>
  readonly stringValue: Prisma.FieldRef<"EventData", 'String'>
  readonly numberValue: Prisma.FieldRef<"EventData", 'Decimal'>
  readonly dateValue: Prisma.FieldRef<"EventData", 'DateTime'>
  readonly dataType: Prisma.FieldRef<"EventData", 'Int'>
  readonly createdAt: Prisma.FieldRef<"EventData", 'DateTime'>
}
    

// Custom InputTypes
/**
 * EventData findUnique
 */
export type EventDataFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * Filter, which EventData to fetch.
   */
  where: Prisma.EventDataWhereUniqueInput
}

/**
 * EventData findUniqueOrThrow
 */
export type EventDataFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * Filter, which EventData to fetch.
   */
  where: Prisma.EventDataWhereUniqueInput
}

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

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

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

/**
 * EventData create
 */
export type EventDataCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * The data needed to create a EventData.
   */
  data: Prisma.XOR<Prisma.EventDataCreateInput, Prisma.EventDataUncheckedCreateInput>
}

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

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

/**
 * EventData update
 */
export type EventDataUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * The data needed to update a EventData.
   */
  data: Prisma.XOR<Prisma.EventDataUpdateInput, Prisma.EventDataUncheckedUpdateInput>
  /**
   * Choose, which EventData to update.
   */
  where: Prisma.EventDataWhereUniqueInput
}

/**
 * EventData updateMany
 */
export type EventDataUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update EventData.
   */
  data: Prisma.XOR<Prisma.EventDataUpdateManyMutationInput, Prisma.EventDataUncheckedUpdateManyInput>
  /**
   * Filter which EventData to update
   */
  where?: Prisma.EventDataWhereInput
  /**
   * Limit how many EventData to update.
   */
  limit?: number
}

/**
 * EventData updateManyAndReturn
 */
export type EventDataUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * The data used to update EventData.
   */
  data: Prisma.XOR<Prisma.EventDataUpdateManyMutationInput, Prisma.EventDataUncheckedUpdateManyInput>
  /**
   * Filter which EventData to update
   */
  where?: Prisma.EventDataWhereInput
  /**
   * Limit how many EventData to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * EventData upsert
 */
export type EventDataUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * The filter to search for the EventData to update in case it exists.
   */
  where: Prisma.EventDataWhereUniqueInput
  /**
   * In case the EventData found by the `where` argument doesn't exist, create a new EventData with this data.
   */
  create: Prisma.XOR<Prisma.EventDataCreateInput, Prisma.EventDataUncheckedCreateInput>
  /**
   * In case the EventData was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.EventDataUpdateInput, Prisma.EventDataUncheckedUpdateInput>
}

/**
 * EventData delete
 */
export type EventDataDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the EventData
   */
  select?: Prisma.EventDataSelect<ExtArgs> | null
  /**
   * Omit specific fields from the EventData
   */
  omit?: Prisma.EventDataOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.EventDataInclude<ExtArgs> | null
  /**
   * Filter which EventData to delete.
   */
  where: Prisma.EventDataWhereUniqueInput
}

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

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