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

export type AggregateWebsite = {
  _count: WebsiteCountAggregateOutputType | null
  _min: WebsiteMinAggregateOutputType | null
  _max: WebsiteMaxAggregateOutputType | null
}

export type WebsiteMinAggregateOutputType = {
  id: string | null
  name: string | null
  domain: string | null
  resetAt: Date | null
  userId: string | null
  teamId: string | null
  createdBy: string | null
  createdAt: Date | null
  updatedAt: Date | null
  deletedAt: Date | null
  replayEnabled: boolean | null
}

export type WebsiteMaxAggregateOutputType = {
  id: string | null
  name: string | null
  domain: string | null
  resetAt: Date | null
  userId: string | null
  teamId: string | null
  createdBy: string | null
  createdAt: Date | null
  updatedAt: Date | null
  deletedAt: Date | null
  replayEnabled: boolean | null
}

export type WebsiteCountAggregateOutputType = {
  id: number
  name: number
  domain: number
  resetAt: number
  userId: number
  teamId: number
  createdBy: number
  createdAt: number
  updatedAt: number
  deletedAt: number
  replayEnabled: number
  replayConfig: number
  _all: number
}


export type WebsiteMinAggregateInputType = {
  id?: true
  name?: true
  domain?: true
  resetAt?: true
  userId?: true
  teamId?: true
  createdBy?: true
  createdAt?: true
  updatedAt?: true
  deletedAt?: true
  replayEnabled?: true
}

export type WebsiteMaxAggregateInputType = {
  id?: true
  name?: true
  domain?: true
  resetAt?: true
  userId?: true
  teamId?: true
  createdBy?: true
  createdAt?: true
  updatedAt?: true
  deletedAt?: true
  replayEnabled?: true
}

export type WebsiteCountAggregateInputType = {
  id?: true
  name?: true
  domain?: true
  resetAt?: true
  userId?: true
  teamId?: true
  createdBy?: true
  createdAt?: true
  updatedAt?: true
  deletedAt?: true
  replayEnabled?: true
  replayConfig?: true
  _all?: true
}

export type WebsiteAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which Website to aggregate.
   */
  where?: Prisma.WebsiteWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of Websites to fetch.
   */
  orderBy?: Prisma.WebsiteOrderByWithRelationInput | Prisma.WebsiteOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.WebsiteWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` Websites 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` Websites.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Count returned Websites
  **/
  _count?: true | WebsiteCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: WebsiteMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: WebsiteMaxAggregateInputType
}

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




export type WebsiteGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.WebsiteWhereInput
  orderBy?: Prisma.WebsiteOrderByWithAggregationInput | Prisma.WebsiteOrderByWithAggregationInput[]
  by: Prisma.WebsiteScalarFieldEnum[] | Prisma.WebsiteScalarFieldEnum
  having?: Prisma.WebsiteScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: WebsiteCountAggregateInputType | true
  _min?: WebsiteMinAggregateInputType
  _max?: WebsiteMaxAggregateInputType
}

export type WebsiteGroupByOutputType = {
  id: string
  name: string
  domain: string | null
  resetAt: Date | null
  userId: string | null
  teamId: string | null
  createdBy: string | null
  createdAt: Date | null
  updatedAt: Date | null
  deletedAt: Date | null
  replayEnabled: boolean
  replayConfig: runtime.JsonValue | null
  _count: WebsiteCountAggregateOutputType | null
  _min: WebsiteMinAggregateOutputType | null
  _max: WebsiteMaxAggregateOutputType | null
}

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



export type WebsiteWhereInput = {
  AND?: Prisma.WebsiteWhereInput | Prisma.WebsiteWhereInput[]
  OR?: Prisma.WebsiteWhereInput[]
  NOT?: Prisma.WebsiteWhereInput | Prisma.WebsiteWhereInput[]
  id?: Prisma.UuidFilter<"Website"> | string
  name?: Prisma.StringFilter<"Website"> | string
  domain?: Prisma.StringNullableFilter<"Website"> | string | null
  resetAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  userId?: Prisma.UuidNullableFilter<"Website"> | string | null
  teamId?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdBy?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  updatedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  deletedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  replayEnabled?: Prisma.BoolFilter<"Website"> | boolean
  replayConfig?: Prisma.JsonNullableFilter<"Website">
  user?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
  createUser?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
  team?: Prisma.XOR<Prisma.TeamNullableScalarRelationFilter, Prisma.TeamWhereInput> | null
  eventData?: Prisma.EventDataListRelationFilter
  reports?: Prisma.ReportListRelationFilter
  revenue?: Prisma.RevenueListRelationFilter
  segments?: Prisma.SegmentListRelationFilter
  sessionData?: Prisma.SessionDataListRelationFilter
  sessionReplays?: Prisma.SessionReplayListRelationFilter
  sessionReplaysSaved?: Prisma.SessionReplaySavedListRelationFilter
}

export type WebsiteOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  name?: Prisma.SortOrder
  domain?: Prisma.SortOrderInput | Prisma.SortOrder
  resetAt?: Prisma.SortOrderInput | Prisma.SortOrder
  userId?: Prisma.SortOrderInput | Prisma.SortOrder
  teamId?: Prisma.SortOrderInput | Prisma.SortOrder
  createdBy?: Prisma.SortOrderInput | Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  updatedAt?: Prisma.SortOrderInput | Prisma.SortOrder
  deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder
  replayEnabled?: Prisma.SortOrder
  replayConfig?: Prisma.SortOrderInput | Prisma.SortOrder
  user?: Prisma.UserOrderByWithRelationInput
  createUser?: Prisma.UserOrderByWithRelationInput
  team?: Prisma.TeamOrderByWithRelationInput
  eventData?: Prisma.EventDataOrderByRelationAggregateInput
  reports?: Prisma.ReportOrderByRelationAggregateInput
  revenue?: Prisma.RevenueOrderByRelationAggregateInput
  segments?: Prisma.SegmentOrderByRelationAggregateInput
  sessionData?: Prisma.SessionDataOrderByRelationAggregateInput
  sessionReplays?: Prisma.SessionReplayOrderByRelationAggregateInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedOrderByRelationAggregateInput
}

export type WebsiteWhereUniqueInput = Prisma.AtLeast<{
  id?: string
  AND?: Prisma.WebsiteWhereInput | Prisma.WebsiteWhereInput[]
  OR?: Prisma.WebsiteWhereInput[]
  NOT?: Prisma.WebsiteWhereInput | Prisma.WebsiteWhereInput[]
  name?: Prisma.StringFilter<"Website"> | string
  domain?: Prisma.StringNullableFilter<"Website"> | string | null
  resetAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  userId?: Prisma.UuidNullableFilter<"Website"> | string | null
  teamId?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdBy?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  updatedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  deletedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  replayEnabled?: Prisma.BoolFilter<"Website"> | boolean
  replayConfig?: Prisma.JsonNullableFilter<"Website">
  user?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
  createUser?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
  team?: Prisma.XOR<Prisma.TeamNullableScalarRelationFilter, Prisma.TeamWhereInput> | null
  eventData?: Prisma.EventDataListRelationFilter
  reports?: Prisma.ReportListRelationFilter
  revenue?: Prisma.RevenueListRelationFilter
  segments?: Prisma.SegmentListRelationFilter
  sessionData?: Prisma.SessionDataListRelationFilter
  sessionReplays?: Prisma.SessionReplayListRelationFilter
  sessionReplaysSaved?: Prisma.SessionReplaySavedListRelationFilter
}, "id">

export type WebsiteOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  name?: Prisma.SortOrder
  domain?: Prisma.SortOrderInput | Prisma.SortOrder
  resetAt?: Prisma.SortOrderInput | Prisma.SortOrder
  userId?: Prisma.SortOrderInput | Prisma.SortOrder
  teamId?: Prisma.SortOrderInput | Prisma.SortOrder
  createdBy?: Prisma.SortOrderInput | Prisma.SortOrder
  createdAt?: Prisma.SortOrderInput | Prisma.SortOrder
  updatedAt?: Prisma.SortOrderInput | Prisma.SortOrder
  deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder
  replayEnabled?: Prisma.SortOrder
  replayConfig?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.WebsiteCountOrderByAggregateInput
  _max?: Prisma.WebsiteMaxOrderByAggregateInput
  _min?: Prisma.WebsiteMinOrderByAggregateInput
}

export type WebsiteScalarWhereWithAggregatesInput = {
  AND?: Prisma.WebsiteScalarWhereWithAggregatesInput | Prisma.WebsiteScalarWhereWithAggregatesInput[]
  OR?: Prisma.WebsiteScalarWhereWithAggregatesInput[]
  NOT?: Prisma.WebsiteScalarWhereWithAggregatesInput | Prisma.WebsiteScalarWhereWithAggregatesInput[]
  id?: Prisma.UuidWithAggregatesFilter<"Website"> | string
  name?: Prisma.StringWithAggregatesFilter<"Website"> | string
  domain?: Prisma.StringNullableWithAggregatesFilter<"Website"> | string | null
  resetAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Website"> | Date | string | null
  userId?: Prisma.UuidNullableWithAggregatesFilter<"Website"> | string | null
  teamId?: Prisma.UuidNullableWithAggregatesFilter<"Website"> | string | null
  createdBy?: Prisma.UuidNullableWithAggregatesFilter<"Website"> | string | null
  createdAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Website"> | Date | string | null
  updatedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Website"> | Date | string | null
  deletedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Website"> | Date | string | null
  replayEnabled?: Prisma.BoolWithAggregatesFilter<"Website"> | boolean
  replayConfig?: Prisma.JsonNullableWithAggregatesFilter<"Website">
}

export type WebsiteCreateInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateManyInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteUpdateManyMutationInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteUncheckedUpdateManyInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteListRelationFilter = {
  every?: Prisma.WebsiteWhereInput
  some?: Prisma.WebsiteWhereInput
  none?: Prisma.WebsiteWhereInput
}

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

export type WebsiteCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  name?: Prisma.SortOrder
  domain?: Prisma.SortOrder
  resetAt?: Prisma.SortOrder
  userId?: Prisma.SortOrder
  teamId?: Prisma.SortOrder
  createdBy?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
  deletedAt?: Prisma.SortOrder
  replayEnabled?: Prisma.SortOrder
  replayConfig?: Prisma.SortOrder
}

export type WebsiteMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  name?: Prisma.SortOrder
  domain?: Prisma.SortOrder
  resetAt?: Prisma.SortOrder
  userId?: Prisma.SortOrder
  teamId?: Prisma.SortOrder
  createdBy?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
  deletedAt?: Prisma.SortOrder
  replayEnabled?: Prisma.SortOrder
}

export type WebsiteMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  name?: Prisma.SortOrder
  domain?: Prisma.SortOrder
  resetAt?: Prisma.SortOrder
  userId?: Prisma.SortOrder
  teamId?: Prisma.SortOrder
  createdBy?: Prisma.SortOrder
  createdAt?: Prisma.SortOrder
  updatedAt?: Prisma.SortOrder
  deletedAt?: Prisma.SortOrder
  replayEnabled?: Prisma.SortOrder
}

export type WebsiteScalarRelationFilter = {
  is?: Prisma.WebsiteWhereInput
  isNot?: Prisma.WebsiteWhereInput
}

export type WebsiteCreateNestedManyWithoutUserInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput> | Prisma.WebsiteCreateWithoutUserInput[] | Prisma.WebsiteUncheckedCreateWithoutUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutUserInput | Prisma.WebsiteCreateOrConnectWithoutUserInput[]
  createMany?: Prisma.WebsiteCreateManyUserInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteCreateNestedManyWithoutCreateUserInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput> | Prisma.WebsiteCreateWithoutCreateUserInput[] | Prisma.WebsiteUncheckedCreateWithoutCreateUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutCreateUserInput | Prisma.WebsiteCreateOrConnectWithoutCreateUserInput[]
  createMany?: Prisma.WebsiteCreateManyCreateUserInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteUncheckedCreateNestedManyWithoutUserInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput> | Prisma.WebsiteCreateWithoutUserInput[] | Prisma.WebsiteUncheckedCreateWithoutUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutUserInput | Prisma.WebsiteCreateOrConnectWithoutUserInput[]
  createMany?: Prisma.WebsiteCreateManyUserInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteUncheckedCreateNestedManyWithoutCreateUserInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput> | Prisma.WebsiteCreateWithoutCreateUserInput[] | Prisma.WebsiteUncheckedCreateWithoutCreateUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutCreateUserInput | Prisma.WebsiteCreateOrConnectWithoutCreateUserInput[]
  createMany?: Prisma.WebsiteCreateManyCreateUserInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteUpdateManyWithoutUserNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput> | Prisma.WebsiteCreateWithoutUserInput[] | Prisma.WebsiteUncheckedCreateWithoutUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutUserInput | Prisma.WebsiteCreateOrConnectWithoutUserInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutUserInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutUserInput[]
  createMany?: Prisma.WebsiteCreateManyUserInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutUserInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutUserInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutUserInput | Prisma.WebsiteUpdateManyWithWhereWithoutUserInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type WebsiteUpdateManyWithoutCreateUserNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput> | Prisma.WebsiteCreateWithoutCreateUserInput[] | Prisma.WebsiteUncheckedCreateWithoutCreateUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutCreateUserInput | Prisma.WebsiteCreateOrConnectWithoutCreateUserInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutCreateUserInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutCreateUserInput[]
  createMany?: Prisma.WebsiteCreateManyCreateUserInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutCreateUserInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutCreateUserInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutCreateUserInput | Prisma.WebsiteUpdateManyWithWhereWithoutCreateUserInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type WebsiteUncheckedUpdateManyWithoutUserNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput> | Prisma.WebsiteCreateWithoutUserInput[] | Prisma.WebsiteUncheckedCreateWithoutUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutUserInput | Prisma.WebsiteCreateOrConnectWithoutUserInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutUserInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutUserInput[]
  createMany?: Prisma.WebsiteCreateManyUserInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutUserInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutUserInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutUserInput | Prisma.WebsiteUpdateManyWithWhereWithoutUserInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type WebsiteUncheckedUpdateManyWithoutCreateUserNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput> | Prisma.WebsiteCreateWithoutCreateUserInput[] | Prisma.WebsiteUncheckedCreateWithoutCreateUserInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutCreateUserInput | Prisma.WebsiteCreateOrConnectWithoutCreateUserInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutCreateUserInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutCreateUserInput[]
  createMany?: Prisma.WebsiteCreateManyCreateUserInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutCreateUserInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutCreateUserInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutCreateUserInput | Prisma.WebsiteUpdateManyWithWhereWithoutCreateUserInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type BoolFieldUpdateOperationsInput = {
  set?: boolean
}

export type WebsiteCreateNestedOneWithoutEventDataInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutEventDataInput, Prisma.WebsiteUncheckedCreateWithoutEventDataInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutEventDataInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutEventDataNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutEventDataInput, Prisma.WebsiteUncheckedCreateWithoutEventDataInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutEventDataInput
  upsert?: Prisma.WebsiteUpsertWithoutEventDataInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutEventDataInput, Prisma.WebsiteUpdateWithoutEventDataInput>, Prisma.WebsiteUncheckedUpdateWithoutEventDataInput>
}

export type WebsiteCreateNestedOneWithoutSessionDataInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionDataInput, Prisma.WebsiteUncheckedCreateWithoutSessionDataInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionDataInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutSessionDataNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionDataInput, Prisma.WebsiteUncheckedCreateWithoutSessionDataInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionDataInput
  upsert?: Prisma.WebsiteUpsertWithoutSessionDataInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutSessionDataInput, Prisma.WebsiteUpdateWithoutSessionDataInput>, Prisma.WebsiteUncheckedUpdateWithoutSessionDataInput>
}

export type WebsiteCreateNestedManyWithoutTeamInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput> | Prisma.WebsiteCreateWithoutTeamInput[] | Prisma.WebsiteUncheckedCreateWithoutTeamInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutTeamInput | Prisma.WebsiteCreateOrConnectWithoutTeamInput[]
  createMany?: Prisma.WebsiteCreateManyTeamInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteUncheckedCreateNestedManyWithoutTeamInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput> | Prisma.WebsiteCreateWithoutTeamInput[] | Prisma.WebsiteUncheckedCreateWithoutTeamInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutTeamInput | Prisma.WebsiteCreateOrConnectWithoutTeamInput[]
  createMany?: Prisma.WebsiteCreateManyTeamInputEnvelope
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
}

export type WebsiteUpdateManyWithoutTeamNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput> | Prisma.WebsiteCreateWithoutTeamInput[] | Prisma.WebsiteUncheckedCreateWithoutTeamInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutTeamInput | Prisma.WebsiteCreateOrConnectWithoutTeamInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutTeamInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutTeamInput[]
  createMany?: Prisma.WebsiteCreateManyTeamInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutTeamInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutTeamInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutTeamInput | Prisma.WebsiteUpdateManyWithWhereWithoutTeamInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type WebsiteUncheckedUpdateManyWithoutTeamNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput> | Prisma.WebsiteCreateWithoutTeamInput[] | Prisma.WebsiteUncheckedCreateWithoutTeamInput[]
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutTeamInput | Prisma.WebsiteCreateOrConnectWithoutTeamInput[]
  upsert?: Prisma.WebsiteUpsertWithWhereUniqueWithoutTeamInput | Prisma.WebsiteUpsertWithWhereUniqueWithoutTeamInput[]
  createMany?: Prisma.WebsiteCreateManyTeamInputEnvelope
  set?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  disconnect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  delete?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  connect?: Prisma.WebsiteWhereUniqueInput | Prisma.WebsiteWhereUniqueInput[]
  update?: Prisma.WebsiteUpdateWithWhereUniqueWithoutTeamInput | Prisma.WebsiteUpdateWithWhereUniqueWithoutTeamInput[]
  updateMany?: Prisma.WebsiteUpdateManyWithWhereWithoutTeamInput | Prisma.WebsiteUpdateManyWithWhereWithoutTeamInput[]
  deleteMany?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
}

export type WebsiteCreateNestedOneWithoutReportsInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutReportsInput, Prisma.WebsiteUncheckedCreateWithoutReportsInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutReportsInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutReportsNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutReportsInput, Prisma.WebsiteUncheckedCreateWithoutReportsInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutReportsInput
  upsert?: Prisma.WebsiteUpsertWithoutReportsInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutReportsInput, Prisma.WebsiteUpdateWithoutReportsInput>, Prisma.WebsiteUncheckedUpdateWithoutReportsInput>
}

export type WebsiteCreateNestedOneWithoutSegmentsInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSegmentsInput, Prisma.WebsiteUncheckedCreateWithoutSegmentsInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSegmentsInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutSegmentsNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSegmentsInput, Prisma.WebsiteUncheckedCreateWithoutSegmentsInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSegmentsInput
  upsert?: Prisma.WebsiteUpsertWithoutSegmentsInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutSegmentsInput, Prisma.WebsiteUpdateWithoutSegmentsInput>, Prisma.WebsiteUncheckedUpdateWithoutSegmentsInput>
}

export type WebsiteCreateNestedOneWithoutRevenueInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutRevenueInput, Prisma.WebsiteUncheckedCreateWithoutRevenueInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutRevenueInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutRevenueNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutRevenueInput, Prisma.WebsiteUncheckedCreateWithoutRevenueInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutRevenueInput
  upsert?: Prisma.WebsiteUpsertWithoutRevenueInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutRevenueInput, Prisma.WebsiteUpdateWithoutRevenueInput>, Prisma.WebsiteUncheckedUpdateWithoutRevenueInput>
}

export type WebsiteCreateNestedOneWithoutSessionReplaysInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionReplaysInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutSessionReplaysNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionReplaysInput
  upsert?: Prisma.WebsiteUpsertWithoutSessionReplaysInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutSessionReplaysInput, Prisma.WebsiteUpdateWithoutSessionReplaysInput>, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysInput>
}

export type WebsiteCreateNestedOneWithoutSessionReplaysSavedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysSavedInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionReplaysSavedInput
  connect?: Prisma.WebsiteWhereUniqueInput
}

export type WebsiteUpdateOneRequiredWithoutSessionReplaysSavedNestedInput = {
  create?: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysSavedInput>
  connectOrCreate?: Prisma.WebsiteCreateOrConnectWithoutSessionReplaysSavedInput
  upsert?: Prisma.WebsiteUpsertWithoutSessionReplaysSavedInput
  connect?: Prisma.WebsiteWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.WebsiteUpdateToOneWithWhereWithoutSessionReplaysSavedInput, Prisma.WebsiteUpdateWithoutSessionReplaysSavedInput>, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysSavedInput>
}

export type WebsiteCreateWithoutUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput>
}

export type WebsiteCreateManyUserInputEnvelope = {
  data: Prisma.WebsiteCreateManyUserInput | Prisma.WebsiteCreateManyUserInput[]
  skipDuplicates?: boolean
}

export type WebsiteCreateWithoutCreateUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutCreateUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutCreateUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput>
}

export type WebsiteCreateManyCreateUserInputEnvelope = {
  data: Prisma.WebsiteCreateManyCreateUserInput | Prisma.WebsiteCreateManyCreateUserInput[]
  skipDuplicates?: boolean
}

export type WebsiteUpsertWithWhereUniqueWithoutUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutUserInput, Prisma.WebsiteUncheckedUpdateWithoutUserInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutUserInput, Prisma.WebsiteUncheckedCreateWithoutUserInput>
}

export type WebsiteUpdateWithWhereUniqueWithoutUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutUserInput, Prisma.WebsiteUncheckedUpdateWithoutUserInput>
}

export type WebsiteUpdateManyWithWhereWithoutUserInput = {
  where: Prisma.WebsiteScalarWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateManyMutationInput, Prisma.WebsiteUncheckedUpdateManyWithoutUserInput>
}

export type WebsiteScalarWhereInput = {
  AND?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
  OR?: Prisma.WebsiteScalarWhereInput[]
  NOT?: Prisma.WebsiteScalarWhereInput | Prisma.WebsiteScalarWhereInput[]
  id?: Prisma.UuidFilter<"Website"> | string
  name?: Prisma.StringFilter<"Website"> | string
  domain?: Prisma.StringNullableFilter<"Website"> | string | null
  resetAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  userId?: Prisma.UuidNullableFilter<"Website"> | string | null
  teamId?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdBy?: Prisma.UuidNullableFilter<"Website"> | string | null
  createdAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  updatedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  deletedAt?: Prisma.DateTimeNullableFilter<"Website"> | Date | string | null
  replayEnabled?: Prisma.BoolFilter<"Website"> | boolean
  replayConfig?: Prisma.JsonNullableFilter<"Website">
}

export type WebsiteUpsertWithWhereUniqueWithoutCreateUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutCreateUserInput, Prisma.WebsiteUncheckedUpdateWithoutCreateUserInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutCreateUserInput, Prisma.WebsiteUncheckedCreateWithoutCreateUserInput>
}

export type WebsiteUpdateWithWhereUniqueWithoutCreateUserInput = {
  where: Prisma.WebsiteWhereUniqueInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutCreateUserInput, Prisma.WebsiteUncheckedUpdateWithoutCreateUserInput>
}

export type WebsiteUpdateManyWithWhereWithoutCreateUserInput = {
  where: Prisma.WebsiteScalarWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateManyMutationInput, Prisma.WebsiteUncheckedUpdateManyWithoutCreateUserInput>
}

export type WebsiteCreateWithoutEventDataInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutEventDataInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutEventDataInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutEventDataInput, Prisma.WebsiteUncheckedCreateWithoutEventDataInput>
}

export type WebsiteUpsertWithoutEventDataInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutEventDataInput, Prisma.WebsiteUncheckedUpdateWithoutEventDataInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutEventDataInput, Prisma.WebsiteUncheckedCreateWithoutEventDataInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutEventDataInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutEventDataInput, Prisma.WebsiteUncheckedUpdateWithoutEventDataInput>
}

export type WebsiteUpdateWithoutEventDataInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutEventDataInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutSessionDataInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutSessionDataInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutSessionDataInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionDataInput, Prisma.WebsiteUncheckedCreateWithoutSessionDataInput>
}

export type WebsiteUpsertWithoutSessionDataInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionDataInput, Prisma.WebsiteUncheckedUpdateWithoutSessionDataInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionDataInput, Prisma.WebsiteUncheckedCreateWithoutSessionDataInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutSessionDataInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionDataInput, Prisma.WebsiteUncheckedUpdateWithoutSessionDataInput>
}

export type WebsiteUpdateWithoutSessionDataInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutSessionDataInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutTeamInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutTeamInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutTeamInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput>
}

export type WebsiteCreateManyTeamInputEnvelope = {
  data: Prisma.WebsiteCreateManyTeamInput | Prisma.WebsiteCreateManyTeamInput[]
  skipDuplicates?: boolean
}

export type WebsiteUpsertWithWhereUniqueWithoutTeamInput = {
  where: Prisma.WebsiteWhereUniqueInput
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutTeamInput, Prisma.WebsiteUncheckedUpdateWithoutTeamInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutTeamInput, Prisma.WebsiteUncheckedCreateWithoutTeamInput>
}

export type WebsiteUpdateWithWhereUniqueWithoutTeamInput = {
  where: Prisma.WebsiteWhereUniqueInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutTeamInput, Prisma.WebsiteUncheckedUpdateWithoutTeamInput>
}

export type WebsiteUpdateManyWithWhereWithoutTeamInput = {
  where: Prisma.WebsiteScalarWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateManyMutationInput, Prisma.WebsiteUncheckedUpdateManyWithoutTeamInput>
}

export type WebsiteCreateWithoutReportsInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutReportsInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutReportsInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutReportsInput, Prisma.WebsiteUncheckedCreateWithoutReportsInput>
}

export type WebsiteUpsertWithoutReportsInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutReportsInput, Prisma.WebsiteUncheckedUpdateWithoutReportsInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutReportsInput, Prisma.WebsiteUncheckedCreateWithoutReportsInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutReportsInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutReportsInput, Prisma.WebsiteUncheckedUpdateWithoutReportsInput>
}

export type WebsiteUpdateWithoutReportsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutReportsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutSegmentsInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutSegmentsInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutSegmentsInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSegmentsInput, Prisma.WebsiteUncheckedCreateWithoutSegmentsInput>
}

export type WebsiteUpsertWithoutSegmentsInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutSegmentsInput, Prisma.WebsiteUncheckedUpdateWithoutSegmentsInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSegmentsInput, Prisma.WebsiteUncheckedCreateWithoutSegmentsInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutSegmentsInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutSegmentsInput, Prisma.WebsiteUncheckedUpdateWithoutSegmentsInput>
}

export type WebsiteUpdateWithoutSegmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutSegmentsInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutRevenueInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutRevenueInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutRevenueInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutRevenueInput, Prisma.WebsiteUncheckedCreateWithoutRevenueInput>
}

export type WebsiteUpsertWithoutRevenueInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutRevenueInput, Prisma.WebsiteUncheckedUpdateWithoutRevenueInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutRevenueInput, Prisma.WebsiteUncheckedCreateWithoutRevenueInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutRevenueInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutRevenueInput, Prisma.WebsiteUncheckedUpdateWithoutRevenueInput>
}

export type WebsiteUpdateWithoutRevenueInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutRevenueInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutSessionReplaysInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutSessionReplaysInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutSessionReplaysInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysInput>
}

export type WebsiteUpsertWithoutSessionReplaysInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutSessionReplaysInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionReplaysInput, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysInput>
}

export type WebsiteUpdateWithoutSessionReplaysInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutSessionReplaysInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateWithoutSessionReplaysSavedInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserCreateNestedOneWithoutWebsitesInput
  createUser?: Prisma.UserCreateNestedOneWithoutCreatedByInput
  team?: Prisma.TeamCreateNestedOneWithoutWebsitesInput
  eventData?: Prisma.EventDataCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayCreateNestedManyWithoutWebsiteInput
}

export type WebsiteUncheckedCreateWithoutSessionReplaysSavedInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedCreateNestedManyWithoutWebsiteInput
  reports?: Prisma.ReportUncheckedCreateNestedManyWithoutWebsiteInput
  revenue?: Prisma.RevenueUncheckedCreateNestedManyWithoutWebsiteInput
  segments?: Prisma.SegmentUncheckedCreateNestedManyWithoutWebsiteInput
  sessionData?: Prisma.SessionDataUncheckedCreateNestedManyWithoutWebsiteInput
  sessionReplays?: Prisma.SessionReplayUncheckedCreateNestedManyWithoutWebsiteInput
}

export type WebsiteCreateOrConnectWithoutSessionReplaysSavedInput = {
  where: Prisma.WebsiteWhereUniqueInput
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysSavedInput>
}

export type WebsiteUpsertWithoutSessionReplaysSavedInput = {
  update: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysSavedInput>
  create: Prisma.XOR<Prisma.WebsiteCreateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedCreateWithoutSessionReplaysSavedInput>
  where?: Prisma.WebsiteWhereInput
}

export type WebsiteUpdateToOneWithWhereWithoutSessionReplaysSavedInput = {
  where?: Prisma.WebsiteWhereInput
  data: Prisma.XOR<Prisma.WebsiteUpdateWithoutSessionReplaysSavedInput, Prisma.WebsiteUncheckedUpdateWithoutSessionReplaysSavedInput>
}

export type WebsiteUpdateWithoutSessionReplaysSavedInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutSessionReplaysSavedInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteCreateManyUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  teamId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteCreateManyCreateUserInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  teamId?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteUpdateWithoutUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateManyWithoutUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteUpdateWithoutCreateUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  team?: Prisma.TeamUpdateOneWithoutWebsitesNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutCreateUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateManyWithoutCreateUserInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  teamId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteCreateManyTeamInput = {
  id: string
  name: string
  domain?: string | null
  resetAt?: Date | string | null
  userId?: string | null
  createdBy?: string | null
  createdAt?: Date | string | null
  updatedAt?: Date | string | null
  deletedAt?: Date | string | null
  replayEnabled?: boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}

export type WebsiteUpdateWithoutTeamInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  user?: Prisma.UserUpdateOneWithoutWebsitesNestedInput
  createUser?: Prisma.UserUpdateOneWithoutCreatedByNestedInput
  eventData?: Prisma.EventDataUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateWithoutTeamInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
  eventData?: Prisma.EventDataUncheckedUpdateManyWithoutWebsiteNestedInput
  reports?: Prisma.ReportUncheckedUpdateManyWithoutWebsiteNestedInput
  revenue?: Prisma.RevenueUncheckedUpdateManyWithoutWebsiteNestedInput
  segments?: Prisma.SegmentUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionData?: Prisma.SessionDataUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplays?: Prisma.SessionReplayUncheckedUpdateManyWithoutWebsiteNestedInput
  sessionReplaysSaved?: Prisma.SessionReplaySavedUncheckedUpdateManyWithoutWebsiteNestedInput
}

export type WebsiteUncheckedUpdateManyWithoutTeamInput = {
  id?: Prisma.StringFieldUpdateOperationsInput | string
  name?: Prisma.StringFieldUpdateOperationsInput | string
  domain?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  resetAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  userId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdBy?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  createdAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updatedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  replayEnabled?: Prisma.BoolFieldUpdateOperationsInput | boolean
  replayConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
}


/**
 * Count Type WebsiteCountOutputType
 */

export type WebsiteCountOutputType = {
  eventData: number
  reports: number
  revenue: number
  segments: number
  sessionData: number
  sessionReplays: number
  sessionReplaysSaved: number
}

export type WebsiteCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  eventData?: boolean | WebsiteCountOutputTypeCountEventDataArgs
  reports?: boolean | WebsiteCountOutputTypeCountReportsArgs
  revenue?: boolean | WebsiteCountOutputTypeCountRevenueArgs
  segments?: boolean | WebsiteCountOutputTypeCountSegmentsArgs
  sessionData?: boolean | WebsiteCountOutputTypeCountSessionDataArgs
  sessionReplays?: boolean | WebsiteCountOutputTypeCountSessionReplaysArgs
  sessionReplaysSaved?: boolean | WebsiteCountOutputTypeCountSessionReplaysSavedArgs
}

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

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountEventDataArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.EventDataWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountReportsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.ReportWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountRevenueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.RevenueWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountSegmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.SegmentWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountSessionDataArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.SessionDataWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountSessionReplaysArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.SessionReplayWhereInput
}

/**
 * WebsiteCountOutputType without action
 */
export type WebsiteCountOutputTypeCountSessionReplaysSavedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.SessionReplaySavedWhereInput
}


export type WebsiteSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  name?: boolean
  domain?: boolean
  resetAt?: boolean
  userId?: boolean
  teamId?: boolean
  createdBy?: boolean
  createdAt?: boolean
  updatedAt?: boolean
  deletedAt?: boolean
  replayEnabled?: boolean
  replayConfig?: boolean
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
  eventData?: boolean | Prisma.Website$eventDataArgs<ExtArgs>
  reports?: boolean | Prisma.Website$reportsArgs<ExtArgs>
  revenue?: boolean | Prisma.Website$revenueArgs<ExtArgs>
  segments?: boolean | Prisma.Website$segmentsArgs<ExtArgs>
  sessionData?: boolean | Prisma.Website$sessionDataArgs<ExtArgs>
  sessionReplays?: boolean | Prisma.Website$sessionReplaysArgs<ExtArgs>
  sessionReplaysSaved?: boolean | Prisma.Website$sessionReplaysSavedArgs<ExtArgs>
  _count?: boolean | Prisma.WebsiteCountOutputTypeDefaultArgs<ExtArgs>
}, ExtArgs["result"]["website"]>

export type WebsiteSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  name?: boolean
  domain?: boolean
  resetAt?: boolean
  userId?: boolean
  teamId?: boolean
  createdBy?: boolean
  createdAt?: boolean
  updatedAt?: boolean
  deletedAt?: boolean
  replayEnabled?: boolean
  replayConfig?: boolean
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
}, ExtArgs["result"]["website"]>

export type WebsiteSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  name?: boolean
  domain?: boolean
  resetAt?: boolean
  userId?: boolean
  teamId?: boolean
  createdBy?: boolean
  createdAt?: boolean
  updatedAt?: boolean
  deletedAt?: boolean
  replayEnabled?: boolean
  replayConfig?: boolean
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
}, ExtArgs["result"]["website"]>

export type WebsiteSelectScalar = {
  id?: boolean
  name?: boolean
  domain?: boolean
  resetAt?: boolean
  userId?: boolean
  teamId?: boolean
  createdBy?: boolean
  createdAt?: boolean
  updatedAt?: boolean
  deletedAt?: boolean
  replayEnabled?: boolean
  replayConfig?: boolean
}

export type WebsiteOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "domain" | "resetAt" | "userId" | "teamId" | "createdBy" | "createdAt" | "updatedAt" | "deletedAt" | "replayEnabled" | "replayConfig", ExtArgs["result"]["website"]>
export type WebsiteInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
  eventData?: boolean | Prisma.Website$eventDataArgs<ExtArgs>
  reports?: boolean | Prisma.Website$reportsArgs<ExtArgs>
  revenue?: boolean | Prisma.Website$revenueArgs<ExtArgs>
  segments?: boolean | Prisma.Website$segmentsArgs<ExtArgs>
  sessionData?: boolean | Prisma.Website$sessionDataArgs<ExtArgs>
  sessionReplays?: boolean | Prisma.Website$sessionReplaysArgs<ExtArgs>
  sessionReplaysSaved?: boolean | Prisma.Website$sessionReplaysSavedArgs<ExtArgs>
  _count?: boolean | Prisma.WebsiteCountOutputTypeDefaultArgs<ExtArgs>
}
export type WebsiteIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
}
export type WebsiteIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  user?: boolean | Prisma.Website$userArgs<ExtArgs>
  createUser?: boolean | Prisma.Website$createUserArgs<ExtArgs>
  team?: boolean | Prisma.Website$teamArgs<ExtArgs>
}

export type $WebsitePayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "Website"
  objects: {
    user: Prisma.$UserPayload<ExtArgs> | null
    createUser: Prisma.$UserPayload<ExtArgs> | null
    team: Prisma.$TeamPayload<ExtArgs> | null
    eventData: Prisma.$EventDataPayload<ExtArgs>[]
    reports: Prisma.$ReportPayload<ExtArgs>[]
    revenue: Prisma.$RevenuePayload<ExtArgs>[]
    segments: Prisma.$SegmentPayload<ExtArgs>[]
    sessionData: Prisma.$SessionDataPayload<ExtArgs>[]
    sessionReplays: Prisma.$SessionReplayPayload<ExtArgs>[]
    sessionReplaysSaved: Prisma.$SessionReplaySavedPayload<ExtArgs>[]
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: string
    name: string
    domain: string | null
    resetAt: Date | null
    userId: string | null
    teamId: string | null
    createdBy: string | null
    createdAt: Date | null
    updatedAt: Date | null
    deletedAt: Date | null
    replayEnabled: boolean
    replayConfig: runtime.JsonValue | null
  }, ExtArgs["result"]["website"]>
  composites: {}
}

export type WebsiteGetPayload<S extends boolean | null | undefined | WebsiteDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$WebsitePayload, S>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/**
 * The delegate class that acts as a "Promise-like" for Website.
 * 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__WebsiteClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
  readonly [Symbol.toStringTag]: "PrismaPromise"
  user<T extends Prisma.Website$userArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$userArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
  createUser<T extends Prisma.Website$createUserArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$createUserArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
  team<T extends Prisma.Website$teamArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$teamArgs<ExtArgs>>): Prisma.Prisma__TeamClient<runtime.Types.Result.GetResult<Prisma.$TeamPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
  eventData<T extends Prisma.Website$eventDataArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$eventDataArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventDataPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  reports<T extends Prisma.Website$reportsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$reportsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ReportPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  revenue<T extends Prisma.Website$revenueArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$revenueArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$RevenuePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  segments<T extends Prisma.Website$segmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$segmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SegmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  sessionData<T extends Prisma.Website$sessionDataArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$sessionDataArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionDataPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  sessionReplays<T extends Prisma.Website$sessionReplaysArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$sessionReplaysArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionReplayPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  sessionReplaysSaved<T extends Prisma.Website$sessionReplaysSavedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Website$sessionReplaysSavedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionReplaySavedPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
  /**
   * Attaches callbacks for the resolution and/or rejection of the Promise.
   * @param onfulfilled The callback to execute when the Promise is resolved.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of which ever callback is executed.
   */
  then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
  /**
   * Attaches a callback for only the rejection of the Promise.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of the callback.
   */
  catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
  /**
   * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
   * resolved value cannot be modified from the callback.
   * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
   * @returns A Promise for the completion of the callback.
   */
  finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
}




/**
 * Fields of the Website model
 */
export interface WebsiteFieldRefs {
  readonly id: Prisma.FieldRef<"Website", 'String'>
  readonly name: Prisma.FieldRef<"Website", 'String'>
  readonly domain: Prisma.FieldRef<"Website", 'String'>
  readonly resetAt: Prisma.FieldRef<"Website", 'DateTime'>
  readonly userId: Prisma.FieldRef<"Website", 'String'>
  readonly teamId: Prisma.FieldRef<"Website", 'String'>
  readonly createdBy: Prisma.FieldRef<"Website", 'String'>
  readonly createdAt: Prisma.FieldRef<"Website", 'DateTime'>
  readonly updatedAt: Prisma.FieldRef<"Website", 'DateTime'>
  readonly deletedAt: Prisma.FieldRef<"Website", 'DateTime'>
  readonly replayEnabled: Prisma.FieldRef<"Website", 'Boolean'>
  readonly replayConfig: Prisma.FieldRef<"Website", 'Json'>
}
    

// Custom InputTypes
/**
 * Website findUnique
 */
export type WebsiteFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * Filter, which Website to fetch.
   */
  where: Prisma.WebsiteWhereUniqueInput
}

/**
 * Website findUniqueOrThrow
 */
export type WebsiteFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * Filter, which Website to fetch.
   */
  where: Prisma.WebsiteWhereUniqueInput
}

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

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

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

/**
 * Website create
 */
export type WebsiteCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * The data needed to create a Website.
   */
  data: Prisma.XOR<Prisma.WebsiteCreateInput, Prisma.WebsiteUncheckedCreateInput>
}

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

/**
 * Website createManyAndReturn
 */
export type WebsiteCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelectCreateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * The data used to create many Websites.
   */
  data: Prisma.WebsiteCreateManyInput | Prisma.WebsiteCreateManyInput[]
  skipDuplicates?: boolean
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteIncludeCreateManyAndReturn<ExtArgs> | null
}

/**
 * Website update
 */
export type WebsiteUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * The data needed to update a Website.
   */
  data: Prisma.XOR<Prisma.WebsiteUpdateInput, Prisma.WebsiteUncheckedUpdateInput>
  /**
   * Choose, which Website to update.
   */
  where: Prisma.WebsiteWhereUniqueInput
}

/**
 * Website updateMany
 */
export type WebsiteUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update Websites.
   */
  data: Prisma.XOR<Prisma.WebsiteUpdateManyMutationInput, Prisma.WebsiteUncheckedUpdateManyInput>
  /**
   * Filter which Websites to update
   */
  where?: Prisma.WebsiteWhereInput
  /**
   * Limit how many Websites to update.
   */
  limit?: number
}

/**
 * Website updateManyAndReturn
 */
export type WebsiteUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * The data used to update Websites.
   */
  data: Prisma.XOR<Prisma.WebsiteUpdateManyMutationInput, Prisma.WebsiteUncheckedUpdateManyInput>
  /**
   * Filter which Websites to update
   */
  where?: Prisma.WebsiteWhereInput
  /**
   * Limit how many Websites to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * Website upsert
 */
export type WebsiteUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * The filter to search for the Website to update in case it exists.
   */
  where: Prisma.WebsiteWhereUniqueInput
  /**
   * In case the Website found by the `where` argument doesn't exist, create a new Website with this data.
   */
  create: Prisma.XOR<Prisma.WebsiteCreateInput, Prisma.WebsiteUncheckedCreateInput>
  /**
   * In case the Website was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.WebsiteUpdateInput, Prisma.WebsiteUncheckedUpdateInput>
}

/**
 * Website delete
 */
export type WebsiteDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Website
   */
  select?: Prisma.WebsiteSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Website
   */
  omit?: Prisma.WebsiteOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.WebsiteInclude<ExtArgs> | null
  /**
   * Filter which Website to delete.
   */
  where: Prisma.WebsiteWhereUniqueInput
}

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

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

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

/**
 * Website.team
 */
export type Website$teamArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Team
   */
  select?: Prisma.TeamSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Team
   */
  omit?: Prisma.TeamOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.TeamInclude<ExtArgs> | null
  where?: Prisma.TeamWhereInput
}

/**
 * Website.eventData
 */
export type Website$eventDataArgs<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
  where?: Prisma.EventDataWhereInput
  orderBy?: Prisma.EventDataOrderByWithRelationInput | Prisma.EventDataOrderByWithRelationInput[]
  cursor?: Prisma.EventDataWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.EventDataScalarFieldEnum | Prisma.EventDataScalarFieldEnum[]
}

/**
 * Website.reports
 */
export type Website$reportsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Report
   */
  select?: Prisma.ReportSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Report
   */
  omit?: Prisma.ReportOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.ReportInclude<ExtArgs> | null
  where?: Prisma.ReportWhereInput
  orderBy?: Prisma.ReportOrderByWithRelationInput | Prisma.ReportOrderByWithRelationInput[]
  cursor?: Prisma.ReportWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.ReportScalarFieldEnum | Prisma.ReportScalarFieldEnum[]
}

/**
 * Website.revenue
 */
export type Website$revenueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Revenue
   */
  select?: Prisma.RevenueSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Revenue
   */
  omit?: Prisma.RevenueOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.RevenueInclude<ExtArgs> | null
  where?: Prisma.RevenueWhereInput
  orderBy?: Prisma.RevenueOrderByWithRelationInput | Prisma.RevenueOrderByWithRelationInput[]
  cursor?: Prisma.RevenueWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.RevenueScalarFieldEnum | Prisma.RevenueScalarFieldEnum[]
}

/**
 * Website.segments
 */
export type Website$segmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the Segment
   */
  select?: Prisma.SegmentSelect<ExtArgs> | null
  /**
   * Omit specific fields from the Segment
   */
  omit?: Prisma.SegmentOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SegmentInclude<ExtArgs> | null
  where?: Prisma.SegmentWhereInput
  orderBy?: Prisma.SegmentOrderByWithRelationInput | Prisma.SegmentOrderByWithRelationInput[]
  cursor?: Prisma.SegmentWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.SegmentScalarFieldEnum | Prisma.SegmentScalarFieldEnum[]
}

/**
 * Website.sessionData
 */
export type Website$sessionDataArgs<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
  where?: Prisma.SessionDataWhereInput
  orderBy?: Prisma.SessionDataOrderByWithRelationInput | Prisma.SessionDataOrderByWithRelationInput[]
  cursor?: Prisma.SessionDataWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.SessionDataScalarFieldEnum | Prisma.SessionDataScalarFieldEnum[]
}

/**
 * Website.sessionReplays
 */
export type Website$sessionReplaysArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionReplay
   */
  select?: Prisma.SessionReplaySelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionReplay
   */
  omit?: Prisma.SessionReplayOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionReplayInclude<ExtArgs> | null
  where?: Prisma.SessionReplayWhereInput
  orderBy?: Prisma.SessionReplayOrderByWithRelationInput | Prisma.SessionReplayOrderByWithRelationInput[]
  cursor?: Prisma.SessionReplayWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.SessionReplayScalarFieldEnum | Prisma.SessionReplayScalarFieldEnum[]
}

/**
 * Website.sessionReplaysSaved
 */
export type Website$sessionReplaysSavedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the SessionReplaySaved
   */
  select?: Prisma.SessionReplaySavedSelect<ExtArgs> | null
  /**
   * Omit specific fields from the SessionReplaySaved
   */
  omit?: Prisma.SessionReplaySavedOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.SessionReplaySavedInclude<ExtArgs> | null
  where?: Prisma.SessionReplaySavedWhereInput
  orderBy?: Prisma.SessionReplaySavedOrderByWithRelationInput | Prisma.SessionReplaySavedOrderByWithRelationInput[]
  cursor?: Prisma.SessionReplaySavedWhereUniqueInput
  take?: number
  skip?: number
  distinct?: Prisma.SessionReplaySavedScalarFieldEnum | Prisma.SessionReplaySavedScalarFieldEnum[]
}

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